[
  {
    "path": ".clang-format",
    "content": "﻿---\nBasedOnStyle: WebKit\nBreakBeforeBraces: Allman\nCpp11BracedListStyle: 'true'\nNamespaceIndentation: None\nPointerAlignment: Right\nSpaceBeforeCpp11BracedList: 'false'\nSpaceBeforeCtorInitializerColon: 'false'\nSpaceBeforeInheritanceColon: 'false'\nSpaceBeforeParens: Never\nSpaceBeforeRangeBasedForLoopColon: 'false'\nSpaceInEmptyParentheses: 'false'\nSpacesInAngles: 'false'\nSpacesInCStyleCastParentheses: 'false'\nSpacesInContainerLiterals: 'false'\nSpacesInParentheses: 'false'\nSpacesInSquareBrackets: 'false'\nBraceWrapping:\n  BeforeLambdaBody: 'true'\n\n...\n"
  },
  {
    "path": ".codacy.yml",
    "content": "---\nengines:\n  cppcheck:\n    language: c++\n\nexclude_paths:\n  - \"doc/**\"\n  - \"icons/**\"\n  - \"misc/**\"\n  - \"translations/**\"\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/1-bug-report.yml",
    "content": "name: 🐛 Bug report\ndescription: Provide information about a problem\nlabels: [bug]\nbody:\n  - type: checkboxes\n    attributes:\n      label: Is there an existing issue for this?\n      description: Please search to see if an issue already exists for the bug you encountered.\n      options:\n        - label: I have searched the existing issues\n          required: true\n  - type: textarea\n    attributes:\n      label: Description\n      description: Provide a short description of the problem. What's expected and what actually happens, etc.\n    validations:\n      required: true\n  - type: textarea\n    attributes:\n      label: Environment\n      description: |\n        Provide environment information.\n        - You can grab **Application version** from `Help -> About EFI Boot Editor` or by running `efibooteditor --version`\n        - Exact **Operating system** version/distribution much appreciated\n        - Please provide information about your UEFI environment like `Motherboard: MSI PRO X670`, `BIOS version: XX 01/01/1970`, etc.\n      value: |\n        - Application version:\n        - Operating system:\n        - EFI/BIOS/Motherboard vendor:\n        - EFI/BIOS version:\n    validations:\n      required: true\n  - type: textarea\n    attributes:\n      label: Raw EFI data\n      description: |\n        Please provide raw EFI data if possible, you can generate it from `Help -> Dump raw EFI data` or by running `efibooteditor --dump raw.json`\n\n        Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.\n    validations:\n      required: false\n  - type: textarea\n    attributes:\n      label: Additional information\n      description: |\n        Whenever possible please also provide any additional information that might help troubleshoot the issue.\n        Like:\n         - Boot menu screenshot for comparison with EFI Boot Manager output\n         - on Linux: `efibootmgr` output\n         - on Windows: `bcdedit /enum firmware` output\n    validations:\n      required: false\n  - type: textarea\n    attributes:\n      label: Steps to reproduce\n      description: If applicable, provide list of exact steps to reproduce the problem.\n      placeholder: |\n        1. Click '...' in the GUI\n        2. See error...\n    validations:\n      required: false\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/2-feature-request.yml",
    "content": "name: 🚀 Feature request\ndescription: Suggest an idea for this project\nlabels: [enhancement]\nbody:\n  - type: checkboxes\n    attributes:\n      label: Is there an existing issue for this?\n      description: Please search to see if an issue already exists for similar feature.\n      options:\n        - label: I have searched the existing issues\n          required: true\n  - type: textarea\n    attributes:\n      label: Description\n      description: Provide a short description of the feature.\n    validations:\n      required: true\n  - type: textarea\n    attributes:\n      label: Additional information\n      description: Feel free to write here any additional information.\n    validations:\n      required: false\n"
  },
  {
    "path": ".github/dependabot.yml",
    "content": "version: 2\nupdates:\n  - package-ecosystem: \"github-actions\"\n    directory: \"/\"\n    schedule:\n      interval: \"weekly\"\n      day: \"friday\"\n      time: \"05:00\"\n    groups:\n      dependencies:\n        patterns:\n          - \"*\"\n  - package-ecosystem: \"uv\"\n    directory: \"/misc/codegen\"\n    schedule:\n      interval: \"weekly\"\n      day: \"friday\"\n      time: \"05:00\"\n    groups:\n      dependencies:\n        patterns:\n          - \"*\"\n  - package-ecosystem: \"uv\"\n    directory: \"/misc/qt-updater\"\n    schedule:\n      interval: \"weekly\"\n      day: \"friday\"\n      time: \"05:00\"\n    groups:\n      dependencies:\n        patterns:\n          - \"*\"\n"
  },
  {
    "path": ".github/release-drafter.yml",
    "content": "name-template: 'v$NEXT_PATCH_VERSION'\ntag-template: 'v$NEXT_PATCH_VERSION'\ncategories:\n  - title: 'Features'\n    labels:\n      - 'feature'\n      - 'enhancement'\n  - title: 'Bug fixes'\n    labels:\n      - 'fix'\n      - 'bugfix'\n      - 'bug'\nchange-template: '- $TITLE @$AUTHOR (#$NUMBER)'\ntemplate: |\n  ## Changes\n\n  $CHANGES\n"
  },
  {
    "path": ".github/workflows/build.yml",
    "content": "name: Build EFIBootEditor\n\non:\n  workflow_call:\n    inputs:\n      os:\n        required: true\n        type: string\n      compiler:\n        required: true\n        type: string\n      build-config:\n        required: true\n        type: string\n      version:\n        required: true\n        type: string\n\nenv:\n  CMAKE_BUILD_PARALLEL_LEVEL: 4\n  INPUT_COMPILER: ${{ inputs.compiler }}\n\njobs:\n  build:\n    name: ${{ inputs.os }} Qt ${{ matrix.qt-version }} with ${{ inputs.compiler }}\n    runs-on: ${{ inputs.os }}\n    strategy:\n      fail-fast: false\n      matrix:\n        qt-version:\n          - 5.15.2 # Supported in Ubuntu Noble Numbat until 2029-05-31\n          - 6.2.4  # Supported in Ubuntu Jammy Jellyfish until 2027-04-01\n          - 6.10.3 # Supported until 2026-04-07\n          - 6.11.0 # Supported until 2026-09-22\n        exclude:\n          - qt-version: ${{ endsWith(inputs.os, 'arm') && '5.15.2' || 'none' }}\n          - qt-version: ${{ endsWith(inputs.os, 'arm') && '6.2.4' || 'none' }}\n          - qt-version: ${{ inputs.os == 'macos-26' && '6.2.4' || 'none' }}\n          - qt-version: ${{ inputs.os == 'macos-26' && '6.8.3' || 'none' }}\n    steps:\n      - name: Checkout source code\n        uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd\n\n      - name: Set up ccache\n        uses: hendrikmuhs/ccache-action@1bbbcda0748b3e340dee71a314fa68ffcbd6df79\n        with:\n          key: ${{ inputs.os }}-${{ inputs.compiler }}-${{ inputs.build-config }}-${{ matrix.qt-version }}\n          restore-keys: |\n            ${{ inputs.os }}-${{ inputs.compiler }}-${{ inputs.build-config }}\n            ${{ inputs.os }}-${{ inputs.compiler }}\n            ${{ inputs.os }}\n\n      - name: Initialize CodeQL\n        uses: github/codeql-action/init@b1bff81932f5cdfc8695c7752dcee935dcd061c8\n        with:\n          languages: cpp\n          queries: security-and-quality\n        if: inputs.build-config == 'Debug'\n        continue-on-error: true\n\n      - name: Set up Qt environment\n        uses: jurplel/install-qt-action@d325aaf2a8baeeda41ad0b5d39f84a6af9bcf005\n        with:\n          cache: true\n          version: ${{ matrix.qt-version }}\n\n      - name: Install CMake\n        run: |\n          wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | gpg --dearmor - | sudo tee /etc/apt/trusted.gpg.d/kitware.gpg >/dev/null\n          sudo apt-add-repository \"deb https://apt.kitware.com/ubuntu/ $(lsb_release -cs) main\"\n          sudo apt-get update\n          sudo apt-get install cmake\n          mv /usr/local/bin/cmake /usr/local/bin/cmake3\n          mv /usr/local/bin/cpack /usr/local/bin/cpack3\n\n          cmake --version\n        shell: bash\n        if: startsWith(inputs.os, 'ubuntu')\n\n      - name: Install libfuse2\n        run: sudo apt-get install libfuse2\n        shell: bash\n        if: startsWith(inputs.os, 'ubuntu')\n\n      - name: Install linuxdeploy\n        run: |\n          DIR=$(mktemp -d)\n          echo \"${DIR}\" >> ${GITHUB_PATH}\n          ARCH=${{ endsWith(inputs.os, 'arm') && 'aarch64' || 'x86_64' }}\n          wget -c -nv https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-${ARCH}.AppImage -O ${DIR}/linuxdeploy\n          wget -c -nv https://github.com/linuxdeploy/linuxdeploy-plugin-qt/releases/download/continuous/linuxdeploy-plugin-qt-${ARCH}.AppImage -O ${DIR}/linuxdeploy-plugin-qt\n          wget -c -nv https://github.com/AppImage/appimagetool/releases/download/continuous/appimagetool-${{ endsWith(inputs.os, 'arm') && 'aarch64' || 'x86_64' }}.AppImage -O ${DIR}/appimagetool\n          chmod +x ${DIR}/*\n        shell: bash\n        if: startsWith(inputs.os, 'ubuntu')\n\n      - name: Install efivar\n        run: sudo apt-get install libefiboot1 libefiboot-dev libefivar-dev\n        shell: bash\n        if: startsWith(inputs.os, 'ubuntu')\n\n      - name: Install libxkbcommon-x11-0 and libxcb-cursor0 and zlib1g-dev\n        run: sudo apt-get install libxkbcommon-x11-0 libxcb-cursor0 zlib1g-dev\n        shell: bash\n        if: startsWith(inputs.os, 'ubuntu')\n\n      - name: Install zlib\n        run: vcpkg install zlib\n        shell: bash\n        if: startsWith(inputs.os, 'windows')\n\n      - name: Configure with ${{ inputs.compiler }}\n        run: |\n          cmake --preset ${{ inputs.build-config }} -DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_C_COMPILER=${{ inputs.compiler == 'Clang' && 'clang' || 'gcc' }} -DCMAKE_CXX_COMPILER=${{ inputs.compiler == 'Clang' && 'clang++' || 'g++' }} ${{ startsWith(inputs.os, 'macos') && startsWith(matrix.qt-version, '5') && '-DCMAKE_OSX_ARCHITECTURES=\"x86_64\"' || '' }}\n        shell: bash\n        env:\n          BUILD_VERSION: ${{ inputs.version }}\n          BUILD_OS: ${{ inputs.os }}\n        if: ${{ !startsWith(inputs.os, 'windows') }}\n\n      - name: Build\n        run: cmake --build --preset ${{ inputs.build-config }}\n        shell: bash\n        if: ${{ !startsWith(inputs.os, 'windows') }}\n\n      - name: Configure and build with ${{ inputs.compiler }}\n        run: |\n          call \"%programfiles%\\Microsoft Visual Studio\\2022\\Enterprise\\VC\\Auxiliary\\Build\\vcvarsall.bat\" ${{ endsWith(inputs.os, 'arm') && 'arm64' || 'x64' }} || exit /b\n          cmake --preset ${{ inputs.build-config }} -DCMAKE_TOOLCHAIN_FILE=%VCPKG_INSTALLATION_ROOT%\\scripts\\buildsystems\\vcpkg.cmake -DCMAKE_VERBOSE_MAKEFILE=ON ${{ inputs.compiler == 'Clang' && '-DCMAKE_C_COMPILER=clang-cl.exe -DCMAKE_CXX_COMPILER=clang-cl.exe' || '' }} -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache || exit /b\n          cmake --build --preset ${{ inputs.build-config }}\n        shell: cmd\n        env:\n          BUILD_VERSION: ${{ inputs.version }}\n          BUILD_OS: ${{ inputs.os }}\n        if: startsWith(inputs.os, 'windows')\n\n      - name: Run tests\n        env:\n          TEST_ALLOW_NO_EFI_ENTRIES: ${{ startsWith(inputs.os, 'macos') && 'true' || '' }}\n        run: ctest --preset ${{ inputs.build-config }} -VV\n        shell: bash\n\n      - name: Package\n        run: |\n          for t in $(seq 1 20); do # FIXME: macOS has random hdiutil errors because of some protection mechanisms, just retry few times https://github.com/actions/runner-images/issues/7522#issuecomment-1556766641\n            cmake --build --preset ${{ inputs.build-config }} --target package && exit 0\n            rm -rf build/${{ inputs.build-config }}/dist/\n          done\n          exit 255\n        shell: bash\n\n      - name: Generate SBOM\n        uses: anchore/sbom-action@57aae528053a48a3f6235f2d9461b05fbcb7366d\n        with:\n          output-file: build/${{ inputs.build-config }}/dist/EFIBootEditor-${{ github.sha }}-${{ inputs.os }}-qt-${{ matrix.qt-version }}.spdx\n          upload-artifact: false\n          upload-release-assets: false\n\n      - name: Attest artifacts\n        uses: actions/attest-build-provenance@a2bbfa25375fe432b6a289bc6b6cd05ecd0c4c32\n        with:\n          subject-path: build/${{ inputs.build-config }}/dist/EFIBootEditor-*\n\n      - name: Upload artifacts\n        uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f\n        with:\n          name: EFIBootEditor-${{ github.sha }}-${{ inputs.os }}-qt-${{ matrix.qt-version }}-${{ inputs.compiler }}\n          if-no-files-found: error\n          path: build/${{ inputs.build-config }}/dist/EFIBootEditor-*\n\n      - name: Perform CodeQL Analysis\n        uses: github/codeql-action/analyze@b1bff81932f5cdfc8695c7752dcee935dcd061c8\n        if: inputs.build-config == 'Debug'\n        continue-on-error: true\n"
  },
  {
    "path": ".github/workflows/debug.yml",
    "content": "name: Debug build\n\non:\n  push:\n    branches: [master]\n    paths:\n      - .github/workflows/build.yml\n      - .github/workflows/debug.yml\n      - CMakeLists.txt\n      - cmake/**\n      - icons.qrc\n      - icons/**\n      - include/**\n      - src/**\n      - windows.rc\n  pull_request:\n    branches: [master]\n    paths:\n      - .github/workflows/build.yml\n      - .github/workflows/debug.yml\n      - CMakeLists.txt\n      - cmake/**\n      - icons.qrc\n      - icons/**\n      - include/**\n      - src/**\n      - windows.rc\n  schedule:\n    - cron: 0 5 * * 5\n\nconcurrency:\n  group: debug-${{ github.ref }}\n  cancel-in-progress: true\n\njobs:\n  build-linux:\n    name: ${{ matrix.os }} with ${{ matrix.compiler }}\n    strategy:\n      fail-fast: false\n      matrix:\n        os: [ubuntu-22.04, ubuntu-24.04, ubuntu-24.04-arm]\n        compiler:\n          - Clang\n          - GCC\n\n    permissions:\n      actions: read\n      artifact-metadata: write\n      attestations: write\n      contents: read\n      id-token: write\n      security-events: write\n\n    uses: ./.github/workflows/build.yml\n    with:\n      os: ${{ matrix.os }}\n      compiler: ${{ matrix.compiler }}\n      build-config: Debug\n      version: ${{ github.sha }}\n\n  build-windows:\n    name: ${{ matrix.os }} with ${{ matrix.compiler }}\n    strategy:\n      fail-fast: false\n      matrix:\n        os: [windows-2022, windows-2025, windows-11-arm]\n        compiler:\n          - Clang\n          - MSVC\n\n    permissions:\n      actions: read\n      artifact-metadata: write\n      attestations: write\n      contents: read\n      id-token: write\n      security-events: write\n\n    uses: ./.github/workflows/build.yml\n    with:\n      os: ${{ matrix.os }}\n      compiler: ${{ matrix.compiler }}\n      build-config: Debug\n      version: ${{ github.sha }}\n\n  build-macos:\n    name: ${{ matrix.os }} with ${{ matrix.compiler }}\n    strategy:\n      fail-fast: false\n      matrix:\n        os: [macos-14, macos-15, macos-26]\n        compiler:\n          - Clang\n\n    permissions:\n      actions: read\n      artifact-metadata: write\n      attestations: write\n      contents: read\n      id-token: write\n      security-events: write\n\n    uses: ./.github/workflows/build.yml\n    with:\n      os: ${{ matrix.os }}\n      compiler: ${{ matrix.compiler }}\n      build-config: Debug\n      version: ${{ github.sha }}\n"
  },
  {
    "path": ".github/workflows/draft_release.yml",
    "content": "name: Draft release\n\non:\n  push:\n    branches: [master]\n\njobs:\n  update_release_draft:\n    runs-on: ubuntu-slim\n    permissions:\n      contents: write\n      pull-requests: read\n    steps:\n      - uses: release-drafter/release-drafter@139054aeaa9adc52ab36ddf67437541f039b88e2\n        env:\n          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n"
  },
  {
    "path": ".github/workflows/format.yml",
    "content": "name: Clang format\n\non: [push]\n\njobs:\n  clang-format:\n    runs-on: ubuntu-slim\n    steps:\n      - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd\n      - uses: cpp-linter/cpp-linter-action@24467985494bed9bfc398489b6ec12469beaf4da\n        id: linter\n        with:\n          version: 21\n          style: file\n      - name: Fail fast\n        if: steps.linter.outputs.checks-failed > 0\n        run: exit 1\n"
  },
  {
    "path": ".github/workflows/qt_update.yml",
    "content": "name: Check for Qt updates\n\non:\n  workflow_dispatch:\n  schedule:\n    - cron: 0 5 * * 5\n\nconcurrency:\n  group: qt-update-${{ github.ref }}\n  cancel-in-progress: true\n\njobs:\n  check-qt-updates:\n    name: Check Qt updates\n    runs-on: ubuntu-slim\n\n    permissions:\n      actions: read\n      contents: read\n\n    steps:\n      - name: Sync fork\n        env:\n          GITHUB_TOKEN: ${{ secrets.BOT_ACCESS_TOKEN }}\n        run: |\n          gh repo sync EFIBootEditorBot/efibooteditor \\\n            --source ${{ github.repository }} \\\n            --branch master \\\n            --force\n\n      - name: Checkout source code\n        uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd\n        with:\n          token: ${{ secrets.BOT_ACCESS_TOKEN }}\n          repository: EFIBootEditorBot/efibooteditor\n\n      - name: Install uv\n        uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78\n        with:\n          enable-cache: true\n\n      - name: Install python\n        uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405\n        with:\n          python-version: '3.14'\n\n      - name: Install dependencies\n        run: uv sync\n        working-directory: misc/qt-updater\n\n      - name: Run the updater\n        id: diff\n        run: |\n          uv run -m main ../../.github/workflows/*.yml\n          if git diff --exit-code ../../.github/workflows/; then\n            echo \"changed=false\" >> \"${GITHUB_OUTPUT}\"\n          else\n            echo \"changed=true\" >> \"${GITHUB_OUTPUT}\"\n          fi\n        working-directory: misc/qt-updater\n\n      - name: Create pull request\n        run: |\n          CURRENT_SHA=$(gh api repos/EFIBootEditorBot/efibooteditor/git/ref/heads/master --jq '.object.sha')\n          if ! gh api repos/EFIBootEditorBot/efibooteditor/git/refs -f ref=\"refs/heads/qt-update\" -f sha=\"${CURRENT_SHA}\" 2>/dev/null; then\n            CURRENT_SHA=$(gh api repos/EFIBootEditorBot/efibooteditor/git/ref/heads/qt-update --jq '.object.sha')\n          fi\n\n          gh api graphql -f query='\n            mutation($repo: String!, $branch: String!, $oid: GitObjectID!, $msg: String!, $files: [FileAddition!]!) {\n              createCommitOnBranch(input: {\n                branch: { repositoryNameWithOwner: $repo, branchName: $branch },\n                expectedHeadOid: $oid,\n                message: { headline: $msg },\n                fileChanges: { additions: $files }\n              }) { commit { url } }\n            }' \\\n            -f repo=\"EFIBootEditorBot/efibooteditor\" \\\n            -f branch=\"qt-update\" \\\n            -f oid=\"${CURRENT_SHA}\" \\\n            -f msg=\"Update Qt dependencies\" \\\n            -f files[][path]=\".github/workflows/build.yml\" \\\n            -f files[][contents]=$(base64 -w 0 .github/workflows/build.yml) \\\n            -f files[][path]=\".github/workflows/release.yml\" \\\n            -f files[][contents]=$(base64 -w 0 .github/workflows/release.yml)\n\n          gh pr create \\\n            --repo \"${{ github.repository }}\" \\\n            --title 'ci: update Qt versions in CI' \\\n            --body 'Updates Qt versions in CI to newest ones.' \\\n            --head \"EFIBootEditorBot:qt-update\" \\\n            --base master || echo \"PR already exists\"\n\n        env:\n          GITHUB_TOKEN: ${{ secrets.BOT_ACCESS_TOKEN }}\n        if: steps.diff.outputs.changed == 'true'\n"
  },
  {
    "path": ".github/workflows/release.yml",
    "content": "name: Prepare release assets\n\non:\n  push:\n    branches: [master]\n    paths:\n      - .github/workflows/build.yml\n      - .github/workflows/release.yml\n      - CMakeLists.txt\n      - cmake/**\n      - icons.qrc\n      - icons/**\n      - include/**\n      - src/**\n      - translations/**\n      - windows.rc\n    tags: [v*]\n\nconcurrency:\n  group: release-${{ github.ref }}\n  cancel-in-progress: true\n\njobs:\n  build-linux:\n    name: ${{ matrix.os }} with ${{ matrix.compiler }}\n    strategy:\n      fail-fast: false\n      matrix:\n        os: [ubuntu-22.04, ubuntu-24.04, ubuntu-24.04-arm]\n        compiler:\n          - Clang\n          - GCC\n\n    permissions:\n      actions: read\n      artifact-metadata: write\n      attestations: write\n      contents: read\n      id-token: write\n      security-events: write\n\n    uses: ./.github/workflows/build.yml\n    with:\n      os: ${{ matrix.os }}\n      compiler: ${{ matrix.compiler }}\n      build-config: RelWithDebInfo\n      version: ${{ github.ref_type == 'tag' && github.ref_name || github.sha }}\n\n  build-windows:\n    name: ${{ matrix.os }} with ${{ matrix.compiler }}\n    strategy:\n      fail-fast: false\n      matrix:\n        os: [windows-2022, windows-2025, windows-11-arm]\n        compiler:\n          - Clang\n          - MSVC\n\n    permissions:\n      actions: read\n      artifact-metadata: write\n      attestations: write\n      contents: read\n      id-token: write\n      security-events: write\n\n    uses: ./.github/workflows/build.yml\n    with:\n      os: ${{ matrix.os }}\n      compiler: ${{ matrix.compiler }}\n      build-config: RelWithDebInfo\n      version: ${{ github.ref_type == 'tag' && github.ref_name || github.sha }}\n\n  build-macos:\n    name: ${{ matrix.os }} with ${{ matrix.compiler }}\n    strategy:\n      fail-fast: false\n      matrix:\n        os: [macos-14, macos-15, macos-26]\n        compiler:\n          - Clang\n\n    permissions:\n      actions: read\n      artifact-metadata: write\n      attestations: write\n      contents: read\n      id-token: write\n      security-events: write\n\n    uses: ./.github/workflows/build.yml\n    with:\n      os: ${{ matrix.os }}\n      compiler: ${{ matrix.compiler }}\n      build-config: RelWithDebInfo\n      version: ${{ github.ref_type == 'tag' && github.ref_name || github.sha }}\n\n  upload-assets:\n    name: Upload release assets\n    if: github.ref_type == 'tag'\n    needs: [build-linux, build-windows, build-macos]\n    runs-on: ubuntu-slim\n    permissions:\n      attestations: write\n      contents: write\n      id-token: write\n\n    steps:\n      - name: Download all artifacts\n        uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c\n        with:\n          path: artifacts\n\n      - name: Prepare assets for release\n        id: prepare\n        run: |\n          mkdir -p dist\n\n          find artifacts -type f -name \"EFIBootEditor-*\" | while read -r file; do\n            filename=$(basename \"$file\")\n            dir_name=$(basename \"$(dirname \"$file\")\")\n            metadata=$(echo \"$dir_name\" | sed -E 's/EFIBootEditor-[^-]+-(.*)+$/\\1/')\n            ext=$(echo \"$filename\" | sed -E \"s/EFIBootEditor-.+[0-9]//\")\n\n            new_name=\"EFIBootEditor-${{ github.ref_name }}-${metadata}${ext}\"\n            echo \"Renaming $filename to $new_name\"\n            mv -v \"$file\" \"dist/$new_name\"\n          done\n        shell: bash\n\n      - name: Attest release assets\n        uses: actions/attest-build-provenance@a2bbfa25375fe432b6a289bc6b6cd05ecd0c4c32\n        with:\n          subject-path: dist/EFIBootEditor-*\n\n      - name: Upload assets to release\n        uses: softprops/action-gh-release@153bb8e04406b158c6c84fc1615b65b24149a1fe\n        with:\n          files: dist/EFIBootEditor-*\n          tag_name: ${{ github.ref_name }}\n\n  winget-update:\n    name: Update version in winget\n    if: github.ref_type == 'tag'\n    needs: upload-assets\n    runs-on: windows-latest\n    strategy:\n      fail-fast: false\n      matrix:\n        os: [windows-2025]\n        qt-version:\n          - 6.11.0  # Supported until 2026-09-22\n        compiler:\n          - MSVC\n    steps:\n      - name: Create PR in winget-pkgs repository\n        run: |\n          iwr https://aka.ms/wingetcreate/latest -OutFile wingetcreate.exe\n          .\\wingetcreate.exe update EFIBootEditor.EFIBootEditor -u https://github.com/Neverous/efibooteditor/releases/download/${{ github.ref_name }}/EFIBootEditor-${{ github.ref_name }}-${{ matrix.os }}-qt-${{ matrix.qt-version }}-${{ matrix.compiler }}.msi -v $Env:GITHUB_REF_NAME.Substring(1) -t ${{ secrets.BOT_ACCESS_TOKEN }} --submit\n"
  },
  {
    "path": ".gitignore",
    "content": "# This file is used to ignore files which are generated\n# ----------------------------------------------------------------------------\n\n*~\n*.autosave\n*.a\n*.core\n*.moc\n*.o\n*.obj\n*.orig\n*.rej\n*.so\n*.so.*\n*_pch.h.cpp\n*_resource.rc\n*.qm\n.#*\n*.*#\ncore\n!core/\ntags\n.DS_Store\n.directory\n*.debug\nMakefile*\n*.prl\n*.app\nmoc_*.cpp\nui_*.h\nqrc_*.cpp\nThumbs.db\n*.res\n*.rc\n\n# qtcreator generated files\n*.pro.user*\n\n# xemacs temporary files\n*.flc\n\n# Vim temporary files\n.*.swp\n\n# Visual Studio generated files\n*.ib_pdb_index\n*.idb\n*.ilk\n*.pdb\n*.sln\n*.suo\n*.vcproj\n*.user*\n*.ncb\n*.sdf\n*.opensdf\n*.vcxproj\n*vcxproj.*\n\n# MinGW generated files\n*.Debug\n*.Release\n\n# Python byte code\n*.pyc\n\n# Binaries\n# --------\n*.dll\n*.exe\n\n# Build\n# -----\nbuild*/\n"
  },
  {
    "path": "CMakeLists.txt",
    "content": "cmake_minimum_required(VERSION 3.16)\nset(CMAKE_MODULE_PATH \"${CMAKE_SOURCE_DIR}/cmake\")\n\nstring(REGEX REPLACE \"^v\" \"\" FULL_VERSION \"$ENV{BUILD_VERSION}\")\nif(NOT (\"${FULL_VERSION}\" MATCHES \"[0-9]+\\\\.[0-9]+\\\\.[0-9]+\"))\n    set(FULL_VERSION \"0.0.0-${FULL_VERSION}\")\nendif()\n\nstring(REGEX MATCH \"([0-9]+)\\\\.([0-9]+)\\\\.([0-9]+)\" VERSION ${FULL_VERSION})\nset(VERSION_MAJOR ${CMAKE_MATCH_1})\nset(VERSION_MINOR ${CMAKE_MATCH_2})\nset(VERSION_PATCH ${CMAKE_MATCH_3})\nstring(TIMESTAMP VERSION_TWEAK \"%s\" UTC)\n\nmessage(STATUS \"Building version ${VERSION} (${FULL_VERSION})\")\n\nproject(efibooteditor\n    VERSION ${VERSION}\n    DESCRIPTION \"Boot Editor for (U)EFI based systems.\"\n    LANGUAGES C CXX\n)\n\nset(PROJECT_NAME_CAPITALIZED \"EFIBootEditor\")\nset(PROJECT_HOMEPAGE_URL \"https://github.com/Neverous/efibooteditor\")\nset(APPLICATION_NAME \"EFI Boot Editor\")\n\nset(CMAKE_AUTOMOC ON)\nset(CMAKE_AUTOMOC_MOC_OPTIONS -b compat.h)\nset(CMAKE_AUTORCC ON)\nset(CMAKE_AUTOUIC ON)\nset(CMAKE_CXX_EXTENSIONS OFF)\nset(CMAKE_CXX_STANDARD 17)\nset(CMAKE_C_STANDARD 11)\nset(CMAKE_CXX_STANDARD_REQUIRED TRUE)\nset(CMAKE_C_STANDARD_REQUIRED TRUE)\nset(CMAKE_DEBUG_POSTFIX \"d\")\n\nset(CMAKE_INSTALL_DEFAULT_COMPONENT_NAME Program)\nset(MACOSX_BUNDLE_BUNDLE_NAME ${PROJECT_NAME_CAPITALIZED})\nset(MACOSX_BUNDLE_BUNDLE_VERSION ${FULL_VERSION})\nset(MACOSX_BUNDLE_GUI_IDENTIFIER ${PROJECT_NAME_CAPITALIZED})\n\n\n# Link time optimization support check\nif((\"${CMAKE_BUILD_TYPE}\" STREQUAL \"Release\") OR (\"${CMAKE_BUILD_TYPE}\" STREQUAL \"RelWithDebInfo\"))\n    include(CheckIPOSupported)\n    check_ipo_supported(RESULT ipo)\n    if(ipo)\n        set(CMAKE_INTERPROCEDURAL_OPTIMIZATION TRUE)\n    endif()\nendif()\n\nmessage(STATUS \"Build type: ${CMAKE_BUILD_TYPE}\")\n\nif(\"${QT_VERSION_MAJOR}\" STREQUAL \"\")\n    find_package(QT NAMES Qt6 Qt5 COMPONENTS Core REQUIRED)\nelse()\n    find_package(QT NAMES Qt${QT_VERSION_MAJOR} COMPONENTS Core REQUIRED)\nendif()\n\nmessage(STATUS \"Qt: ${QT_VERSION_MAJOR}\")\n\nfind_package(Qt${QT_VERSION_MAJOR}\n    COMPONENTS\n        Core\n        Gui\n        Network\n        Svg\n        Widgets\n        LinguistTools\n    REQUIRED)\n\nfind_package(ZLIB REQUIRED)\nmessage(STATUS \"ZLIB: ${ZLIB_VERSION_STRING}\")\n\nadd_library(${PROJECT_NAME}-core)\n\ntarget_include_directories(${PROJECT_NAME}-core PUBLIC \"${CMAKE_SOURCE_DIR}/include\")\n\ntarget_link_libraries(${PROJECT_NAME}-core PUBLIC\n    Qt${QT_VERSION_MAJOR}::Core\n    Qt${QT_VERSION_MAJOR}::Gui\n    Qt${QT_VERSION_MAJOR}::Network\n    Qt${QT_VERSION_MAJOR}::Svg\n    Qt${QT_VERSION_MAJOR}::Widgets\n    ZLIB::ZLIB\n)\n\nif(${QT_VERSION_MAJOR} LESS_EQUAL 5)\n    if(NOT COMMAND qt_add_translations)\n        function(qt_add_translations TARGET)\n            cmake_parse_arguments(arg \"\" \"\" \"TS_FILES;RESOURCE_PREFIX;INCLUDE_DIRECTORIES;LUPDATE_OPTIONS\" ${ARGN})\n            qt5_add_translation(QM_FILES ${arg_TS_FILES})\n\n            get_target_property(BINARY_DIR ${TARGET} BINARY_DIR)\n            set(QRC ${BINARY_DIR}/translations.qrc)\n            file(WRITE ${QRC} \"<RCC><qresource prefix=\\\"${arg_RESOURCE_PREFIX}\\\">\\n\")\n            foreach (QM_PATH ${QM_FILES})\n                file(RELATIVE_PATH QM_FILE ${BINARY_DIR} ${QM_PATH})\n                file(APPEND ${QRC} \"<file>${QM_FILE}</file>\\n\")\n            endforeach ()\n            file(APPEND ${QRC} \"</qresource></RCC>\")\n            qt_add_resources(RESOURCES ${QRC})\n            target_sources(${PROJECT_NAME} PRIVATE ${RESOURCES})\n        endfunction()\n    endif()\nendif()\n\nadd_compile_definitions(\n    APPLICATION_NAME=\"${APPLICATION_NAME}\"\n    VERSION=\"${FULL_VERSION}\"\n    VERSION_MAJOR=${VERSION_MAJOR}\n    VERSION_MINOR=${VERSION_MINOR}\n    VERSION_PATCH=${VERSION_PATCH}\n    VERSION_TWEAK=${VERSION_TWEAK}\n    PROJECT_NAME=\"${PROJECT_NAME}\"\n    PROJECT_DESCRIPTION=\"${PROJECT_DESCRIPTION}\"\n    PROJECT_HOMEPAGE_URL=\"${PROJECT_HOMEPAGE_URL}\"\n    APPLICATION_ICON=\"${CMAKE_SOURCE_DIR}/misc/${PROJECT_NAME_CAPITALIZED}.ico\"\n    QT_DEPRECATED_WARNINGS\n    QT_DISABLE_DEPRECATED_BEFORE=0xFFFFFF\n)\n\n# Sources:\ntarget_sources(${PROJECT_NAME}-core PRIVATE\n    src/bootentry.cpp\n    src/bootentrydelegate.cpp\n    src/bootentryform.cpp\n    src/bootentrylistmodel.cpp\n    src/bootentrylistview.cpp\n    src/bootentrywidget.cpp\n    src/commands.cpp\n    src/devicepathproxymodel.cpp\n    src/devicepathview.cpp\n    src/driveinfo.cpp\n    src/efibootdata.cpp\n    src/efibooteditor.cpp\n    src/efibooteditorcli.cpp\n    src/efikeysequence.cpp\n    src/efikeysequenceedit.cpp\n    src/filepathdelegate.cpp\n    src/filepathdialog.cpp\n    src/hotkey.cpp\n    src/hotkeydelegate.cpp\n    src/hotkeylistmodel.cpp\n    src/hotkeysdialog.cpp\n    src/hotkeysview.cpp\n)\n\nif(UNIX AND NOT APPLE)\n    target_sources(${PROJECT_NAME}-core PRIVATE\n        src/driveinfo.linux.cpp\n        src/efivar-lite.linux.c\n    )\nendif()\n\nif(WIN32)\n    target_sources(${PROJECT_NAME}-core PRIVATE\n        src/driveinfo.win32.cpp\n        src/efivar-lite.c\n        src/efivar-lite.common.h\n        src/efivar-lite.win32.c\n    )\nendif()\n\nif(APPLE)\n    target_sources(${PROJECT_NAME}-core PRIVATE\n        src/driveinfo.darwin.cpp\n        src/efivar-lite.c\n        src/efivar-lite.common.h\n        src/efivar-lite.darwin.c\n    )\nendif()\n\n# Headers:\ntarget_sources(${PROJECT_NAME}-core PRIVATE\n    include/bootentry.h\n    include/bootentrydelegate.h\n    include/bootentryform.h\n    include/bootentrylistmodel.h\n    include/bootentrylistview.h\n    include/bootentrywidget.h\n    include/commands.h\n    include/compat.h\n    include/devicepathproxymodel.h\n    include/devicepathview.h\n    include/disableundoredo.h\n    include/driveinfo.h\n    include/efiboot.h\n    include/efibootdata.h\n    include/efibooteditor.h\n    include/efibooteditorcli.h\n    include/efikeysequence.h\n    include/efikeysequenceedit.h\n    include/efivar-lite/device-paths.h\n    include/efivar-lite/efivar-lite.h\n    include/efivar-lite/key-option.h\n    include/efivar-lite/load-option.h\n    include/filepathdelegate.h\n    include/filepathdialog.h\n    include/hotkey.h\n    include/hotkeydelegate.h\n    include/hotkeylistmodel.h\n    include/hotkeysdialog.h\n    include/hotkeysview.h\n    include/qindicatorwidget.h\n    include/qlabelwrapped.h\n    include/qresizabletabwidget.h\n    include/qwidgetitemdelegate.h\n)\n\nadd_executable(${PROJECT_NAME} WIN32 MACOSX_BUNDLE\n    src/main.cpp\n)\ntarget_link_libraries(${PROJECT_NAME} PRIVATE ${PROJECT_NAME}-core)\n\n# Compile options\nget_target_property(SOURCES ${PROJECT_NAME}-core SOURCES)\n\n## GCC\nif(CMAKE_CXX_COMPILER_ID STREQUAL \"GNU\")\n    # Enable all warnings only in application code\n    set_source_files_properties(${SOURCES} PROPERTIES COMPILE_OPTIONS \"-Wall;-Wpedantic;-Werror;-pedantic;-Wshadow;-Wextra;-Wconversion;$<$<COMPILE_LANGUAGE:CXX>:-Weffc++>\")\nendif()\n\n## Clang\nif(CMAKE_CXX_COMPILER_ID MATCHES \"Clang\")\n    if(CMAKE_CXX_COMPILER_FRONTEND_VARIANT STREQUAL \"MSVC\") # MSVC compatibility mode\n        # Fix ignoring warnings in system includes\n        set(CMAKE_INCLUDE_SYSTEM_FLAG_CXX /imsvc)\n        set(CMAKE_INCLUDE_SYSTEM_FLAG_C /imsvc)\n    else() # Standard\n        # Enable all warnings only in application code\n        set_source_files_properties(${SOURCES} PROPERTIES COMPILE_OPTIONS \"-Weverything;-pedantic;-Werror\")\n    endif()\n\n    # Disable some compatibility warnings\n    target_compile_options(${PROJECT_NAME}-core PUBLIC\n        -Wno-c++20-compat\n        -Wno-c++98-compat\n        -Wno-c++98-compat-pedantic\n        -Wno-cast-qual\n        -Wno-declaration-after-statement\n        -Wno-exit-time-destructors\n        -Wno-global-constructors\n        -Wno-padded\n        -Wno-return-std-move-in-c++11\n        -Wno-switch-default\n        -Wno-unknown-warning-option\n        -Wno-unsafe-buffer-usage\n        -Wno-poison-system-directories\n    )\nendif()\n\n## MSVC\nif(CMAKE_CXX_COMPILER_ID STREQUAL \"MSVC\")\n    # Fix ignoring warnings in system includes\n    set(CMAKE_INCLUDE_SYSTEM_FLAG_CXX /external:I)\n    set(CMAKE_INCLUDE_SYSTEM_FLAG_C /external:I)\n\n    target_compile_options(${PROJECT_NAME}-core PUBLIC\n        /Z7\n        # Ignore warnings in external includes\n        /experimental:external /external:anglebrackets\n    )\nendif()\n\nif(WIN32)\n    target_compile_options(${PROJECT_NAME}-core PUBLIC\n        # Ignore warnings in external includes\n        /external:W0\n    )\n\n    # Enable all warnings only in application code\n    set_source_files_properties(${SOURCES} PROPERTIES COMPILE_OPTIONS \"/Wall;/permissive-;/WX\")\n\n    # Disable some warnings\n    target_compile_options(${PROJECT_NAME}-core PUBLIC\n        # C4371: 'classname': layout of class may have changed from a previous version of the compiler due to better packing of member 'member'\n        /wd4371\n        # C4710: 'function' : function not inlined\n        /wd4710 # Needed for RELEASE builds\n        # C4711: function 'function' selected for inline expansion\n        /wd4711 # Needed for RELEASE builds\n        # C4820: 'bytes' bytes padding added after construct 'member_name'\n        /wd4820\n        # C4866: compiler may not enforce left-to-right evaluation order for call to 'C++17 operator'\n        /wd4866\n        # C4868: compiler may not enforce left-to-right evaluation order in braced initializer list\n        /wd4868\n        # C5045: Compiler will insert Spectre mitigation for memory load if /Qspectre switch specified\n        /wd5045\n    )\nendif()\n\n# Forms:\ntarget_sources(${PROJECT_NAME}-core PRIVATE\n    src/form/bootentryform.ui\n    src/form/bootentrywidget.ui\n    src/form/efibooteditor.ui\n    src/form/filepathdialog.ui\n    src/form/hotkeysdialog.ui\n)\n\n# Resources:\nqt_add_resources(RESOURCES icons.qrc)\ntarget_sources(${PROJECT_NAME} PRIVATE ${RESOURCES})\n\nif(WIN32)\n    target_sources(${PROJECT_NAME} PRIVATE\n        windows.rc\n    )\nendif()\n\n# Translations\nFILE(GLOB TRANSLATIONS\n    ${CMAKE_SOURCE_DIR}/translations/${PROJECT_NAME}_*.ts\n)\n\nset_source_files_properties(${TRANSLATIONS}\n    PROPERTIES OUTPUT_LOCATION \"${CMAKE_BINARY_DIR}/translations\"\n)\n\nqt_add_translations(${PROJECT_NAME}\n    TS_FILES ${TRANSLATIONS}\n    RESOURCE_PREFIX \"/\"\n    INCLUDE_DIRECTORIES \"include\"\n    LUPDATE_OPTIONS \"-no-obsolete\")\n\n# Libraries\nif(APPLE)\n    target_link_libraries(${PROJECT_NAME}-core PUBLIC\n        \"-framework CoreFoundation\"\n        \"-framework DiskArbitration\"\n        \"-framework IOKit\"\n    )\n\nelseif(UNIX)\n    find_package(PkgConfig REQUIRED)\n    pkg_check_modules(EFIVAR REQUIRED efivar efiboot)\n\n    target_link_libraries(${PROJECT_NAME}-core PUBLIC ${EFIVAR_LIBRARIES})\nendif()\n\nif(WIN32)\n    target_link_options(${PROJECT_NAME} PRIVATE\n        /MANIFESTUAC:level=\\'requireAdministrator\\'\n    )\nendif()\n\nif((\"${CMAKE_BUILD_TYPE}\" STREQUAL \"Release\") AND UNIX)\n    set_target_properties(${PROJECT_NAME} PROPERTIES LINK_FLAGS_RELEASE -s)\nendif()\n\n# Testing\nenable_testing()\nadd_subdirectory(tests)\n\n# Packaging\nif(WIN32)\n    install(TARGETS ${PROJECT_NAME}\n        RUNTIME\n            DESTINATION .\n        LIBRARY\n            DESTINATION .\n        ARCHIVE\n            DESTINATION .\n        BUNDLE\n            DESTINATION dist\n    )\n\n    if(\"${CMAKE_BUILD_TYPE}\" STREQUAL \"Debug\")\n        install(FILES ${ZLIB_LIBRARY_DLL_DEBUG}\n            DESTINATION .\n            COMPONENT Runtime\n        )\n    else()\n        install(FILES ${ZLIB_LIBRARY_DLL_RELEASE}\n            DESTINATION .\n            COMPONENT Runtime\n        )\n    endif()\n\n    set(CMAKE_INSTALL_SYSTEM_RUNTIME_DESTINATION .)\nelse()\n    include(GNUInstallDirs)\n\n    install(TARGETS ${PROJECT_NAME}\n        RUNTIME\n            DESTINATION ${CMAKE_INSTALL_BINDIR}\n        LIBRARY\n            DESTINATION ${CMAKE_INSTALL_LIBDIR}\n        ARCHIVE\n            DESTINATION ${CMAKE_INSTALL_LIBDIR}\n        BUNDLE\n            DESTINATION dist\n    )\n\n    if(UNIX AND NOT APPLE)\n        install(PROGRAMS misc/run-${PROJECT_NAME}\n            DESTINATION ${CMAKE_INSTALL_BINDIR}\n            COMPONENT Desktop\n        )\n        install(PROGRAMS misc/run-${PROJECT_NAME}\n            DESTINATION .\n            RENAME AppRun\n            COMPONENT AppImage\n        )\n        install(FILES misc/${PROJECT_NAME_CAPITALIZED}.desktop\n            DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/applications\n            COMPONENT Desktop\n        )\n        install(FILES misc/org.x.${PROJECT_NAME}.policy\n            DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/polkit-1/actions/\n            COMPONENT Desktop\n        )\n        install(FILES misc/${PROJECT_NAME_CAPITALIZED}.metainfo.xml\n            DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/metainfo\n            COMPONENT Desktop\n        )\n        install(FILES misc/${PROJECT_NAME_CAPITALIZED}.svg\n            DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/icons\n            COMPONENT Desktop\n        )\n    endif()\nendif()\n\nset(CMAKE_INSTALL_UCRT_LIBRARIES TRUE)\nset(CMAKE_INSTALL_SYSTEM_RUNTIME_COMPONENT Runtime)\n\nif(\"${CMAKE_BUILD_TYPE}\" STREQUAL \"Debug\")\n    set(CMAKE_INSTALL_DEBUG_LIBRARIES TRUE)\n    set(CMAKE_INSTALL_DEBUG_LIBRARIES_ONLY TRUE)\nendif()\n\ninclude(InstallRequiredSystemLibraries)\n\n# Bundle Qt Libraries\nif(WIN32)\n    if(NOT WINDEPLOYQT_EXECUTABLE)\n        find_program(WINDEPLOYQT_EXECUTABLE NAMES windeployqt HINTS ${QT${QT_VERSION_MAJOR}_INSTALL_PREFIX}/bin REQUIRED)\n    endif()\n\n    # windeployqt in 6.5.0 has broken translations support https://codereview.qt-project.org/c/qt/qtbase/+/468903\n    if(${QT_VERSION} VERSION_EQUAL 6.5.0)\n        set(SKIP_TRANSLATIONS \"--no-translations\")\n    endif()\n\n    add_custom_command(TARGET ${PROJECT_NAME}\n        POST_BUILD\n        COMMAND ${WINDEPLOYQT_EXECUTABLE} --dir ${CMAKE_BINARY_DIR}/qt --no-compiler-runtime --pdb \"$<TARGET_FILE_DIR:${PROJECT_NAME}>/$<TARGET_FILE_NAME:${PROJECT_NAME}>\" ${SKIP_TRANSLATIONS}\n    )\n\n    install(DIRECTORY \"${CMAKE_BINARY_DIR}/qt/\"\n        DESTINATION .\n        COMPONENT Runtime\n        PATTERN \"*.pdb\" EXCLUDE\n    )\n\n    if((\"${CMAKE_BUILD_TYPE}\" STREQUAL \"Debug\") OR (\"${CMAKE_BUILD_TYPE}\" STREQUAL \"RelWithDebInfo\"))\n        install(FILES \"$<TARGET_PDB_FILE:${PROJECT_NAME}>\"\n            DESTINATION .\n            COMPONENT Debug\n        )\n\n        install(DIRECTORY \"${CMAKE_BINARY_DIR}/qt/\"\n            DESTINATION .\n            COMPONENT Debug\n            FILES_MATCHING\n            PATTERN \"*.pdb\"\n        )\n    endif()\n\nelseif(APPLE)\n    if(NOT MACDEPLOYQT_EXECUTABLE)\n        find_program(MACDEPLOYQT_EXECUTABLE NAMES macdeployqt HINTS ${QT${QT_VERSION_MAJOR}_INSTALL_PREFIX}/bin REQUIRED)\n    endif()\n\n    add_custom_command(TARGET ${PROJECT_NAME}\n        POST_BUILD\n        COMMAND ${MACDEPLOYQT_EXECUTABLE} \"$<TARGET_BUNDLE_DIR:${PROJECT_NAME}>\" -always-overwrite\n    )\nelse()\n    if(NOT LINUXDEPLOY_EXECUTABLE)\n        find_program(LINUXDEPLOY_EXECUTABLE NAMES linuxdeploy linuxdeploy.AppImage linuxdeploy-x86_64.AppImage linuxdeploy-aarch64.AppImage)\n    endif()\n\n    if(LINUXDEPLOY_EXECUTABLE)\n        get_target_property(QMAKE_EXECUTABLE Qt${QT_VERSION_MAJOR}::qmake IMPORTED_LOCATION)\n        add_custom_command(TARGET ${PROJECT_NAME}\n            POST_BUILD\n            COMMAND QMAKE=${QMAKE_EXECUTABLE} ${LINUXDEPLOY_EXECUTABLE} --plugin=qt --appdir=${CMAKE_BINARY_DIR}/appdir/ --executable=\"$<TARGET_FILE_DIR:${PROJECT_NAME}>/$<TARGET_FILE_NAME:${PROJECT_NAME}>\"\n        )\n\n        install(DIRECTORY \"${CMAKE_BINARY_DIR}/appdir/usr/\"\n            DESTINATION .\n            COMPONENT Runtime\n            USE_SOURCE_PERMISSIONS\n        )\n    endif()\nendif()\n\n# CPack\nset(CPACK_CREATE_DESKTOP_LINKS ${PROJECT_NAME_CAPITALIZED})\nset(CPACK_PACKAGE_CONTACT \"Maciej Szeptuch <neverous@neverous.info>\")\nset(CPACK_PACKAGE_DESCRIPTION_SUMMARY ${PROJECT_DESCRIPTION})\nset(CPACK_PACKAGE_DIRECTORY dist)\nset(CPACK_PACKAGE_EXECUTABLES ${PROJECT_NAME} ${PROJECT_NAME_CAPITALIZED})\nset(CPACK_PACKAGE_HOMEPAGE_URL ${PROJECT_HOMEPAGE_URL})\nset(CPACK_PACKAGE_INSTALL_DIRECTORY ${PROJECT_NAME_CAPITALIZED})\nset(CPACK_PACKAGE_NAME ${APPLICATION_NAME})\nset(CPACK_PACKAGE_VENDOR ${PROJECT_NAME_CAPITALIZED})\nset(CPACK_PACKAGE_VERSION ${FULL_VERSION})\nset(CPACK_RESOURCE_FILE_LICENSE \"${CMAKE_SOURCE_DIR}/LICENSE.txt\")\nset(CPACK_RESOURCE_FILE_README \"${CMAKE_SOURCE_DIR}/README.md\")\nset(CPACK_PACKAGE_ICON ${PROJECT_NAME_CAPITALIZED}.svg)\n\nif(\"${CMAKE_BUILD_TYPE}\" STREQUAL \"Release\")\n    set(CPACK_STRIP_FILES TRUE)\nendif()\n\nif(WIN32)\n    set(CPACK_PACKAGE_TARGET_OS_NAME \"windows\")\n    if(\"${CMAKE_SYSTEM_PROCESSOR}\" STREQUAL \"ARM64\")\n        # WiX Toolset unavailable\n        set(CPACK_GENERATOR ZIP)\n    else()\n        set(CPACK_GENERATOR WIX ZIP)\n        set(CPACK_PACKAGE_VERSION ${VERSION}.${VERSION_TWEAK}) # WiX doesn't support SemVer\n\n        set(CPACK_WIX_LIGHT_EXTRA_FLAGS \"-dcl:high\")\n        set(CPACK_WIX_PRODUCT_ICON \"${CMAKE_SOURCE_DIR}/misc/${PROJECT_NAME_CAPITALIZED}.ico\")\n        set(CPACK_WIX_UI_BANNER \"${CMAKE_SOURCE_DIR}/misc/wix_banner.png\")\n        set(CPACK_WIX_UI_DIALOG \"${CMAKE_SOURCE_DIR}/misc/wix_dialog.png\")\n        set(CPACK_WIX_PROPERTY_ARPHELPLINK ${CPACK_PACKAGE_HOMEPAGE_URL})\n        set(CPACK_WIX_PROPERTY_ARPURLINFOABOUT ${CPACK_PACKAGE_HOMEPAGE_URL})\n        set(CPACK_WIX_ROOT_FEATURE_DESCRIPTION ${CPACK_PACKAGE_DESCRIPTION_SUMMARY})\n        set(CPACK_WIX_UPGRADE_GUID \"4DC9BB3B-A552-49D8-A04B-5C13353DB826\")\n        set(CPACK_WIX_TEMPLATE \"${CMAKE_SOURCE_DIR}/misc/WIX.template.in\")\n    endif()\n\nelseif(APPLE)\n    set(CPACK_PACKAGE_TARGET_OS_NAME \"macosx\")\n    set(CPACK_GENERATOR DragNDrop TZST)\n\n    set(MACOSX_BUNDLE_ICON_FILE \"${PROJECT_NAME_CAPITALIZED}.icns\")\n    set(CPACK_PACKAGE_ICON \"${CMAKE_SOURCE_DIR}/misc/${MACOSX_BUNDLE_ICON_FILE}\")\n    set(CPACK_BUNDLE_ICON ${CPACK_PACKAGE_ICON})\n    set(CPACK_INCLUDE_TOPLEVEL_DIRECTORY NO)\n    # Seems like since macOS 13 hdiutil needs elevated access to work properly\n    # at least in GitHub Actions https://github.com/actions/runner-images/issues/7522#issuecomment-1564467252\n    set(CPACK_COMMAND_HDIUTIL \"/usr/bin/sudo /usr/bin/hdiutil\")\n\nelse()\n    set(CPACK_PACKAGE_TARGET_OS_NAME \"linux\")\n    set(CPACK_GENERATOR DEB TZST AppImage)\n    set(CPACK_PROJECT_CONFIG_FILE \"${CMAKE_SOURCE_DIR}/cmake/CPackLinux.cmake\")\n\n    set(CPACK_DEBIAN_PACKAGE_NAME ${PROJECT_NAME_CAPITALIZED})\n    #set(CPACK_DEBIAN_COMPRESSION_TYPE \"zstd\") Not supported on current Debian Bullseye\n    set(CPACK_DEBIAN_PACKAGE_SECTION \"admin\")\n    set(CPACK_DEBIAN_PACKAGE_SHLIBDEPS ON)\n    #set(CPACK_ARCHIVE_COMPONENT_INSTALL ON)\n    set(CPACK_DEB_COMPONENT_INSTALL ON)\n    set(CPACK_COMPONENTS_GROUPING ALL_COMPONENTS_IN_ONE)\n\n    # Built from GitHub actions\n    if(NOT (\"$ENV{BUILD_OS}\" STREQUAL \"\"))\n        # Because installed with aqt Qt needs to be specified manually in dependencies\n        set(CPACK_DEBIAN_PACKAGE_DEPENDS \"libqt${QT_VERSION_MAJOR}gui${QT_VERSION_MAJOR} (>= ${Qt${QT_VERSION_MAJOR}_VERSION}), libqt${QT_VERSION_MAJOR}widgets${QT_VERSION_MAJOR} (>= ${Qt${QT_VERSION_MAJOR}_VERSION}), libqt${QT_VERSION_MAJOR}network${QT_VERSION_MAJOR} (>= ${Qt${QT_VERSION_MAJOR}_VERSION})\")\n\n        if(${QT_VERSION_MAJOR} GREATER 5)\n            set(CPACK_DEBIAN_PACKAGE_DEPENDS \"libqt${QT_VERSION_MAJOR}core${QT_VERSION_MAJOR} (>= ${Qt${QT_VERSION_MAJOR}_VERSION}), ${CPACK_DEBIAN_PACKAGE_DEPENDS}\")\n        else()\n            set(CPACK_DEBIAN_PACKAGE_DEPENDS \"libqt${QT_VERSION_MAJOR}core${QT_VERSION_MAJOR}a (>= ${Qt${QT_VERSION_MAJOR}_VERSION}), ${CPACK_DEBIAN_PACKAGE_DEPENDS}\")\n        endif()\n    endif()\n\n    if((\"${CMAKE_BUILD_TYPE}\" STREQUAL \"Debug\") OR (\"${CMAKE_BUILD_TYPE}\" STREQUAL \"RelWithDebInfo\"))\n        set(CPACK_DEBIAN_DEBUGINFO_PACKAGE ON)\n    endif()\n\n    set(CPACK_APPIMAGE_NO_APPSTREAM ON)\nendif()\n\n# Built from GitHub actions\nif(NOT (\"$ENV{BUILD_OS}\" STREQUAL \"\"))\n    set(CPACK_PACKAGE_TARGET_OS_NAME \"$ENV{BUILD_OS}\")\nendif()\n\nset(CPACK_PACKAGE_FILE_NAME \"${PROJECT_NAME_CAPITALIZED}-v${FULL_VERSION}-${CPACK_PACKAGE_TARGET_OS_NAME}-qt-${Qt${QT_VERSION_MAJOR}_VERSION}\")\n\ninclude(CPackComponent)\ncpack_add_component(Program\n    DISPLAY_NAME \"EFI Boot Editor\"\n    DESCRIPTION \"Main executable\"\n    REQUIRED\n)\n\ncpack_add_component(Desktop\n    DISPLAY_NAME \"Desktop files\"\n    DESCRIPTION \"Useful files for running in Desktop Environment\"\n    DEPENDS Program\n)\n\ncpack_add_component(Runtime\n    DISPLAY_NAME \"Runtime libraries\"\n    DESCRIPTION \"Necessary runtime libraries\"\n    DEPENDS Program\n)\n\ncpack_add_component(Debug\n    DISPLAY_NAME \"Debug symbols\"\n    DESCRIPTION \"Debug symbols to aid troubleshooting\"\n    DISABLED\n    DEPENDS Program\n)\n\ninclude(CPack)\n"
  },
  {
    "path": "CMakePresets.json",
    "content": "{\n  \"version\": 10,\n  \"cmakeMinimumRequired\": {\n    \"major\": 3,\n    \"minor\": 16,\n    \"patch\": 0\n  },\n  \"configurePresets\": [\n    {\n      \"name\": \"base-os\",\n      \"displayName\": \"Base OS Config\",\n      \"description\": \"Shared foundation for all OS configurations.\",\n      \"hidden\": true,\n      \"binaryDir\": \"${sourceDir}/build/${presetName}\"\n    },\n    {\n      \"name\": \"Debug\",\n      \"displayName\": \"Debug Build\",\n      \"description\": \"Main config for local development and debugging. Provides full debug symbols.\",\n      \"inherits\": [\"base-os\"],\n      \"cacheVariables\": {\n        \"CMAKE_BUILD_TYPE\": \"Debug\"\n      }\n    },\n    {\n      \"name\": \"RelWithDebInfo\",\n      \"displayName\": \"Optimized Release\",\n      \"description\": \"Optimized for release performance with debug info for profiling.\",\n      \"inherits\": [\"base-os\"],\n      \"cacheVariables\": {\n        \"CMAKE_BUILD_TYPE\": \"RelWithDebInfo\"\n      }\n    }\n  ],\n  \"buildPresets\": [\n    {\n      \"name\": \"Debug\",\n      \"displayName\": \"Debug\",\n      \"configurePreset\": \"Debug\",\n      \"configuration\": \"Debug\"\n    },\n    {\n      \"name\": \"RelWithDebInfo\",\n      \"displayName\": \"Optimized Release\",\n      \"configurePreset\": \"RelWithDebInfo\",\n      \"configuration\": \"RelWithDebInfo\"\n    }\n  ],\n  \"testPresets\": [\n    {\n      \"name\": \"Debug\",\n      \"displayName\": \"Debug\",\n      \"configurePreset\": \"Debug\",\n      \"configuration\": \"Debug\",\n      \"output\": {\n        \"outputOnFailure\": true\n      }\n    },\n    {\n      \"name\": \"RelWithDebInfo\",\n      \"displayName\": \"Optimized Release\",\n      \"configurePreset\": \"RelWithDebInfo\",\n      \"configuration\": \"RelWithDebInfo\",\n      \"output\": {\n        \"outputOnFailure\": true\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "INSTALL.md",
    "content": "# Install EFI Boot Editor\n\n## Build from source\n\n### Dependencies\n\nNecessary tools:\n\n- [CMake](//cmake.org) (>= 3.16)\n- [pkg-config](//www.freedesktop.org/wiki/Software/pkg-config/)\n- recent C/C++ compiler with C++17 support,\n  recommended [GCC](//gcc.gnu.org/) (>= 11.4.0)\n  or [Clang](//clang.llvm.org/) (>= 14.0.0),\n  or [MSVC](//learn.microsoft.com/en-us/cpp/) (>= 19.44.35219.0) on Windows\n\nRequired libraries[^1]:\n\n[^1]: Remember to install **development** files as well. For example\n  `qt6-base-dev`, `libefivar-dev`, `libefiboot-dev`, `zlib1g-dev` on Ubuntu.\n\n- [Qt5](//doc.qt.io/qt-5/gettingstarted.html) (>= 5.15)\n  or [Qt6](//doc.qt.io/qt-6/get-and-install-qt.html) (>= 6.2)\n- [zlib](//github.com/madler/zlib) (>=1.2)\n- [efivar](//github.com/rhboot/efivar) (>= 37) on Linux\n\n### Build steps\n\nYou can list the available configure and build presets with:\n\n```shell\ncmake --list-presets\n```\n\n1. Configure:\n\n    ```shell\n    cmake --preset <preset-name> \\\n          -DCMAKE_INSTALL_PREFIX=/usr \\\n          [-Dparameter=value ...]\n\n    -- The C compiler identification is GNU 12.2.0\n    -- The CXX compiler identification is GNU 12.2.0\n    ...\n    -- Build files have been written to: /efibooteditor/build/<preset-name>\n    ```\n\n    Choose a preset from the list (`cmake --list-presets`). For example, to\n    configure a debug build:\n\n    ```shell\n    cmake --preset Debug\n    ```\n\n    You can still pass additional CMake cache variables using the `-D` flag.\n    For example, to set the install prefix:\n\n    ```shell\n    cmake --preset Debug -DCMAKE_INSTALL_PREFIX=/usr\n    ```\n\n    Available general parameters that can be passed with `-D`:\n\n    - `CMAKE_BUILD_TYPE=Debug,Release,RelWithDebInfo,MinSizeRel` - specifies\n      the build type, can be used to overwrite custom/default C/C++ compiler\n      flags with recommended values\n    - `QT_VERSION_MAJOR=5,6` - force Qt5 or Qt6 build,\n      useful if both are installed\n\n2. Build\n\n    You can build using the configured preset:\n    ```shell\n    cmake --build --preset <preset-name>\n    ```\n    For example, to build the `Debug` preset:\n    ```shell\n    cmake --build --preset Debug\n    ```\n    Alternatively, if you configured without a build preset, you can build\n    directly from the build directory:\n    ```shell\n    cmake --build build --config Release\n\n    [  5%] Automatic MOC and UIC for target efibooteditor\n    ...\n    [100%] Built target efibooteditor\n    ```\n\n3. Install\n\n    ```shell\n    cmake --install build\n\n    -- Install configuration: \"\"\n    -- Installing: /usr/bin/efibooteditor\n    ...\n    ```\n\n### Other\n\nThere is also:\n\n- a [package](//aur.archlinux.org/packages/efibooteditor) in\nthe AUR for Arch Linux\n([-git variant](//aur.archlinux.org/packages/efibooteditor-git))\n- and a [SPEC file](misc/efibooteditor.spec) for RPM based\ndistributions (thanks [@Justinzobel](https://github.com/Justinzobel)).\n\n## Pre-built packages\n\n[Releases](//github.com/Neverous/efibooteditor/releases) automatically build\na set of packages - they're mostly considered for testing purposes / making sure\nthat the code compiles correctly on various environments, but they should also\nwork just fine for normal usage. Just keep in mind they might have some specific\nrequirements inherited from the build environment.\n\n### Rolling development builds (Latest master)\n\nFor the absolute latest builds, you can download automated artifacts from GitHub Actions: **[Latest successful builds](https://github.com/Neverous/efibooteditor/actions/workflows/release.yml?query=is%3Asuccess)**\n\n**How to download:**\n\n1. Click the link above and select the **most recent** run\n2. Scroll down to the **Artifacts** section at the bottom of the page\n3. Download the package specific to your operating system\n\n*Note: You must be logged into a GitHub account to download artifacts from the Actions tab.*\n\n### Winget\n\nLatest releases are also available for download with\n[Windows Package Manager](https://github.com/microsoft/winget-pkgs/tree/master/manifests/e/EFIBootEditor/EFIBootEditor).\n\n### Assets\n\nPackages follow a specific naming pattern:\nEFIBootEditor-[{VERSION}](#version)-[{OS}](#os)-[{QT_VERSION}](#qt_version)-[{COMPILER}](#compiler).[{EXTENSION}](#extension).\n\n#### VERSION\n\nRelease version.\n\n#### OS\n\nOperating system used during build and generally which was targeted for\nthe runtime. The package might work on other systems with similar versions of\nsystem libraries.\n\n#### QT_VERSION\n\nTargeted Qt version, generally required to have compatible Qt version installed,\nthough some packages include all the necessary libraries in the bundles.\n\n#### COMPILER\n\nCompiler used during compilation, generally shouldn't matter but there might be\nsome bugs caught in one but not the other.\n\n#### EXTENSION\n\nAssets are delivered in various formats:\n\n- `.dmg` - macOS App Bundle.\n- `.deb` - Debian package - should also work on any Debian derivative as long\n  as dependencies are met.[^2]\n- `.ddeb` - Debian debug symbol package - primarily useful during\n  troubleshooting.\n- `.msi` - Windows installer.\n- `.zip`, `.tar.zst` - simple archive files, should contain all necessary files,\n  ready to use in-place after decompression (`.zip` is for Windows\n  and `.tar.zst` is for macOS and Linux).\n- `.AppImage` - [AppImage](https://appimage.org/) portable Linux application\n  format.\n\n[^2]: Using `.deb` packages on old Ubuntu (< 21.10) or Debian (< bullseye)\n  releases might require manual Qt installation as versions in the official\n  repositories are older than the minimum requirements.\n  In the CI [aqtinstall](//github.com/miurahr/aqtinstall) is used for\n  installation, but then package install needs to be probably forced.\n  Quick search through the internet also reveals PPAs with pre-built packages\n  from [Stephan Binner](//launchpad.net/~beineri) that might be useful.\n"
  },
  {
    "path": "LICENSE.txt",
    "content": "                   GNU LESSER GENERAL PUBLIC LICENSE\n                       Version 3, 29 June 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\n  This version of the GNU Lesser General Public License incorporates\nthe terms and conditions of version 3 of the GNU General Public\nLicense, supplemented by the additional permissions listed below.\n\n  0. Additional Definitions.\n\n  As used herein, \"this License\" refers to version 3 of the GNU Lesser\nGeneral Public License, and the \"GNU GPL\" refers to version 3 of the GNU\nGeneral Public License.\n\n  \"The Library\" refers to a covered work governed by this License,\nother than an Application or a Combined Work as defined below.\n\n  An \"Application\" is any work that makes use of an interface provided\nby the Library, but which is not otherwise based on the Library.\nDefining a subclass of a class defined by the Library is deemed a mode\nof using an interface provided by the Library.\n\n  A \"Combined Work\" is a work produced by combining or linking an\nApplication with the Library.  The particular version of the Library\nwith which the Combined Work was made is also called the \"Linked\nVersion\".\n\n  The \"Minimal Corresponding Source\" for a Combined Work means the\nCorresponding Source for the Combined Work, excluding any source code\nfor portions of the Combined Work that, considered in isolation, are\nbased on the Application, and not on the Linked Version.\n\n  The \"Corresponding Application Code\" for a Combined Work means the\nobject code and/or source code for the Application, including any data\nand utility programs needed for reproducing the Combined Work from the\nApplication, but excluding the System Libraries of the Combined Work.\n\n  1. Exception to Section 3 of the GNU GPL.\n\n  You may convey a covered work under sections 3 and 4 of this License\nwithout being bound by section 3 of the GNU GPL.\n\n  2. Conveying Modified Versions.\n\n  If you modify a copy of the Library, and, in your modifications, a\nfacility refers to a function or data to be supplied by an Application\nthat uses the facility (other than as an argument passed when the\nfacility is invoked), then you may convey a copy of the modified\nversion:\n\n   a) under this License, provided that you make a good faith effort to\n   ensure that, in the event an Application does not supply the\n   function or data, the facility still operates, and performs\n   whatever part of its purpose remains meaningful, or\n\n   b) under the GNU GPL, with none of the additional permissions of\n   this License applicable to that copy.\n\n  3. Object Code Incorporating Material from Library Header Files.\n\n  The object code form of an Application may incorporate material from\na header file that is part of the Library.  You may convey such object\ncode under terms of your choice, provided that, if the incorporated\nmaterial is not limited to numerical parameters, data structure\nlayouts and accessors, or small macros, inline functions and templates\n(ten or fewer lines in length), you do both of the following:\n\n   a) Give prominent notice with each copy of the object code that the\n   Library is used in it and that the Library and its use are\n   covered by this License.\n\n   b) Accompany the object code with a copy of the GNU GPL and this license\n   document.\n\n  4. Combined Works.\n\n  You may convey a Combined Work under terms of your choice that,\ntaken together, effectively do not restrict modification of the\nportions of the Library contained in the Combined Work and reverse\nengineering for debugging such modifications, if you also do each of\nthe following:\n\n   a) Give prominent notice with each copy of the Combined Work that\n   the Library is used in it and that the Library and its use are\n   covered by this License.\n\n   b) Accompany the Combined Work with a copy of the GNU GPL and this license\n   document.\n\n   c) For a Combined Work that displays copyright notices during\n   execution, include the copyright notice for the Library among\n   these notices, as well as a reference directing the user to the\n   copies of the GNU GPL and this license document.\n\n   d) Do one of the following:\n\n       0) Convey the Minimal Corresponding Source under the terms of this\n       License, and the Corresponding Application Code in a form\n       suitable for, and under terms that permit, the user to\n       recombine or relink the Application with a modified version of\n       the Linked Version to produce a modified Combined Work, in the\n       manner specified by section 6 of the GNU GPL for conveying\n       Corresponding Source.\n\n       1) Use a suitable shared library mechanism for linking with the\n       Library.  A suitable mechanism is one that (a) uses at run time\n       a copy of the Library already present on the user's computer\n       system, and (b) will operate properly with a modified version\n       of the Library that is interface-compatible with the Linked\n       Version.\n\n   e) Provide Installation Information, but only if you would otherwise\n   be required to provide such information under section 6 of the\n   GNU GPL, and only to the extent that such information is\n   necessary to install and execute a modified version of the\n   Combined Work produced by recombining or relinking the\n   Application with a modified version of the Linked Version. (If\n   you use option 4d0, the Installation Information must accompany\n   the Minimal Corresponding Source and Corresponding Application\n   Code. If you use option 4d1, you must provide the Installation\n   Information in the manner specified by section 6 of the GNU GPL\n   for conveying Corresponding Source.)\n\n  5. Combined Libraries.\n\n  You may place library facilities that are a work based on the\nLibrary side by side in a single library together with other library\nfacilities that are not Applications and are not covered by this\nLicense, and convey such a combined library under terms of your\nchoice, if you do both of the following:\n\n   a) Accompany the combined library with a copy of the same work based\n   on the Library, uncombined with any other library facilities,\n   conveyed under the terms of this License.\n\n   b) Give prominent notice with the combined library that part of it\n   is a work based on the Library, and explaining where to find the\n   accompanying uncombined form of the same work.\n\n  6. Revised Versions of the GNU Lesser General Public License.\n\n  The Free Software Foundation may publish revised and/or new versions\nof the GNU Lesser General Public License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns.\n\n  Each version is given a distinguishing version number. If the\nLibrary as you received it specifies that a certain numbered version\nof the GNU Lesser General Public License \"or any later version\"\napplies to it, you have the option of following the terms and\nconditions either of that published version or of any later version\npublished by the Free Software Foundation. If the Library as you\nreceived it does not specify a version number of the GNU Lesser\nGeneral Public License, you may choose any version of the GNU Lesser\nGeneral Public License ever published by the Free Software Foundation.\n\n  If the Library as you received it specifies that a proxy can decide\nwhether future versions of the GNU Lesser General Public License shall\napply, that proxy's public statement of acceptance of any version is\npermanent authorization for you to choose that version for the\nLibrary.\n"
  },
  {
    "path": "README.md",
    "content": "# EFI Boot Editor\n\nBoot Editor for (U)EFI based systems.\n\n![EFIBootEditor](doc/efibooteditor.png)\n\n![File path dialog](doc/filepathdialog.png)\n\n![Hot Keys dialog](doc/hotkeysdialog.png)\n\n## Command-line interface\n\nThere is also a command-line interface for quick backup/restore functionality:\n\n```shell\nUsage: efibooteditor [options]\nBoot Editor for (U)EFI based systems.\n\nOptions:\n  -h, --help           Displays help on commandline options.\n  --help-all           Displays help including Qt specific options.\n  -v, --version        Displays version information.\n  -e, --export <FILE>  Export configuration.\n  -d, --dump <FILE>    Dump raw EFI data.\n  -i, --import <FILE>  Import configuration from JSON (either from export or\n                       raw dump).\n  -f, --force          Force import, don't ask for confirmation.\n```\n\n## Requirements\n\n* [Qt](//www.qt.io/) (>=5.15)\n* [zlib](//github.com/madler/zlib) (>=1.2)\n* [efivar](//github.com/rhboot/efivar) (>=37) on linux\n\n## Installation\n\nSee [INSTALL](INSTALL.md) instructions.\n\n## Localization\n\nYou can help localize this project on [Weblate](https://hosted.weblate.org/engage/efibooteditor/).\n\n[![Translations](https://hosted.weblate.org/widget/efibooteditor/efibooteditor/multi-auto.svg)](//hosted.weblate.org/engage/efibooteditor/)\n\n## License\n\nThis project is licensed under the LGPLv3 License -\nsee the [LICENSE](LICENSE.txt) file for details\n"
  },
  {
    "path": "cmake/CPackLinux.cmake",
    "content": "if (CPACK_GENERATOR STREQUAL \"DEB\")\n    list(REMOVE_ITEM CPACK_COMPONENTS_ALL \"Runtime\")\nendif()\n\nif (NOT CPACK_GENERATOR STREQUAL \"AppImage\")\n    list(REMOVE_ITEM CPACK_COMPONENTS_ALL \"AppImage\")\nendif()\n"
  },
  {
    "path": "cmake/FindZLIB.cmake",
    "content": "# Distributed under the OSI-approved BSD 3-Clause License.  See accompanying\n# file Copyright.txt or https://cmake.org/licensing for details.\n\n#[=======================================================================[.rst:\nFindZLIB\n--------\n\nFind the native ZLIB includes and library.\n\nIMPORTED Targets\n^^^^^^^^^^^^^^^^\n\n.. versionadded:: 3.1\n\nThis module defines :prop_tgt:`IMPORTED` target ``ZLIB::ZLIB``, if\nZLIB has been found.\n\nResult Variables\n^^^^^^^^^^^^^^^^\n\nThis module defines the following variables:\n\n``ZLIB_INCLUDE_DIRS``\n  where to find zlib.h, etc.\n``ZLIB_LIBRARIES``\n  List of libraries when using zlib.\n``ZLIB_LIBRARIES_DLL``\n  List of dynamic libraries when using zlib. (Windows only)\n``ZLIB_FOUND``\n  True if zlib found.\n``ZLIB_VERSION``\n  .. versionadded:: 3.26\n    the version of Zlib found.\n\n  See also legacy variable ``ZLIB_VERSION_STRING``.\n\n.. versionadded:: 3.4\n  Debug and Release variants are found separately.\n\nLegacy Variables\n^^^^^^^^^^^^^^^^\n\nThe following variables are provided for backward compatibility:\n\n``ZLIB_VERSION_MAJOR``\n  The major version of zlib.\n\n  .. versionchanged:: 3.26\n    Superseded by ``ZLIB_VERSION``.\n``ZLIB_VERSION_MINOR``\n  The minor version of zlib.\n\n  .. versionchanged:: 3.26\n    Superseded by ``ZLIB_VERSION``.\n``ZLIB_VERSION_PATCH``\n  The patch version of zlib.\n\n  .. versionchanged:: 3.26\n    Superseded by ``ZLIB_VERSION``.\n``ZLIB_VERSION_TWEAK``\n  The tweak version of zlib.\n\n  .. versionchanged:: 3.26\n    Superseded by ``ZLIB_VERSION``.\n``ZLIB_VERSION_STRING``\n  The version of zlib found (x.y.z)\n\n  .. versionchanged:: 3.26\n    Superseded by ``ZLIB_VERSION``.\n``ZLIB_MAJOR_VERSION``\n  The major version of zlib.  Superseded by ``ZLIB_VERSION_MAJOR``.\n``ZLIB_MINOR_VERSION``\n  The minor version of zlib.  Superseded by ``ZLIB_VERSION_MINOR``.\n``ZLIB_PATCH_VERSION``\n  The patch version of zlib.  Superseded by ``ZLIB_VERSION_PATCH``.\n\nHints\n^^^^^\n\nA user may set ``ZLIB_ROOT`` to a zlib installation root to tell this\nmodule where to look.\n\n.. versionadded:: 3.24\n  Set ``ZLIB_USE_STATIC_LIBS`` to ``ON`` to look for static libraries.\n  Default is ``OFF``.\n\n#]=======================================================================]\n\nif(ZLIB_FIND_COMPONENTS AND NOT ZLIB_FIND_QUIETLY)\n  message(AUTHOR_WARNING\n    \"ZLIB does not provide any COMPONENTS.  Calling\\n\"\n    \"  find_package(ZLIB COMPONENTS ...)\\n\"\n    \"will always fail.\"\n    )\nendif()\n\nset(_ZLIB_SEARCHES)\n\n# Search ZLIB_ROOT first if it is set.\nif(ZLIB_ROOT)\n  set(_ZLIB_SEARCH_ROOT PATHS ${ZLIB_ROOT} NO_DEFAULT_PATH)\n  list(APPEND _ZLIB_SEARCHES _ZLIB_SEARCH_ROOT)\nendif()\n\n# Normal search.\nset(_ZLIB_x86 \"(x86)\")\nset(_ZLIB_SEARCH_NORMAL\n    PATHS \"[HKEY_LOCAL_MACHINE\\\\SOFTWARE\\\\GnuWin32\\\\Zlib;InstallPath]\"\n          \"$ENV{ProgramFiles}/zlib\"\n          \"$ENV{ProgramFiles${_ZLIB_x86}}/zlib\")\nunset(_ZLIB_x86)\nlist(APPEND _ZLIB_SEARCHES _ZLIB_SEARCH_NORMAL)\n\nif(ZLIB_USE_STATIC_LIBS)\n  set(ZLIB_NAMES zlibstatic zlibstat zlib z)\n  set(ZLIB_NAMES_DEBUG zlibstaticd zlibstatd zlibd zd)\nelse()\n  set(ZLIB_NAMES z zlib zdll zlib1 zlibstatic zlibwapi zlibvc zlibstat)\n  set(ZLIB_NAMES_DEBUG zd zlibd zdlld zlibd1 zlib1d zlibstaticd zlibwapid zlibvcd zlibstatd)\nendif()\n\n# Try each search configuration.\nforeach(search ${_ZLIB_SEARCHES})\n  find_path(ZLIB_INCLUDE_DIR NAMES zlib.h ${${search}} PATH_SUFFIXES include)\nendforeach()\n\n# Allow ZLIB_LIBRARY to be set manually, as the location of the zlib library\nif(NOT ZLIB_LIBRARY)\n  if(DEFINED CMAKE_FIND_LIBRARY_PREFIXES)\n    set(_zlib_ORIG_CMAKE_FIND_LIBRARY_PREFIXES \"${CMAKE_FIND_LIBRARY_PREFIXES}\")\n  else()\n    set(_zlib_ORIG_CMAKE_FIND_LIBRARY_PREFIXES)\n  endif()\n  if(DEFINED CMAKE_FIND_LIBRARY_SUFFIXES)\n    set(_zlib_ORIG_CMAKE_FIND_LIBRARY_SUFFIXES \"${CMAKE_FIND_LIBRARY_SUFFIXES}\")\n  else()\n    set(_zlib_ORIG_CMAKE_FIND_LIBRARY_SUFFIXES)\n  endif()\n  # Prefix/suffix of the win32/Makefile.gcc build\n  if(WIN32)\n    list(APPEND CMAKE_FIND_LIBRARY_PREFIXES \"\" \"lib\")\n    list(APPEND CMAKE_FIND_LIBRARY_SUFFIXES \".dll.a\")\n  endif()\n  # Support preference of static libs by adjusting CMAKE_FIND_LIBRARY_SUFFIXES\n  if(ZLIB_USE_STATIC_LIBS)\n    if(WIN32)\n      set(CMAKE_FIND_LIBRARY_SUFFIXES .lib .a ${CMAKE_FIND_LIBRARY_SUFFIXES})\n    else()\n      set(CMAKE_FIND_LIBRARY_SUFFIXES .a)\n    endif()\n  endif()\n\n  foreach(search ${_ZLIB_SEARCHES})\n    find_library(ZLIB_LIBRARY_RELEASE NAMES ${ZLIB_NAMES} NAMES_PER_DIR ${${search}} PATH_SUFFIXES lib)\n    find_library(ZLIB_LIBRARY_DEBUG NAMES ${ZLIB_NAMES_DEBUG} NAMES_PER_DIR ${${search}} PATH_SUFFIXES lib)\n  endforeach()\n\n  # Restore the original find library ordering\n  if(DEFINED _zlib_ORIG_CMAKE_FIND_LIBRARY_SUFFIXES)\n    set(CMAKE_FIND_LIBRARY_SUFFIXES \"${_zlib_ORIG_CMAKE_FIND_LIBRARY_SUFFIXES}\")\n  else()\n    set(CMAKE_FIND_LIBRARY_SUFFIXES)\n  endif()\n  if(DEFINED _zlib_ORIG_CMAKE_FIND_LIBRARY_PREFIXES)\n    set(CMAKE_FIND_LIBRARY_PREFIXES \"${_zlib_ORIG_CMAKE_FIND_LIBRARY_PREFIXES}\")\n  else()\n    set(CMAKE_FIND_LIBRARY_PREFIXES)\n  endif()\n\n  include(SelectLibraryConfigurations)\n  select_library_configurations(ZLIB)\nendif()\n\n#if(WIN32)\n  # Allow ZLIB_LIBRARY_DLL to be set manually, as the location of the zlib dll library\n  if(NOT ZLIB_LIBRARY_DLL)\n    set(ZLIB_NAMES_DLL \"${ZLIB_NAMES}\")\n    set(ZLIB_NAMES_DLL_DEBUG \"${ZLIB_NAMES_DEBUG}\")\n    list(TRANSFORM ZLIB_NAMES_DLL APPEND \".dll\")\n    list(TRANSFORM ZLIB_NAMES_DLL_DEBUG APPEND \".dll\")\n    foreach(search ${_ZLIB_SEARCHES})\n        find_program(ZLIB_DLL_LIBRARY_RELEASE NAMES ${ZLIB_NAMES_DLL} NAMES_PER_DIR ${${search}} PATH_SUFFIXES bin)\n        find_program(ZLIB_DLL_LIBRARY_DEBUG NAMES ${ZLIB_NAMES_DLL_DEBUG} NAMES_PER_DIR ${${search}} PATH_SUFFIXES bin)\n    endforeach()\n\n    include(SelectLibraryConfigurations)\n    select_library_configurations(ZLIB_DLL)\n\n    set(ZLIB_LIBRARY_DLL \"${ZLIB_DLL_LIBRARY}\")\n    set(ZLIB_LIBRARIES_DLL \"${ZLIB_DLL_LIBRARIES}\")\n    set(ZLIB_LIBRARY_DLL_RELEASE \"${ZLIB_DLL_LIBRARY_RELEASE}\")\n    set(ZLIB_LIBRARY_DLL_DEBUG \"${ZLIB_DLL_LIBRARY_DEBUG}\")\n\n    unset(ZLIB_DLL_LIBRARY)\n    unset(ZLIB_DLL_LIBRARIES)\n    unset(ZLIB_DLL_LIBRARY_RELEASE)\n    unset(ZLIB_DLL_LIBRARY_DEBUG)\n\n    unset(ZLIB_NAMES_DLL)\n    unset(ZLIB_NAMES_DEBUG_DLL)\n  endif()\n#endif()\n\nunset(ZLIB_NAMES)\nunset(ZLIB_NAMES_DEBUG)\n\nmark_as_advanced(ZLIB_INCLUDE_DIR)\n\nif(ZLIB_INCLUDE_DIR AND EXISTS \"${ZLIB_INCLUDE_DIR}/zlib.h\")\n  file(STRINGS \"${ZLIB_INCLUDE_DIR}/zlib.h\" ZLIB_H REGEX \"^#define ZLIB_VERSION \\\"[^\\\"]*\\\"$\")\n  string(REGEX REPLACE \"^.*ZLIB_VERSION \\\"([0-9]+).*$\" \"\\\\1\" ZLIB_VERSION_MAJOR \"${ZLIB_H}\")\n  string(REGEX REPLACE \"^.*ZLIB_VERSION \\\"[0-9]+\\\\.([0-9]+).*$\" \"\\\\1\" ZLIB_VERSION_MINOR  \"${ZLIB_H}\")\n  string(REGEX REPLACE \"^.*ZLIB_VERSION \\\"[0-9]+\\\\.[0-9]+\\\\.([0-9]+).*$\" \"\\\\1\" ZLIB_VERSION_PATCH \"${ZLIB_H}\")\n  set(ZLIB_VERSION_STRING \"${ZLIB_VERSION_MAJOR}.${ZLIB_VERSION_MINOR}.${ZLIB_VERSION_PATCH}\")\n\n  # only append a TWEAK version if it exists:\n  set(ZLIB_VERSION_TWEAK \"\")\n  if( \"${ZLIB_H}\" MATCHES \"ZLIB_VERSION \\\"[0-9]+\\\\.[0-9]+\\\\.[0-9]+\\\\.([0-9]+)\")\n    set(ZLIB_VERSION_TWEAK \"${CMAKE_MATCH_1}\")\n    string(APPEND ZLIB_VERSION_STRING \".${ZLIB_VERSION_TWEAK}\")\n  endif()\n\n  set(ZLIB_MAJOR_VERSION \"${ZLIB_VERSION_MAJOR}\")\n  set(ZLIB_MINOR_VERSION \"${ZLIB_VERSION_MINOR}\")\n  set(ZLIB_PATCH_VERSION \"${ZLIB_VERSION_PATCH}\")\nendif()\n\ninclude(FindPackageHandleStandardArgs)\nFIND_PACKAGE_HANDLE_STANDARD_ARGS(ZLIB REQUIRED_VARS ZLIB_LIBRARY ZLIB_INCLUDE_DIR\n                                       VERSION_VAR ZLIB_VERSION\n                                       HANDLE_COMPONENTS)\n\nif(ZLIB_FOUND)\n    set(ZLIB_INCLUDE_DIRS ${ZLIB_INCLUDE_DIR})\n\n    if(NOT ZLIB_LIBRARIES)\n      set(ZLIB_LIBRARIES ${ZLIB_LIBRARY})\n    endif()\n\n    if(NOT ZLIB_LIBRARIES_DLL)\n      set(ZLIB_LIBRARIES_DLL ${ZLIB_LIBRARY_DLL})\n    endif()\n\n    if(NOT TARGET ZLIB::ZLIB)\n      if(ZLIB_LIBRARY_DLL)\n        add_library(ZLIB::ZLIB SHARED IMPORTED)\n      else()\n        add_library(ZLIB::ZLIB UNKNOWN IMPORTED)\n      endif()\n\n      set_target_properties(ZLIB::ZLIB PROPERTIES\n        INTERFACE_INCLUDE_DIRECTORIES \"${ZLIB_INCLUDE_DIRS}\")\n\n      if(ZLIB_LIBRARY_RELEASE)\n        set_property(TARGET ZLIB::ZLIB APPEND PROPERTY\n          IMPORTED_CONFIGURATIONS RELEASE)\n        if(ZLIB_LIBRARY_DLL_RELEASE)\n          set_target_properties(ZLIB::ZLIB PROPERTIES\n            IMPORTED_IMPLIB_RELEASE \"${ZLIB_LIBRARY_RELEASE}\"\n            IMPORTED_LOCATION_RELEASE \"${ZLIB_LIBRARY_DLL_RELEASE}\")\n        else()\n          set_target_properties(ZLIB::ZLIB PROPERTIES\n            IMPORTED_LOCATION_RELEASE \"${ZLIB_LIBRARY_RELEASE}\")\n        endif()\n      endif()\n\n      if(ZLIB_LIBRARY_DEBUG)\n        set_property(TARGET ZLIB::ZLIB APPEND PROPERTY\n          IMPORTED_CONFIGURATIONS DEBUG)\n        if(ZLIB_LIBRARY_DLL_DEBUG)\n          set_target_properties(ZLIB::ZLIB PROPERTIES\n            IMPORTED_IMPLIB_DEBUG \"${ZLIB_LIBRARY_DEBUG}\"\n            IMPORTED_LOCATION_DEBUG \"${ZLIB_LIBRARY_DLL_DEBUG}\")\n        else()\n          set_target_properties(ZLIB::ZLIB PROPERTIES\n            IMPORTED_LOCATION_DEBUG \"${ZLIB_LIBRARY_DEBUG}\")\n        endif()\n\n      endif()\n\n      if(NOT ZLIB_LIBRARY_RELEASE AND NOT ZLIB_LIBRARY_DEBUG)\n        if(ZLIB_LIBRARY_DLL)\n          set_property(TARGET ZLIB::ZLIB APPEND PROPERTY\n            IMPORTED_IMPLIB \"${ZLIB_LIBRARY}\"\n            IMPORTED_LOCATION \"${ZLIB_LIBRARY_DLL}\")\n        else()\n          set_property(TARGET ZLIB::ZLIB APPEND PROPERTY\n            IMPORTED_LOCATION \"${ZLIB_LIBRARY}\")\n        endif()\n      endif()\n    endif()\nendif()\n"
  },
  {
    "path": "doc/RELEASE.md",
    "content": "# Release process\n\n1. Draft release for new tag through [GitHub UI](https://github.com/Neverous/efibooteditor/releases)\n\n2. Create tag for new version\n\n    ```shell\n    git tag -s vX.Y.Z -m \"\"\n    git push tag vX.Y.Z\n    ```\n\n3. Monitor the asset preparation in GHA, it should publish the draft after it's done\n\n## Update [AUR](https://aur.archlinux.org/packages/efibooteditor)\n\n1. Bump version in PKGBUILD\n\n2. Update b2sums: `makepkg -g`\n\n3. Update SRCINFO: `makepkg --printsrcinfo > .SRCINFO`\n\n4. Commit and push changes to AUR\n\n    ```shell\n    git commit -m \"Update to vX.Y.Z\"\n    git push\n    ```\n"
  },
  {
    "path": "doc/screenshot.json",
    "content": "{\n    \"AuditMode\": false,\n    \"Boot\": {\n        \"0000\": {\n            \"attributes\": 1,\n            \"description\": \"Windows Boot Manager\",\n            \"efi_attributes\": 7,\n            \"file_path\": [\n                {\n                    \"partition_format\": 2,\n                    \"partition_number\": 1,\n                    \"partition_signature\": \"{721c8b66-426c-4e86-8e99-3457c46ab0b9}\",\n                    \"partition_size\": \"0x32\",\n                    \"partition_start\": \"0x1CD6\",\n                    \"signature_type\": 2,\n                    \"subtype\": \"HD\",\n                    \"type\": \"MEDIA\"\n                },\n                {\n                    \"path_name\": \"\\\\EFI\\\\Microsoft\\\\Boot\\\\bootmgfw.efi\",\n                    \"subtype\": \"FILE_PATH\",\n                    \"type\": \"MEDIA\"\n                },\n                {\n                    \"_subtype\": 255,\n                    \"subtype\": \"MULTI\",\n                    \"type\": \"END\"\n                }\n            ],\n            \"optional_data\": \"V0lORE9XUwABAAAAiAAAAHgAAABCAEMARABPAEIASgBFAEMAVAA9AHsAOQBkAGUAYQA4ADYAMgBjAC0ANQBjAGQAZAAtADQAZQA3ADAALQBhAGMAYwAxAC0AZgAzADIAYgAzADQANABkADQANwA5ADUAfQAAADkAAQAAABAAAAAEAAAAf/8EAA==\",\n            \"optional_data_format\": 0\n        },\n        \"0001\": {\n            \"attributes\": 1,\n            \"description\": \"Arch Linux\",\n            \"efi_attributes\": 7,\n            \"file_path\": [\n                {\n                    \"partition_format\": 2,\n                    \"partition_number\": 1,\n                    \"partition_signature\": \"{721c8b66-426c-4e86-8e99-3457c46ab0b9}\",\n                    \"partition_size\": \"0x32\",\n                    \"partition_start\": \"0x15876\",\n                    \"signature_type\": 2,\n                    \"subtype\": \"HD\",\n                    \"type\": \"MEDIA\"\n                },\n                {\n                    \"path_name\": \"\\\\vmlinuz-linux\",\n                    \"subtype\": \"FILE_PATH\",\n                    \"type\": \"MEDIA\"\n                },\n                {\n                    \"_subtype\": 255,\n                    \"subtype\": \"MULTI\",\n                    \"type\": \"END\"\n                }\n            ],\n            \"optional_data\": \"root=/dev/sda2 rw initrd=\\\\initramfs-linux.img init=/lib/systemd/systemd quiet logo.nologo console=tty1\",\n            \"optional_data_format\": 1\n        },\n        \"0010\": {\n            \"attributes\": 256,\n            \"description\": \"Setup\",\n            \"efi_attributes\": 7,\n            \"file_path\": [\n                {\n                    \"name\": \"{721c8b66-426c-4e86-8e99-3457c46ab0b9}\",\n                    \"subtype\": \"FIRMWARE_FILE\",\n                    \"type\": \"MEDIA\"\n                },\n                {\n                    \"_subtype\": 255,\n                    \"subtype\": \"MULTI\",\n                    \"type\": \"END\"\n                }\n            ],\n            \"optional_data\": \"\",\n            \"optional_data_format\": 2\n        },\n        \"0011\": {\n            \"attributes\": 256,\n            \"description\": \"Boot Menu\",\n            \"efi_attributes\": 7,\n            \"file_path\": [\n                {\n                    \"name\": \"{721c8b66-426c-4e86-8e99-3457c46ab0b9}\",\n                    \"subtype\": \"FIRMWARE_FILE\",\n                    \"type\": \"MEDIA\"\n                },\n                {\n                    \"_subtype\": 255,\n                    \"subtype\": \"MULTI\",\n                    \"type\": \"END\"\n                }\n            ],\n            \"optional_data\": \"\",\n            \"optional_data_format\": 2\n        },\n        \"0012\": {\n            \"attributes\": 256,\n            \"description\": \"Diagnostic Splash\",\n            \"efi_attributes\": 7,\n            \"file_path\": [\n                {\n                    \"name\": \"{721c8b66-426c-4e86-8e99-3457c46ab0b9}\",\n                    \"subtype\": \"FIRMWARE_FILE\",\n                    \"type\": \"MEDIA\"\n                },\n                {\n                    \"_subtype\": 255,\n                    \"subtype\": \"MULTI\",\n                    \"type\": \"END\"\n                }\n            ],\n            \"optional_data\": \"\",\n            \"optional_data_format\": 2\n        },\n        \"0017\": {\n            \"attributes\": 257,\n            \"description\": \"PCI LAN: EFI Network (IPv4)\",\n            \"efi_attributes\": 7,\n            \"file_path\": [\n                {\n                    \"hid\": 167985616,\n                    \"subtype\": \"ACPI\",\n                    \"type\": \"ACPI\",\n                    \"uid\": 0\n                },\n                {\n                    \"device\": 28,\n                    \"function\": 3,\n                    \"subtype\": \"PCI\",\n                    \"type\": \"HW\"\n                },\n                {\n                    \"device\": 0,\n                    \"function\": 0,\n                    \"subtype\": \"PCI\",\n                    \"type\": \"HW\"\n                },\n                {\n                    \"address\": \"54ee7562e09c0000000000000000000000000000000000000000000000000000\",\n                    \"if_type\": 0,\n                    \"subtype\": \"MAC_ADDRESS\",\n                    \"type\": \"MSG\"\n                },\n                {\n                    \"gateway_ip_address\": \"0.0.0.0\",\n                    \"local_ip_address\": \"0.0.0.0\",\n                    \"local_port\": 0,\n                    \"protocol\": 0,\n                    \"remote_ip_address\": \"0.0.0.0\",\n                    \"remote_port\": 0,\n                    \"static_ip_address\": false,\n                    \"subnet_mask\": \"0.0.0.0\",\n                    \"subtype\": \"IPV4\",\n                    \"type\": \"MSG\"\n                },\n                {\n                    \"_subtype\": 255,\n                    \"subtype\": \"MULTI\",\n                    \"type\": \"END\"\n                }\n            ],\n            \"optional_data\": \"꡸꽊⨫仼鲧쳵㶏̸\",\n            \"optional_data_format\": 1\n        },\n        \"0019\": {\n            \"attributes\": 385,\n            \"description\": \"PCI LAN: EFI Network (IPv6)\",\n            \"efi_attributes\": 7,\n            \"file_path\": [\n                {\n                    \"hid\": 167985616,\n                    \"subtype\": \"ACPI\",\n                    \"type\": \"ACPI\",\n                    \"uid\": 0\n                },\n                {\n                    \"device\": 28,\n                    \"function\": 3,\n                    \"subtype\": \"PCI\",\n                    \"type\": \"HW\"\n                },\n                {\n                    \"device\": 0,\n                    \"function\": 0,\n                    \"subtype\": \"PCI\",\n                    \"type\": \"HW\"\n                },\n                {\n                    \"address\": \"54ee7562e09c0000000000000000000000000000000000000000000000000000\",\n                    \"if_type\": 0,\n                    \"subtype\": \"MAC_ADDRESS\",\n                    \"type\": \"MSG\"\n                },\n                {\n                    \"gateway_ip_address\": \"::\",\n                    \"ip_address_origin\": 0,\n                    \"local_ip_address\": \"::\",\n                    \"local_port\": 0,\n                    \"prefix_length\": 64,\n                    \"protocol\": 0,\n                    \"remote_ip_address\": \"::\",\n                    \"remote_port\": 0,\n                    \"subtype\": \"IPV6\",\n                    \"type\": \"MSG\"\n                },\n                {\n                    \"_subtype\": 255,\n                    \"subtype\": \"MULTI\",\n                    \"type\": \"END\"\n                }\n            ],\n            \"optional_data\": \"꡸꽊⨫仼鲧쳵㶏̸\",\n            \"optional_data_format\": 1\n        }\n    },\n    \"BootOptionSupport\": {\n        \"capabilities\": [\n            \"KEY\",\n            \"APP\",\n            \"SYSPREP\"\n        ],\n        \"key_count\": 3\n    },\n    \"BootOrder\": [\n        0,\n        1\n    ],\n    \"DeployedMode\": false,\n    \"Key\": {\n        \"0000\": {\n            \"boot_option\": 17,\n            \"keys\": \"F2\",\n            \"vendor_data\": \"\"\n        },\n        \"0001\": {\n            \"boot_option\": 17,\n            \"keys\": \"Delete\",\n            \"vendor_data\": \"\"\n        },\n        \"0002\": {\n            \"boot_option\": 1,\n            \"keys\": \"a\",\n            \"vendor_data\": \"\"\n        },\n        \"0003\": {\n            \"boot_option\": 0,\n            \"keys\": \"w\",\n            \"vendor_data\": \"\"\n        },\n        \"0004\": {\n            \"boot_option\": 16,\n            \"keys\": \"Shift+Alt+S\",\n            \"vendor_data\": \"\"\n        }\n    },\n    \"OsIndicationsSupported\": [\n        \"BOOT_TO_FW_UI\",\n        \"CAPSULE_RESULT_VAR_SUPPORTED\"\n    ],\n    \"SecureBoot\": true,\n    \"SetupMode\": false,\n    \"Timeout\": 10,\n    \"VendorKeys\": false\n}\n"
  },
  {
    "path": "icons/Tango/index.theme",
    "content": "[Icon Theme]\nName=Tango\nComment=Tango Icon Theme\nInherits=gnome,crystalsvg\nExample=x-directory-normal\n\n# KDE Specific Stuff\nDisplayDepth=32\nLinkOverlay=link_overlay\nLockOverlay=lock_overlay\nZipOverlay=zip_overlay\nDesktopDefault=48\nToolbarDefault=22\nMainToolbarDefault=22\nSmallDefault=16\nSmallSizes=16\nPanelDefault=32\n\n# Directory list\nDirectories=16x16/actions,16x16/apps,16x16/categories,16x16/devices,16x16/emblems,16x16/emotes,16x16/mimetypes,16x16/places,16x16/status,22x22/actions,22x22/apps,22x22/categories,22x22/devices,22x22/emblems,22x22/emotes,22x22/mimetypes,22x22/places,22x22/status,24x24/actions,24x24/apps,24x24/categories,24x24/devices,24x24/emblems,24x24/emotes,24x24/mimetypes,24x24/places,24x24/status,32x32/actions,32x32/apps,32x32/categories,32x32/devices,32x32/emblems,32x32/emotes,32x32/mimetypes,32x32/places,32x32/status,48x48/actions,48x48/apps,48x48/categories,48x48/devices,48x48/emblems,48x48/emotes,48x48/mimetypes,48x48/places,48x48/status,64x64/actions,64x64/apps,64x64/categories,64x64/devices,64x64/emblems,64x64/emotes,64x64/mimetypes,64x64/places,64x64/status,72x72/actions,72x72/apps,72x72/categories,72x72/devices,72x72/emblems,72x72/emotes,72x72/mimetypes,72x72/places,72x72/status,96x96/actions,96x96/apps,96x96/categories,96x96/devices,96x96/emblems,96x96/emotes,96x96/mimetypes,96x96/places,96x96/status,128x128/actions,128x128/apps,128x128/categories,128x128/devices,128x128/emblems,128x128/emotes,128x128/mimetypes,128x128/places,128x128/status,scalable/actions,scalable/apps,scalable/categories,scalable/devices,scalable/emblems,scalable/emotes,scalable/mimetypes,scalable/places,scalable/status\n\n[scalable/actions]\nSize=48\nContext=Actions\nType=Scalable\nMinSize=32\nMaxSize=256\n\n[scalable/apps]\nSize=48\nContext=Applications\nType=Scalable\nMinSize=32\nMaxSize=256\n\n[scalable/categories]\nSize=48\nContext=Categories\nType=Scalable\nMinSize=32\nMaxSize=256\n\n[scalable/devices]\nSize=48\nContext=Devices\nType=Scalable\nMinSize=32\nMaxSize=256\n\n[scalable/emblems]\nSize=48\nContext=Emblems\nType=Scalable\nMinSize=32\nMaxSize=256\n\n[scalable/emotes]\nSize=48\nContext=Emotes\nType=Scalable\nMinsize=32\nMaxSize=256\n\n[scalable/mimetypes]\nSize=48\nContext=MimeTypes\nType=Scalable\nMinSize=32\nMaxSize=256\n\n[scalable/places]\nSize=48\nContext=Places\nType=Scalable\nMinSize=32\nMaxSize=256\n\n[scalable/status]\nSize=48\nContext=Status\nType=Scalable\nMinSize=32\nMaxSize=256\n"
  },
  {
    "path": "icons/Tango/scalable/places/folder.icon",
    "content": "[Icon Data]\nAttachPoints=200,800|800,800|800,80|200,80\n"
  },
  {
    "path": "icons/Tango/scalable/status/folder-drag-accept.icon",
    "content": "[Icon Data]\nAttachPoints=200,200|800,200|800,800|200,800\n"
  },
  {
    "path": "icons/Tango/scalable/status/folder-visiting.icon",
    "content": "[Icon Data]\nAttachPoints=200,200|800,200|800,800|200,800\n"
  },
  {
    "path": "icons.qrc",
    "content": "<RCC>\n    <qresource prefix=\"/\">\n        <file>icons/Tango/index.theme</file>\n        <file>icons/Tango/scalable/actions/application-exit.svg</file>\n        <file>icons/Tango/scalable/actions/document-open.svg</file>\n        <file>icons/Tango/scalable/actions/document-properties.svg</file>\n        <file>icons/Tango/scalable/actions/document-revert.svg</file>\n        <file>icons/Tango/scalable/actions/document-save-as.svg</file>\n        <file>icons/Tango/scalable/actions/document-save.svg</file>\n        <file>icons/Tango/scalable/actions/edit-copy.svg</file>\n        <file>icons/Tango/scalable/actions/edit-redo.svg</file>\n        <file>icons/Tango/scalable/actions/edit-undo.svg</file>\n        <file>icons/Tango/scalable/actions/format-justify-left.svg</file>\n        <file>icons/Tango/scalable/actions/go-down.svg</file>\n        <file>icons/Tango/scalable/actions/go-up.svg</file>\n        <file>icons/Tango/scalable/actions/list-add.svg</file>\n        <file>icons/Tango/scalable/actions/list-remove.svg</file>\n        <file>icons/Tango/scalable/actions/process-stop.svg</file>\n        <file>icons/Tango/scalable/actions/system-search.svg</file>\n        <file>icons/Tango/scalable/actions/view-refresh.svg</file>\n        <file>icons/Tango/scalable/apps/help-browser.svg</file>\n        <file>icons/Tango/scalable/categories/preferences-system.svg</file>\n        <file>icons/Tango/scalable/devices/audio-card.svg</file>\n        <file>icons/Tango/scalable/devices/computer.svg</file>\n        <file>icons/Tango/scalable/devices/drive-harddisk.svg</file>\n        <file>icons/Tango/scalable/devices/drive-optical.svg</file>\n        <file>icons/Tango/scalable/devices/drive-removable-media.svg</file>\n        <file>icons/Tango/scalable/devices/input-gaming.svg</file>\n        <file>icons/Tango/scalable/devices/media-flash.svg</file>\n        <file>icons/Tango/scalable/devices/media-floppy.svg</file>\n        <file>icons/Tango/scalable/devices/network-wired.svg</file>\n        <file>icons/Tango/scalable/devices/network-wireless.svg</file>\n        <file>icons/Tango/scalable/emblems/emblem-symbolic-link.svg</file>\n        <file>icons/Tango/scalable/mimetypes/text-html.svg</file>\n    </qresource>\n</RCC>\n"
  },
  {
    "path": "include/bootentry.h",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#pragma once\n\n#include <QHostAddress>\n#include <QMetaType>\n#include <QString>\n#include <QUrl>\n#include <QUuid>\n#include <QVariant>\n#include <QVector>\n\n#include \"efiboot.h\"\n\nnamespace FilePath\n{\n\n/*\n   Hardware\n   This Device Path defines how a device is attached to the resource domain of a system, where resource domain is simply the shared memory, memory mapped I/O, and I/O space of the system.\n*/\n\n/*\n   PCI\n   The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.\n*/\nclass Pci\n{\npublic:\n    static constexpr auto TYPE = \"HW\";\n    static constexpr auto SUBTYPE = \"PCI\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    uint8_t function = {};\n    uint8_t device = {};\n\npublic:\n    Pci() = default;\n    Pci(const EFIBoot::File_path::HW::Pci &pci);\n    EFIBoot::File_path::HW::Pci toEFIBootFilePath() const;\n\n    static std::optional<Pci> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   PCCARD\n   PCCARD Settings.\n*/\nclass Pccard\n{\npublic:\n    static constexpr auto TYPE = \"HW\";\n    static constexpr auto SUBTYPE = \"PCCARD\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    uint8_t function_number = {};\n\npublic:\n    Pccard() = default;\n    Pccard(const EFIBoot::File_path::HW::Pccard &pccard);\n    EFIBoot::File_path::HW::Pccard toEFIBootFilePath() const;\n\n    static std::optional<Pccard> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   Memory Mapped\n   Memory Mapped Settings.\n*/\nclass MemoryMapped\n{\npublic:\n    static constexpr auto TYPE = \"HW\";\n    static constexpr auto SUBTYPE = \"MEMORY_MAPPED\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    EFIBoot::File_path::HW::Memory_mapped::MEMORY_TYPE memory_type = {};\n    uint64_t start_address = {};\n    uint64_t end_address = {};\n\npublic:\n    MemoryMapped() = default;\n    MemoryMapped(const EFIBoot::File_path::HW::Memory_mapped &memory_mapped);\n    EFIBoot::File_path::HW::Memory_mapped toEFIBootFilePath() const;\n\n    static std::optional<MemoryMapped> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   Controller\n   Controller settings.\n*/\nclass Controller\n{\npublic:\n    static constexpr auto TYPE = \"HW\";\n    static constexpr auto SUBTYPE = \"CONTROLLER\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    uint32_t controller_number = {};\n\npublic:\n    Controller() = default;\n    Controller(const EFIBoot::File_path::HW::Controller &controller);\n    EFIBoot::File_path::HW::Controller toEFIBootFilePath() const;\n\n    static std::optional<Controller> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   BMC\n   The Device Path for a Baseboard Management Controller (BMC) host interface.\n*/\nclass Bmc\n{\npublic:\n    static constexpr auto TYPE = \"HW\";\n    static constexpr auto SUBTYPE = \"BMC\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    EFIBoot::File_path::HW::Bmc::INTERFACE_TYPE interface_type = {};\n    uint64_t base_address = {};\n\npublic:\n    Bmc() = default;\n    Bmc(const EFIBoot::File_path::HW::Bmc &bmc);\n    EFIBoot::File_path::HW::Bmc toEFIBootFilePath() const;\n\n    static std::optional<Bmc> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   ACPI\n   This Device Path is used to describe devices whose enumeration is not described in an industry-standard fashion. These devices must be described using ACPI AML in the ACPI name space; this Device Path is a linkage to the ACPI name space.\n*/\n\n/*\n   ACPI\n   This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.\n*/\nclass Acpi\n{\npublic:\n    static constexpr auto TYPE = \"ACPI\";\n    static constexpr auto SUBTYPE = \"ACPI\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    uint32_t hid = {};\n    uint32_t uid = {};\n\npublic:\n    Acpi() = default;\n    Acpi(const EFIBoot::File_path::ACPI::Acpi &acpi);\n    EFIBoot::File_path::ACPI::Acpi toEFIBootFilePath() const;\n\n    static std::optional<Acpi> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   Expanded\n   This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.\n*/\nclass Expanded\n{\npublic:\n    static constexpr auto TYPE = \"ACPI\";\n    static constexpr auto SUBTYPE = \"EXPANDED\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    uint32_t hid = {};\n    uint32_t uid = {};\n    uint32_t cid = {};\n    QString hidstr = {};\n    QString uidstr = {};\n    QString cidstr = {};\n\npublic:\n    Expanded() = default;\n    Expanded(const EFIBoot::File_path::ACPI::Expanded &expanded);\n    EFIBoot::File_path::ACPI::Expanded toEFIBootFilePath() const;\n\n    static std::optional<Expanded> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   ADR\n   The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.\n*/\nclass Adr\n{\npublic:\n    static constexpr auto TYPE = \"ACPI\";\n    static constexpr auto SUBTYPE = \"ADR\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    uint32_t adr = {};\n    QByteArray additional_adr = {};\n\npublic:\n    Adr() = default;\n    Adr(const EFIBoot::File_path::ACPI::Adr &adr);\n    EFIBoot::File_path::ACPI::Adr toEFIBootFilePath() const;\n\n    static std::optional<Adr> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   NVDIMM\n   This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.\n*/\nclass Nvdimm\n{\npublic:\n    static constexpr auto TYPE = \"ACPI\";\n    static constexpr auto SUBTYPE = \"NVDIMM\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    uint32_t nfit_device_handle = {};\n\npublic:\n    Nvdimm() = default;\n    Nvdimm(const EFIBoot::File_path::ACPI::Nvdimm &nvdimm);\n    EFIBoot::File_path::ACPI::Nvdimm toEFIBootFilePath() const;\n\n    static std::optional<Nvdimm> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   Messaging\n   This Device Path is used to describe the connection of devices outside the resource domain of the system. This Device Path can describe physical messaging information such as a SCSI ID, or abstract information such as networking protocol IP addresses.\n*/\n\n/*\n   ATAPI\n   ATAPI Settings.\n*/\nclass Atapi\n{\npublic:\n    static constexpr auto TYPE = \"MSG\";\n    static constexpr auto SUBTYPE = \"ATAPI\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    bool primary = {};\n    bool slave = {};\n    uint16_t lun = {};\n\npublic:\n    Atapi() = default;\n    Atapi(const EFIBoot::File_path::MSG::Atapi &atapi);\n    EFIBoot::File_path::MSG::Atapi toEFIBootFilePath() const;\n\n    static std::optional<Atapi> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   SCSI\n   SCSI Settings.\n*/\nclass Scsi\n{\npublic:\n    static constexpr auto TYPE = \"MSG\";\n    static constexpr auto SUBTYPE = \"SCSI\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    uint16_t pun = {};\n    uint16_t lun = {};\n\npublic:\n    Scsi() = default;\n    Scsi(const EFIBoot::File_path::MSG::Scsi &scsi);\n    EFIBoot::File_path::MSG::Scsi toEFIBootFilePath() const;\n\n    static std::optional<Scsi> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   Fibre Channel\n   Fibre Channel Settings\n*/\nclass FibreChannel\n{\npublic:\n    static constexpr auto TYPE = \"MSG\";\n    static constexpr auto SUBTYPE = \"FIBRE_CHANNEL\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    uint32_t reserved = {};\n    uint64_t world_wide_name = {};\n    uint64_t lun = {};\n\npublic:\n    FibreChannel() = default;\n    FibreChannel(const EFIBoot::File_path::MSG::Fibre_channel &fibre_channel);\n    EFIBoot::File_path::MSG::Fibre_channel toEFIBootFilePath() const;\n\n    static std::optional<FibreChannel> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   Firewire\n   Firewire Settings.\n*/\nclass Firewire\n{\npublic:\n    static constexpr auto TYPE = \"MSG\";\n    static constexpr auto SUBTYPE = \"FIREWIRE\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    uint32_t reserved = {};\n    uint64_t guid = {};\n\npublic:\n    Firewire() = default;\n    Firewire(const EFIBoot::File_path::MSG::Firewire &firewire);\n    EFIBoot::File_path::MSG::Firewire toEFIBootFilePath() const;\n\n    static std::optional<Firewire> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   USB\n   USB settings.\n*/\nclass Usb\n{\npublic:\n    static constexpr auto TYPE = \"MSG\";\n    static constexpr auto SUBTYPE = \"USB\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    uint8_t parent_port_number = {};\n    uint8_t interface_number = {};\n\npublic:\n    Usb() = default;\n    Usb(const EFIBoot::File_path::MSG::Usb &usb);\n    EFIBoot::File_path::MSG::Usb toEFIBootFilePath() const;\n\n    static std::optional<Usb> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   I2O\n   I2O Settings\n*/\nclass I2o\n{\npublic:\n    static constexpr auto TYPE = \"MSG\";\n    static constexpr auto SUBTYPE = \"I2O\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    uint32_t tid = {};\n\npublic:\n    I2o() = default;\n    I2o(const EFIBoot::File_path::MSG::I2o &i2o);\n    EFIBoot::File_path::MSG::I2o toEFIBootFilePath() const;\n\n    static std::optional<I2o> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   InfiniBand\n   InfiniBand Settings.\n*/\nclass Infiniband\n{\npublic:\n    static constexpr auto TYPE = \"MSG\";\n    static constexpr auto SUBTYPE = \"INFINIBAND\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    uint32_t resource_flags = {};\n    QUuid port_gid = {};\n    uint64_t ioc_guid_service_id = {};\n    uint64_t target_port_id = {};\n    uint64_t device_id = {};\n\npublic:\n    Infiniband() = default;\n    Infiniband(const EFIBoot::File_path::MSG::Infiniband &infiniband);\n    EFIBoot::File_path::MSG::Infiniband toEFIBootFilePath() const;\n\n    static std::optional<Infiniband> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   MAC Address\n   MAC settings.\n*/\nclass MacAddress\n{\npublic:\n    static constexpr auto TYPE = \"MSG\";\n    static constexpr auto SUBTYPE = \"MAC_ADDRESS\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    QString address = {};\n    uint8_t if_type = {};\n\npublic:\n    MacAddress() = default;\n    MacAddress(const EFIBoot::File_path::MSG::Mac_address &mac_address);\n    EFIBoot::File_path::MSG::Mac_address toEFIBootFilePath() const;\n\n    static std::optional<MacAddress> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   IPv4\n   IPv4 settings.\n*/\nclass Ipv4\n{\npublic:\n    static constexpr auto TYPE = \"MSG\";\n    static constexpr auto SUBTYPE = \"IPV4\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    QHostAddress local_ip_address = {};\n    QHostAddress remote_ip_address = {};\n    uint16_t local_port = {};\n    uint16_t remote_port = {};\n    uint16_t protocol = {};\n    bool static_ip_address = {};\n    QHostAddress gateway_ip_address = {};\n    QHostAddress subnet_mask = {};\n\npublic:\n    Ipv4() = default;\n    Ipv4(const EFIBoot::File_path::MSG::Ipv4 &ipv4);\n    EFIBoot::File_path::MSG::Ipv4 toEFIBootFilePath() const;\n\n    static std::optional<Ipv4> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   IPv6\n   IPv6 settings.\n*/\nclass Ipv6\n{\npublic:\n    static constexpr auto TYPE = \"MSG\";\n    static constexpr auto SUBTYPE = \"IPV6\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    QHostAddress local_ip_address = {};\n    QHostAddress remote_ip_address = {};\n    uint16_t local_port = {};\n    uint16_t remote_port = {};\n    uint16_t protocol = {};\n    EFIBoot::File_path::MSG::Ipv6::IP_ADDRESS_ORIGIN ip_address_origin = {};\n    uint8_t prefix_length = {};\n    QHostAddress gateway_ip_address = {};\n\npublic:\n    Ipv6() = default;\n    Ipv6(const EFIBoot::File_path::MSG::Ipv6 &ipv6);\n    EFIBoot::File_path::MSG::Ipv6 toEFIBootFilePath() const;\n\n    static std::optional<Ipv6> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   UART\n   UART Settings.\n*/\nclass Uart\n{\npublic:\n    static constexpr auto TYPE = \"MSG\";\n    static constexpr auto SUBTYPE = \"UART\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    uint32_t reserved = {};\n    uint64_t baud_rate = {};\n    uint8_t data_bits = {};\n    EFIBoot::File_path::MSG::Uart::PARITY parity = {};\n    EFIBoot::File_path::MSG::Uart::STOP_BITS stop_bits = {};\n\npublic:\n    Uart() = default;\n    Uart(const EFIBoot::File_path::MSG::Uart &uart);\n    EFIBoot::File_path::MSG::Uart toEFIBootFilePath() const;\n\n    static std::optional<Uart> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   USB Class\n   USB Class Settings.\n*/\nclass UsbClass\n{\npublic:\n    static constexpr auto TYPE = \"MSG\";\n    static constexpr auto SUBTYPE = \"USB_CLASS\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    uint16_t vendor_id = {};\n    uint16_t product_id = {};\n    uint8_t device_class = {};\n    uint8_t device_subclass = {};\n    uint8_t device_protocol = {};\n\npublic:\n    UsbClass() = default;\n    UsbClass(const EFIBoot::File_path::MSG::Usb_class &usb_class);\n    EFIBoot::File_path::MSG::Usb_class toEFIBootFilePath() const;\n\n    static std::optional<UsbClass> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   USB WWID\n   This device path describes a USB device using its serial number.\n*/\nclass UsbWwid\n{\npublic:\n    static constexpr auto TYPE = \"MSG\";\n    static constexpr auto SUBTYPE = \"USB_WWID\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    uint16_t interface_number = {};\n    uint16_t device_vendor_id = {};\n    uint16_t device_product_id = {};\n    QString serial_number = {};\n\npublic:\n    UsbWwid() = default;\n    UsbWwid(const EFIBoot::File_path::MSG::Usb_wwid &usb_wwid);\n    EFIBoot::File_path::MSG::Usb_wwid toEFIBootFilePath() const;\n\n    static std::optional<UsbWwid> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   Device Logical Unit\n   Device Logical Unit Settings.\n*/\nclass DeviceLogicalUnit\n{\npublic:\n    static constexpr auto TYPE = \"MSG\";\n    static constexpr auto SUBTYPE = \"DEVICE_LOGICAL_UNIT\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    uint8_t lun = {};\n\npublic:\n    DeviceLogicalUnit() = default;\n    DeviceLogicalUnit(const EFIBoot::File_path::MSG::Device_logical_unit &device_logical_unit);\n    EFIBoot::File_path::MSG::Device_logical_unit toEFIBootFilePath() const;\n\n    static std::optional<DeviceLogicalUnit> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   SATA\n   SATA settings.\n*/\nclass Sata\n{\npublic:\n    static constexpr auto TYPE = \"MSG\";\n    static constexpr auto SUBTYPE = \"SATA\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    uint16_t hba_port_number = {};\n    uint16_t port_multiplier_port_number = {};\n    uint16_t lun = {};\n\npublic:\n    Sata() = default;\n    Sata(const EFIBoot::File_path::MSG::Sata &sata);\n    EFIBoot::File_path::MSG::Sata toEFIBootFilePath() const;\n\n    static std::optional<Sata> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   iSCSI\n   iSCSI Settings.\n*/\nclass Iscsi\n{\npublic:\n    static constexpr auto TYPE = \"MSG\";\n    static constexpr auto SUBTYPE = \"ISCSI\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    uint16_t protocol = {};\n    uint16_t options = {};\n    uint64_t lun = {};\n    uint16_t target_portal_group = {};\n    QString target_name = {};\n\npublic:\n    Iscsi() = default;\n    Iscsi(const EFIBoot::File_path::MSG::Iscsi &iscsi);\n    EFIBoot::File_path::MSG::Iscsi toEFIBootFilePath() const;\n\n    static std::optional<Iscsi> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   VLAN\n   VLAN Settings.\n*/\nclass Vlan\n{\npublic:\n    static constexpr auto TYPE = \"MSG\";\n    static constexpr auto SUBTYPE = \"VLAN\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    uint16_t vlan_id = {};\n\npublic:\n    Vlan() = default;\n    Vlan(const EFIBoot::File_path::MSG::Vlan &vlan);\n    EFIBoot::File_path::MSG::Vlan toEFIBootFilePath() const;\n\n    static std::optional<Vlan> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   Fibre Channel Ex\n   The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.\n*/\nclass FibreChannelEx\n{\npublic:\n    static constexpr auto TYPE = \"MSG\";\n    static constexpr auto SUBTYPE = \"FIBRE_CHANNEL_EX\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    uint32_t reserved = {};\n    uint64_t world_wide_name = {};\n    uint64_t lun = {};\n\npublic:\n    FibreChannelEx() = default;\n    FibreChannelEx(const EFIBoot::File_path::MSG::Fibre_channel_ex &fibre_channel_ex);\n    EFIBoot::File_path::MSG::Fibre_channel_ex toEFIBootFilePath() const;\n\n    static std::optional<FibreChannelEx> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   SAS Extended Messaging\n   The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.\n*/\nclass SasExtendedMessaging\n{\npublic:\n    static constexpr auto TYPE = \"MSG\";\n    static constexpr auto SUBTYPE = \"SAS_EXTENDED_MESSAGING\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    uint64_t sas_address = {};\n    uint64_t lun = {};\n    uint16_t device_and_topology_info = {};\n    uint16_t relative_target_port = {};\n\npublic:\n    SasExtendedMessaging() = default;\n    SasExtendedMessaging(const EFIBoot::File_path::MSG::Sas_extended_messaging &sas_extended_messaging);\n    EFIBoot::File_path::MSG::Sas_extended_messaging toEFIBootFilePath() const;\n\n    static std::optional<SasExtendedMessaging> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   NVM Express NS\n   NVM Express Namespace Settings.\n*/\nclass NvmExpressNs\n{\npublic:\n    static constexpr auto TYPE = \"MSG\";\n    static constexpr auto SUBTYPE = \"NVM_EXPRESS_NS\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    uint32_t namespace_identifier = {};\n    uint64_t ieee_extended_unique_identifier = {};\n\npublic:\n    NvmExpressNs() = default;\n    NvmExpressNs(const EFIBoot::File_path::MSG::Nvm_express_ns &nvm_express_ns);\n    EFIBoot::File_path::MSG::Nvm_express_ns toEFIBootFilePath() const;\n\n    static std::optional<NvmExpressNs> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   URI\n   Refer to RFC 3986 for details on the URI contents.\n*/\nclass Uri\n{\npublic:\n    static constexpr auto TYPE = \"MSG\";\n    static constexpr auto SUBTYPE = \"URI\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    QUrl uri = {};\n\npublic:\n    Uri() = default;\n    Uri(const EFIBoot::File_path::MSG::Uri &uri);\n    EFIBoot::File_path::MSG::Uri toEFIBootFilePath() const;\n\n    static std::optional<Uri> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   UFS\n   UFS Settings.\n*/\nclass Ufs\n{\npublic:\n    static constexpr auto TYPE = \"MSG\";\n    static constexpr auto SUBTYPE = \"UFS\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    uint8_t pun = {};\n    uint8_t lun = {};\n\npublic:\n    Ufs() = default;\n    Ufs(const EFIBoot::File_path::MSG::Ufs &ufs);\n    EFIBoot::File_path::MSG::Ufs toEFIBootFilePath() const;\n\n    static std::optional<Ufs> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   SD\n   SD Settings.\n*/\nclass Sd\n{\npublic:\n    static constexpr auto TYPE = \"MSG\";\n    static constexpr auto SUBTYPE = \"SD\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    uint8_t slot_number = {};\n\npublic:\n    Sd() = default;\n    Sd(const EFIBoot::File_path::MSG::Sd &sd);\n    EFIBoot::File_path::MSG::Sd toEFIBootFilePath() const;\n\n    static std::optional<Sd> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   Bluetooth\n   EFI Bluetooth Settings.\n*/\nclass Bluetooth\n{\npublic:\n    static constexpr auto TYPE = \"MSG\";\n    static constexpr auto SUBTYPE = \"BLUETOOTH\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    QString device_address = {};\n\npublic:\n    Bluetooth() = default;\n    Bluetooth(const EFIBoot::File_path::MSG::Bluetooth &bluetooth);\n    EFIBoot::File_path::MSG::Bluetooth toEFIBootFilePath() const;\n\n    static std::optional<Bluetooth> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   Wi-Fi\n   Wi-Fi Settings.\n*/\nclass WiFi\n{\npublic:\n    static constexpr auto TYPE = \"MSG\";\n    static constexpr auto SUBTYPE = \"WI_FI\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    QString ssid = {};\n\npublic:\n    WiFi() = default;\n    WiFi(const EFIBoot::File_path::MSG::Wi_fi &wi_fi);\n    EFIBoot::File_path::MSG::Wi_fi toEFIBootFilePath() const;\n\n    static std::optional<WiFi> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   eMMC\n   Embedded Multi-Media Card Settings.\n*/\nclass Emmc\n{\npublic:\n    static constexpr auto TYPE = \"MSG\";\n    static constexpr auto SUBTYPE = \"EMMC\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    uint8_t slot_number = {};\n\npublic:\n    Emmc() = default;\n    Emmc(const EFIBoot::File_path::MSG::Emmc &emmc);\n    EFIBoot::File_path::MSG::Emmc toEFIBootFilePath() const;\n\n    static std::optional<Emmc> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   BluetoothLE\n   EFI BluetoothLE Settings.\n*/\nclass Bluetoothle\n{\npublic:\n    static constexpr auto TYPE = \"MSG\";\n    static constexpr auto SUBTYPE = \"BLUETOOTHLE\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    QString device_address = {};\n    EFIBoot::File_path::MSG::Bluetoothle::ADDRESS_TYPE address_type = {};\n\npublic:\n    Bluetoothle() = default;\n    Bluetoothle(const EFIBoot::File_path::MSG::Bluetoothle &bluetoothle);\n    EFIBoot::File_path::MSG::Bluetoothle toEFIBootFilePath() const;\n\n    static std::optional<Bluetoothle> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   DNS\n   DNS Settings.\n*/\nclass Dns\n{\npublic:\n    static constexpr auto TYPE = \"MSG\";\n    static constexpr auto SUBTYPE = \"DNS\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    bool ipv6 = {};\n    QByteArray data = {};\n\npublic:\n    Dns() = default;\n    Dns(const EFIBoot::File_path::MSG::Dns &dns);\n    EFIBoot::File_path::MSG::Dns toEFIBootFilePath() const;\n\n    static std::optional<Dns> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   NVDIMM NS\n   This device path describes a bootable NVDIMM namespace that is defined by a namespace label.\n*/\nclass NvdimmNs\n{\npublic:\n    static constexpr auto TYPE = \"MSG\";\n    static constexpr auto SUBTYPE = \"NVDIMM_NS\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    QUuid uuid = {};\n\npublic:\n    NvdimmNs() = default;\n    NvdimmNs(const EFIBoot::File_path::MSG::Nvdimm_ns &nvdimm_ns);\n    EFIBoot::File_path::MSG::Nvdimm_ns toEFIBootFilePath() const;\n\n    static std::optional<NvdimmNs> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   REST Service\n   REST Service Settings.\n*/\nclass RestService\n{\npublic:\n    static constexpr auto TYPE = \"MSG\";\n    static constexpr auto SUBTYPE = \"REST_SERVICE\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    EFIBoot::File_path::MSG::Rest_service::REST_SERVICE rest_service = {};\n    EFIBoot::File_path::MSG::Rest_service::ACCESS_MODE access_mode = {};\n    QUuid guid = {};\n    QByteArray data = {};\n\npublic:\n    RestService() = default;\n    RestService(const EFIBoot::File_path::MSG::Rest_service &rest_service);\n    EFIBoot::File_path::MSG::Rest_service toEFIBootFilePath() const;\n\n    static std::optional<RestService> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   NVMe-oF NS\n   This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.\n*/\nclass NvmeOfNs\n{\npublic:\n    static constexpr auto TYPE = \"MSG\";\n    static constexpr auto SUBTYPE = \"NVME_OF_NS\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    uint8_t nidt = {};\n    QUuid nid = {};\n    QString subsystem_nqn = {};\n\npublic:\n    NvmeOfNs() = default;\n    NvmeOfNs(const EFIBoot::File_path::MSG::Nvme_of_ns &nvme_of_ns);\n    EFIBoot::File_path::MSG::Nvme_of_ns toEFIBootFilePath() const;\n\n    static std::optional<NvmeOfNs> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   Media\n   This Device Path is used to describe the portion of a medium that is being abstracted by a boot service. For example, a Media Device Path could define which partition on a hard drive was being used.\n*/\n\n/*\n   Hard Drive\n   The Hard Drive Media Device Path is used to represent a partition on a hard drive.\n*/\nclass Hd\n{\npublic:\n    static constexpr auto TYPE = \"MEDIA\";\n    static constexpr auto SUBTYPE = \"HD\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    uint32_t partition_number = {};\n    uint64_t partition_start = {};\n    uint64_t partition_size = {};\n    QUuid partition_signature = {};\n    EFIBoot::File_path::MEDIA::Hd::PARTITION_FORMAT partition_format = {};\n    EFIBoot::File_path::MEDIA::Hd::SIGNATURE_TYPE signature_type = {};\n\npublic:\n    Hd() = default;\n    Hd(const EFIBoot::File_path::MEDIA::Hd &hd);\n    EFIBoot::File_path::MEDIA::Hd toEFIBootFilePath() const;\n\n    static std::optional<Hd> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   CD-ROM\n   The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.\n*/\nclass CdRom\n{\npublic:\n    static constexpr auto TYPE = \"MEDIA\";\n    static constexpr auto SUBTYPE = \"CD_ROM\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    uint32_t boot_entry = {};\n    uint64_t partition_start = {};\n    uint64_t partition_size = {};\n\npublic:\n    CdRom() = default;\n    CdRom(const EFIBoot::File_path::MEDIA::Cd_rom &cd_rom);\n    EFIBoot::File_path::MEDIA::Cd_rom toEFIBootFilePath() const;\n\n    static std::optional<CdRom> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   File Path\n   File Path settings.\n*/\nclass FilePath\n{\npublic:\n    static constexpr auto TYPE = \"MEDIA\";\n    static constexpr auto SUBTYPE = \"FILE_PATH\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    QString path_name = {};\n\npublic:\n    FilePath() = default;\n    FilePath(const EFIBoot::File_path::MEDIA::File_path &file_path);\n    EFIBoot::File_path::MEDIA::File_path toEFIBootFilePath() const;\n\n    static std::optional<FilePath> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   Protocol\n   The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.\n*/\nclass Protocol\n{\npublic:\n    static constexpr auto TYPE = \"MEDIA\";\n    static constexpr auto SUBTYPE = \"PROTOCOL\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    QUuid guid = {};\n\npublic:\n    Protocol() = default;\n    Protocol(const EFIBoot::File_path::MEDIA::Protocol &protocol);\n    EFIBoot::File_path::MEDIA::Protocol toEFIBootFilePath() const;\n\n    static std::optional<Protocol> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   Firmware File\n   Describes a firmware file in a firmware volume.\n*/\nclass FirmwareFile\n{\npublic:\n    static constexpr auto TYPE = \"MEDIA\";\n    static constexpr auto SUBTYPE = \"FIRMWARE_FILE\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    QUuid name = {};\n\npublic:\n    FirmwareFile() = default;\n    FirmwareFile(const EFIBoot::File_path::MEDIA::Firmware_file &firmware_file);\n    EFIBoot::File_path::MEDIA::Firmware_file toEFIBootFilePath() const;\n\n    static std::optional<FirmwareFile> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   Firmware Volume\n   Describes a firmware volume.\n*/\nclass FirmwareVolume\n{\npublic:\n    static constexpr auto TYPE = \"MEDIA\";\n    static constexpr auto SUBTYPE = \"FIRMWARE_VOLUME\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    QUuid name = {};\n\npublic:\n    FirmwareVolume() = default;\n    FirmwareVolume(const EFIBoot::File_path::MEDIA::Firmware_volume &firmware_volume);\n    EFIBoot::File_path::MEDIA::Firmware_volume toEFIBootFilePath() const;\n\n    static std::optional<FirmwareVolume> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   Relative Offset Range\n   This device path node specifies a range of offsets relative to the first byte available on the device.\n*/\nclass RelativeOffsetRange\n{\npublic:\n    static constexpr auto TYPE = \"MEDIA\";\n    static constexpr auto SUBTYPE = \"RELATIVE_OFFSET_RANGE\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    uint32_t reserved = {};\n    uint64_t starting_offset = {};\n    uint64_t ending_offset = {};\n\npublic:\n    RelativeOffsetRange() = default;\n    RelativeOffsetRange(const EFIBoot::File_path::MEDIA::Relative_offset_range &relative_offset_range);\n    EFIBoot::File_path::MEDIA::Relative_offset_range toEFIBootFilePath() const;\n\n    static std::optional<RelativeOffsetRange> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   RAM Disk\n   RAM Disk Settings.\n*/\nclass RamDisk\n{\npublic:\n    static constexpr auto TYPE = \"MEDIA\";\n    static constexpr auto SUBTYPE = \"RAM_DISK\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    uint64_t starting_address = {};\n    uint64_t ending_address = {};\n    QUuid guid = {};\n    uint16_t disk_instance = {};\n\npublic:\n    RamDisk() = default;\n    RamDisk(const EFIBoot::File_path::MEDIA::Ram_disk &ram_disk);\n    EFIBoot::File_path::MEDIA::Ram_disk toEFIBootFilePath() const;\n\n    static std::optional<RamDisk> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   BIOS\n   This Device Path is used to point to boot legacy operating systems. it is based on the BIOS Boot Specification Version 1.01.\n*/\n\n/*\n   BIOS Boot Specification\n   This Device Path is used to describe the booting of non-EFI-aware operating systems.\n*/\nclass BootSpecification\n{\npublic:\n    static constexpr auto TYPE = \"BIOS\";\n    static constexpr auto SUBTYPE = \"BOOT_SPECIFICATION\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    uint16_t device_type = {};\n    uint16_t status_flag = {};\n    QString description = {};\n\npublic:\n    BootSpecification() = default;\n    BootSpecification(const EFIBoot::File_path::BIOS::Boot_specification &boot_specification);\n    EFIBoot::File_path::BIOS::Boot_specification toEFIBootFilePath() const;\n\n    static std::optional<BootSpecification> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n/*\n   End\n   Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.\n*/\n\nclass Vendor\n{\npublic:\n    static constexpr auto TYPE = \"MULTI\";\n    static constexpr auto SUBTYPE = \"VENDOR\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    QByteArray data = {};\n    QUuid guid = {};\n    uint8_t _type = {};\n\npublic:\n    Vendor() = default;\n    Vendor(const EFIBoot::File_path::HW::Vendor &vendor);\n    Vendor(const EFIBoot::File_path::MSG::Vendor &vendor);\n    Vendor(const EFIBoot::File_path::MEDIA::Vendor &vendor);\n    EFIBoot::File_path::ANY toEFIBootFilePath() const;\n\n    static std::optional<Vendor> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\nclass End\n{\npublic:\n    static constexpr auto TYPE = \"END\";\n    static constexpr auto SUBTYPE = \"MULTI\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    uint8_t _subtype = {};\n\npublic:\n    End() = default;\n    End(const EFIBoot::File_path::END::Instance &)\n        : _subtype{EFIBoot::File_path::END::Instance::SUBTYPE}\n    {\n    }\n    End(const EFIBoot::File_path::END::Entire &)\n        : _subtype{EFIBoot::File_path::END::Entire::SUBTYPE}\n    {\n    }\n    EFIBoot::File_path::ANY toEFIBootFilePath() const\n    {\n        switch(_subtype)\n        {\n        case EFIBoot::File_path::END::Instance::SUBTYPE:\n            return EFIBoot::File_path::END::Instance{};\n\n        case EFIBoot::File_path::END::Entire::SUBTYPE:\n            return EFIBoot::File_path::END::Entire{};\n\n        default:\n            return {};\n        }\n    }\n\n    static std::optional<End> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\nclass Unknown\n{\npublic:\n    static constexpr auto TYPE = \"UNK\";\n    static constexpr auto SUBTYPE = \"UNKNOWN\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    QByteArray data = {};\n    uint8_t _type = {};\n    uint8_t _subtype = {};\n\npublic:\n    Unknown() = default;\n    Unknown(const EFIBoot::File_path::Unknown &unknown);\n    EFIBoot::File_path::Unknown toEFIBootFilePath() const;\n\n    static std::optional<Unknown> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\nusing ANY = std::variant<\n    Pci,\n    Pccard,\n    MemoryMapped,\n    Controller,\n    Bmc,\n    Acpi,\n    Expanded,\n    Adr,\n    Nvdimm,\n    Atapi,\n    Scsi,\n    FibreChannel,\n    Firewire,\n    Usb,\n    I2o,\n    Infiniband,\n    MacAddress,\n    Ipv4,\n    Ipv6,\n    Uart,\n    UsbClass,\n    UsbWwid,\n    DeviceLogicalUnit,\n    Sata,\n    Iscsi,\n    Vlan,\n    FibreChannelEx,\n    SasExtendedMessaging,\n    NvmExpressNs,\n    Uri,\n    Ufs,\n    Sd,\n    Bluetooth,\n    WiFi,\n    Emmc,\n    Bluetoothle,\n    Dns,\n    NvdimmNs,\n    RestService,\n    NvmeOfNs,\n    Hd,\n    CdRom,\n    FilePath,\n    Protocol,\n    FirmwareFile,\n    FirmwareVolume,\n    RelativeOffsetRange,\n    RamDisk,\n    BootSpecification,\n    Vendor,\n    End,\n    Unknown>;\n\ninline std::unordered_map<QString, std::function<std::optional<ANY>(const QJsonObject &)>> JSON_readers()\n{\n#define reader(Type)                                                                  \\\n    {                                                                                 \\\n        QString(\"%1/%2\").arg(Type::TYPE).arg(Type::SUBTYPE),                          \\\n            [](const auto &obj) -> std::optional<ANY> { return Type::fromJSON(obj); } \\\n    }\n    return {\n        reader(Pci),\n        reader(Pccard),\n        reader(MemoryMapped),\n        reader(Controller),\n        reader(Bmc),\n        reader(Acpi),\n        // Old ACPI subtype:\n        {\"ACPI/HID\", [](const auto &obj) -> std::optional<ANY>\n            { return Acpi::fromJSON(obj); }},\n        reader(Expanded),\n        reader(Adr),\n        reader(Nvdimm),\n        reader(Atapi),\n        reader(Scsi),\n        reader(FibreChannel),\n        reader(Firewire),\n        reader(Usb),\n        reader(I2o),\n        reader(Infiniband),\n        reader(MacAddress),\n        reader(Ipv4),\n        reader(Ipv6),\n        reader(Uart),\n        reader(UsbClass),\n        reader(UsbWwid),\n        reader(DeviceLogicalUnit),\n        reader(Sata),\n        reader(Iscsi),\n        reader(Vlan),\n        reader(FibreChannelEx),\n        reader(SasExtendedMessaging),\n        reader(NvmExpressNs),\n        reader(Uri),\n        reader(Ufs),\n        reader(Sd),\n        reader(Bluetooth),\n        reader(WiFi),\n        reader(Emmc),\n        reader(Bluetoothle),\n        reader(Dns),\n        reader(NvdimmNs),\n        reader(RestService),\n        reader(NvmeOfNs),\n        reader(Hd),\n        reader(CdRom),\n        reader(FilePath),\n        // Old FilePath subtype:\n        {\"MEDIA/FILE\", [](const auto &obj) -> std::optional<ANY>\n            { return FilePath::fromJSON(obj); }},\n        reader(Protocol),\n        reader(FirmwareFile),\n        reader(FirmwareVolume),\n        reader(RelativeOffsetRange),\n        reader(RamDisk),\n        reader(BootSpecification),\n        // Old BootSpecification subtype:\n        {\"BIOS/BIOS_BOOT_SPECIFICATION\", [](const auto &obj) -> std::optional<ANY>\n            { return BootSpecification::fromJSON(obj); }},\n        reader(Vendor),\n        reader(End),\n        reader(Unknown),\n    };\n#undef reader\n}\n\n} // namespace FilePath\n\nQ_DECLARE_METATYPE(const FilePath::ANY *)\n\nclass BootEntry\n{\nprivate:\n    mutable QString device_path_str = {};\n\npublic:\n    enum class OptionalDataFormat : uint8_t\n    {\n        Base64 = 0,\n        Utf16 = 1,\n        Utf8 = 2,\n        Hex = 3,\n    };\n\n    QVector<FilePath::ANY> device_path = {};\n    QString description = \"New entry\";\n    QString error = {};\n    QString optional_data = {};\n    EFIBoot::Load_option_attribute attributes = EFIBoot::Load_option_attribute::EMPTY;\n    uint32_t efi_attributes = EFIBoot::EFI_VARIABLE_ATTRIBUTE_DEFAULTS;\n    uint32_t crc32 = 0;\n    uint16_t index = 0;\n    OptionalDataFormat optional_data_format = OptionalDataFormat::Base64;\n\n    bool is_current_boot = false;\n    bool is_next_boot = false;\n    bool is_error = false;\n\npublic:\n    static BootEntry fromEFIBootLoadOption(const EFIBoot::Load_option &load_option);\n    static BootEntry fromError(const QString &error);\n    EFIBoot::Load_option toEFIBootLoadOption() const;\n\n    static std::optional<BootEntry> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString formatDevicePath(bool refresh = true) const;\n    QString getTitle() const;\n\n    bool changeOptionalDataFormat(OptionalDataFormat format, bool test = false);\n\nprivate:\n    QByteArray getRawOptionalData() const;\n};\n\nQ_DECLARE_METATYPE(const BootEntry *)\n"
  },
  {
    "path": "include/bootentry.h.j2",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#pragma once\n\n#include <QHostAddress>\n#include <QMetaType>\n#include <QString>\n#include <QUrl>\n#include <QUuid>\n#include <QVariant>\n#include <QVector>\n\n#include \"efiboot.h\"\n\nnamespace FilePath\n{\n\n{% for category in device_paths.values() %}\n/*\n   {{ category.name }}\n   {{ category.description }}\n*/\n\n{% for node in category.nodes if node.slug not in (\"vendor\", \"entire\", \"instance\") %}\n{% set qslug = node.slug.split(\"_\")|map(\"capitalize\")|join %}\n/*\n   {{ node.name }}\n   {{ node.description }}\n*/\nclass {{ qslug }}\n{\npublic:\n    static constexpr auto TYPE = \"{{ category.slug.upper() }}\";\n    static constexpr auto SUBTYPE = \"{{ node.slug.upper() }}\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    {% for field in node.fields %}\n    {%- if field.type == \"guid\" %}\n    QUuid\n    {%- elif field.type in (\"ip4\", \"ip6\") %}\n    QHostAddress\n    {%- elif \"string\" in field.type or field.type == \"mac\" %}\n    QString\n    {%- elif field.type == \"uri\" %}\n    QUrl\n    {%- elif field.type == \"raw_data\" %}\n    QByteArray\n    {%- elif field.type in (\"int\", \"hex\") %}\n    uint{{ field.size * 8 }}_t\n    {%- elif field.type == \"enum\" %}\n    EFIBoot::File_path::{{ category.slug.upper() }}::{{ node.slug.capitalize() }}::{{ field.slug.upper() }}\n    {%- else %}\n    {{ field.type }}\n    {%- endif %} {{ field.slug }} = {};\n    {% endfor %}\n\npublic:\n    {{ qslug }}() = default;\n    {{ qslug }}(const EFIBoot::File_path::{{ category.slug.upper() }}::{{ node.slug.capitalize() }} &{{ node.slug }});\n    EFIBoot::File_path::{{ category.slug.upper() }}::{{ node.slug.capitalize() }} toEFIBootFilePath() const;\n\n    static std::optional<{{ qslug }}> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\n{% endfor %}{% endfor %}\nclass Vendor\n{\npublic:\n    static constexpr auto TYPE = \"MULTI\";\n    static constexpr auto SUBTYPE = \"VENDOR\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    QByteArray data = {};\n    QUuid guid = {};\n    uint8_t _type = {};\n\npublic:\n    Vendor() = default;\n    Vendor(const EFIBoot::File_path::HW::Vendor &vendor);\n    Vendor(const EFIBoot::File_path::MSG::Vendor &vendor);\n    Vendor(const EFIBoot::File_path::MEDIA::Vendor &vendor);\n    EFIBoot::File_path::ANY toEFIBootFilePath() const;\n\n    static std::optional<Vendor> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\nclass End\n{\npublic:\n    static constexpr auto TYPE = \"END\";\n    static constexpr auto SUBTYPE = \"MULTI\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    uint8_t _subtype = {};\n\npublic:\n    End() = default;\n    End(const EFIBoot::File_path::END::Instance &)\n        : _subtype{EFIBoot::File_path::END::Instance::SUBTYPE}\n    {\n    }\n    End(const EFIBoot::File_path::END::Entire &)\n        : _subtype{EFIBoot::File_path::END::Entire::SUBTYPE}\n    {\n    }\n    EFIBoot::File_path::ANY toEFIBootFilePath() const\n    {\n        switch(_subtype)\n        {\n        case EFIBoot::File_path::END::Instance::SUBTYPE:\n            return EFIBoot::File_path::END::Instance{};\n\n        case EFIBoot::File_path::END::Entire::SUBTYPE:\n            return EFIBoot::File_path::END::Entire{};\n\n        default:\n            return {};\n        }\n    }\n\n    static std::optional<End> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\nclass Unknown\n{\npublic:\n    static constexpr auto TYPE = \"UNK\";\n    static constexpr auto SUBTYPE = \"UNKNOWN\";\n\nprivate:\n    mutable QString _string = {};\n\npublic:\n    QByteArray data = {};\n    uint8_t _type = {};\n    uint8_t _subtype = {};\n\npublic:\n    Unknown() = default;\n    Unknown(const EFIBoot::File_path::Unknown &unknown);\n    EFIBoot::File_path::Unknown toEFIBootFilePath() const;\n\n    static std::optional<Unknown> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString toString(bool refresh = true) const;\n};\n\nusing ANY = std::variant<\n{% for category in device_paths.values() %}{% for node in category.nodes if node.slug not in (\"vendor\", \"entire\", \"instance\") %}\n    {{ node.slug.split(\"_\")|map(\"capitalize\")|join }},\n{% endfor %}{% endfor %}\n    Vendor,\n    End,\n    Unknown>;\n\ninline std::unordered_map<QString, std::function<std::optional<ANY>(const QJsonObject &)>> JSON_readers()\n{\n#define reader(Type)                                                                  \\\n    {                                                                                 \\\n        QString(\"%1/%2\").arg(Type::TYPE).arg(Type::SUBTYPE),                          \\\n            [](const auto &obj) -> std::optional<ANY> { return Type::fromJSON(obj); } \\\n    }\n    return {\n{% for category in device_paths.values() %}{% for node in category.nodes if node.slug not in (\"vendor\", \"entire\", \"instance\") %}\n        reader({{ node.slug.split(\"_\")|map(\"capitalize\")|join }}),\n{% endfor %}{% endfor %}\n        reader(Vendor),\n        reader(End),\n        reader(Unknown),\n    };\n#undef reader\n}\n\n} // namespace FilePath\n\nQ_DECLARE_METATYPE(const FilePath::ANY *)\n\nclass BootEntry\n{\nprivate:\n    mutable QString device_path_str = {};\n\npublic:\n    enum class OptionalDataFormat : uint8_t\n    {\n        Base64 = 0,\n        Utf16 = 1,\n        Utf8 = 2,\n        Hex = 3,\n    };\n\n    QVector<FilePath::ANY> device_path = {};\n    QString description = \"New entry\";\n    QString error = {};\n    QString optional_data = {};\n    EFIBoot::Load_option_attribute attributes = EFIBoot::Load_option_attribute::EMPTY;\n    uint32_t efi_attributes = EFIBoot::EFI_VARIABLE_ATTRIBUTE_DEFAULTS;\n    uint32_t crc32 = 0;\n    uint16_t index = 0;\n    OptionalDataFormat optional_data_format = OptionalDataFormat::Base64;\n\n    bool is_current_boot = false;\n    bool is_next_boot = false;\n    bool is_error = false;\n\npublic:\n    static BootEntry fromEFIBootLoadOption(const EFIBoot::Load_option &load_option);\n    static BootEntry fromError(const QString &error);\n    EFIBoot::Load_option toEFIBootLoadOption() const;\n\n    static std::optional<BootEntry> fromJSON(const QJsonObject &obj);\n    QJsonObject toJSON() const;\n\n    QString formatDevicePath(bool refresh = true) const;\n    QString getTitle() const;\n\n    bool changeOptionalDataFormat(OptionalDataFormat format, bool test = false);\n\nprivate:\n    QByteArray getRawOptionalData() const;\n};\n\nQ_DECLARE_METATYPE(const BootEntry *)\n\n"
  },
  {
    "path": "include/bootentrydelegate.h",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#pragma once\n\n#include \"bootentry.h\"\n#include \"bootentrylistmodel.h\"\n#include \"bootentrywidget.h\"\n#include \"qwidgetitemdelegate.h\"\n\nclass BootEntryDelegate: public QWidgetItemDelegate<BootEntryWidget, const BootEntry *>\n{\nprivate:\n    BootEntryListModel::Options options{};\n    mutable const QModelIndex *currentIndex{nullptr};\n\npublic:\n    BootEntryDelegate();\n    BootEntryDelegate(const BootEntryDelegate &) = delete;\n    BootEntryDelegate &operator=(const BootEntryDelegate &) = delete;\n\n    void setOptions(const BootEntryListModel::Options &options_);\n\nprotected:\n    void setupWidgetFromItem(Widget &widget, const Item &item, const QModelIndex &index, int role) const override;\n\nprivate Q_SLOTS:\n    void setNextBoot(bool checked) const;\n};\n"
  },
  {
    "path": "include/bootentryform.h",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#pragma once\n\n#include <QWidget>\n#include <memory>\n\n#include \"bootentry.h\"\n#include \"bootentrylistmodel.h\"\n#include \"devicepathproxymodel.h\"\n\nnamespace Ui\n{\nclass BootEntryForm;\n}\n\nclass BootEntryForm: public QWidget\n{\n    Q_OBJECT\n\nprivate:\n    std::unique_ptr<Ui::BootEntryForm> ui;\n    BootEntryListModel *entries_list_model{nullptr};\n    DevicePathProxyModel device_path_proxy_model{};\n    QModelIndex current_index{};\n    const BootEntry *current_item{nullptr};\n    bool changing_optional_data_format{false};\n\npublic:\n    explicit BootEntryForm(QWidget *parent = nullptr);\n    BootEntryForm(const BootEntryForm &) = delete;\n    BootEntryForm &operator=(const BootEntryForm &) = delete;\n    ~BootEntryForm() override;\n\n    void setReadOnly(bool readonly);\n    void showCategory(bool visible);\n    void showHotKeys(bool visible);\n\n    void setBootEntryListModel(BootEntryListModel &model);\n    void setItem(const QModelIndex &index, const BootEntry *item);\n\nQ_SIGNALS:\n    void showHotKeysDialog(int index);\n\nprivate Q_SLOTS:\n    void setIndex(const QString &text);\n    void setDescription(const QString &text);\n    void setOptionalDataFormat(int format);\n    void optionalDataEdited();\n    void setAttribute(int state);\n    void showHotKeysDialog();\n\nprivate:\n    EFIBoot::Load_option_attribute getAttributes() const;\n};\n"
  },
  {
    "path": "include/bootentrylistmodel.h",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#pragma once\n\n#include \"bootentry.h\"\n#include <QAbstractListModel>\n#include <QFlags>\n#include <QList>\n#include <QUndoStack>\n\nclass BootEntryListModel: public QAbstractListModel\n{\n    Q_OBJECT\n\n    friend class EFIBootData;\n    friend class InsertRemoveBootEntryCommand;\n    friend class InsertBootEntryCommand;\n    friend class RemoveBootEntryCommand;\n    friend class MoveBootEntryCommand;\n\n    template <class Type>\n    friend class SetBootEntryValueCommand;\n    friend class ChangeOptionalDataFormatCommand;\n    friend class SetBootEntryFilePathCommand;\n    friend class InsertRemoveBootEntryFilePathCommand;\n    friend class InsertBootEntryFilePathCommand;\n    friend class RemoveBootEntryFilePathCommand;\n    friend class MoveBootEntryFilePathCommand;\n\npublic:\n    enum class Option : uint8_t\n    {\n        ReadOnly = 0x1,\n        IsBoot = 0x2,\n    };\n    Q_DECLARE_FLAGS(Options, Option)\n\n    const QString name;\n\nprivate:\n    QVector<BootEntry> entries{};\n    QModelIndex next_boot{};\n    QUndoStack *undo_stack{nullptr};\n\npublic:\n    const Options options;\n\npublic:\n    explicit BootEntryListModel(const QString &name_, const Options &options_ = {}, QObject *parent = nullptr);\n    BootEntryListModel(const BootEntryListModel &) = delete;\n    BootEntryListModel &operator=(const BootEntryListModel &) = delete;\n\n    void setUndoStack(QUndoStack *undo_stack_);\n    QUndoStack *getUndoStack() const;\n\n    // Basic functionality:\n    int rowCount(const QModelIndex &parent = QModelIndex()) const override;\n\n    QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;\n    bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole) override;\n    void setNextBootEntry(const QModelIndex &index, bool value);\n\n    void setEntryFilePath(const QModelIndex &index, int row, const FilePath::ANY &file_path);\n    void insertEntryFilePath(const QModelIndex &index, int row, const FilePath::ANY &file_path);\n    void removeEntryFilePath(const QModelIndex &index, int row);\n    void moveEntryFilePath(const QModelIndex &index, int source_row, int destination_row);\n    void clearEntryDevicePath(const QModelIndex &index);\n    void setEntryIndex(const QModelIndex &index, uint16_t value);\n    void setEntryDescription(const QModelIndex &index, const QString &text);\n    bool changeEntryOptionalDataFormat(const QModelIndex &index, int format);\n    void setEntryOptionalData(const QModelIndex &index, const QString &text);\n    void setEntryAttributes(const QModelIndex &index, EFIBoot::Load_option_attribute value);\n    void setEntryNextBoot(const QModelIndex &index, bool value);\n\n    // Add data:\n    bool insertRows(int row, int count, const QModelIndex &parent = QModelIndex()) override;\n\n    // Remove data:\n    bool removeRows(int row, int count, const QModelIndex &parent = QModelIndex()) override;\n\n    // Move data\n    bool moveRows(const QModelIndex &sourceParent, int sourceRow, int count, const QModelIndex &destinationParent, int destinationChild) override;\n\n    void clear();\n\n    const QVector<BootEntry> &getEntries() const { return entries; }\n\nprivate:\n    bool appendRow(const BootEntry &data, const QModelIndex &parent = QModelIndex());\n};\n"
  },
  {
    "path": "include/bootentrylistview.h",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#pragma once\n\n#include <QListView>\n\n#include \"bootentrydelegate.h\"\n#include \"bootentrylistmodel.h\"\n\nclass BootEntryListView: public QListView\n{\n    Q_OBJECT\n\nprivate:\n    BootEntryDelegate delegate{};\n    BootEntryListModel::Options options{};\n\npublic:\n    explicit BootEntryListView(QWidget *parent = nullptr);\n    BootEntryListView(const BootEntryListView &) = delete;\n    BootEntryListView &operator=(const BootEntryListView &) = delete;\n\n    void setModel(QAbstractItemModel *model) override { QListView::setModel(model); }\n    void setModel(BootEntryListModel *model);\n\nprotected:\n    void selectionChanged(const QItemSelection &selection, const QItemSelection &) override;\n\nQ_SIGNALS:\n    void selected(const QModelIndex &index);\n\npublic Q_SLOTS:\n    void insertRow();\n    void duplicateRow();\n    void removeCurrentRow();\n    void moveCurrentRowUp();\n    void moveCurrentRowDown();\n\n    void rowsMoved(const QModelIndex &sourceParent, int sourceStart, int sourceEnd, const QModelIndex &destinationParent, int destinationRow);\n    void rowsChanged(const QModelIndex &parent, int first, int last);\n};\n"
  },
  {
    "path": "include/bootentrywidget.h",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#pragma once\n\n#include <QWidget>\n#include <memory>\n\nclass BootEntry;\nclass QButtonGroup;\n\nnamespace Ui\n{\nclass BootEntryWidget;\n}\n\nclass BootEntryWidget: public QWidget\n{\n    Q_OBJECT\n\nprivate:\n    std::unique_ptr<Ui::BootEntryWidget> ui;\n\npublic:\n    explicit BootEntryWidget(QWidget *parent = nullptr);\n    BootEntryWidget(const BootEntryWidget &) = delete;\n    BootEntryWidget &operator=(const BootEntryWidget &) = delete;\n    ~BootEntryWidget() override;\n\n    void setReadOnly(bool readonly);\n    void showBootOptions(bool is_boot);\n    void showDevicePath(bool not_error);\n\n    void setIndex(const uint32_t index);\n    void setDescription(const QString &description);\n    void setDevicePath(const QString &device_path);\n    void setData(const QString &data);\n    bool getNextBoot() const;\n    void setNextBoot(bool next_boot);\n    bool getCurrentBoot() const;\n    void setCurrentBoot(bool current_boot);\n\nQ_SIGNALS:\n    void nextBootClicked(bool checked);\n};\n"
  },
  {
    "path": "include/commands.h",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#pragma once\n\n#include \"efibootdata.h\"\n#include <QUndoCommand>\n\n// BootEntry\ntemplate <class Type, class SignalPtr>\nclass SetEFIBootDataValueCommand: public QUndoCommand\n{\n    using PropertyPtr = Type EFIBootData::*;\n\n    EFIBootData &data;\n    const QString name;\n    PropertyPtr property;\n    SignalPtr signal;\n    Type value;\n\npublic:\n    SetEFIBootDataValueCommand(EFIBootData &data_, const QString &name_, PropertyPtr property_, SignalPtr signal_, const Type &value_, QUndoCommand *parent = nullptr)\n        : QUndoCommand(QObject::tr(\"Change %1 to \\\"%2\\\"\").arg(name_).arg(value_), parent)\n        , data{data_}\n        , name{name_}\n        , property{property_}\n        , signal{signal_}\n        , value{value_}\n    {\n    }\n\n    SetEFIBootDataValueCommand(const SetEFIBootDataValueCommand &) = delete;\n    SetEFIBootDataValueCommand &operator=(const SetEFIBootDataValueCommand &) = delete;\n\n    int id() const override\n    {\n        return 1;\n    }\n\n    void undo() override\n    {\n        redo();\n    }\n\n    void redo() override\n    {\n        auto old_value = data.*property;\n        data.*property = value;\n        value = old_value;\n        emit(data.*signal)(data.*property);\n    }\n\n    bool mergeWith(const QUndoCommand *command) override\n    {\n        const auto cmd = static_cast<add_const_t<decltype(this)>>(command);\n        if(&cmd->data != &data)\n            return false;\n\n        if(cmd->property != property)\n            return false;\n\n        if(cmd->signal != signal)\n            return false;\n\n        if(value == data.*property)\n            setObsolete(true);\n\n        setText(QObject::tr(\"Change %1 to \\\"%2\\\"\").arg(name).arg(data.*property));\n        return true;\n    }\n};\n\ntemplate <class Type, class SignalPtr>\nSetEFIBootDataValueCommand(EFIBootData &data_, const QString &name_, typename SetEFIBootDataValueCommand<Type, SignalPtr>::PropertyPtr property_, SignalPtr signal_, const Type &value_, QUndoCommand *parent) -> SetEFIBootDataValueCommand<Type, SignalPtr>;\n\nclass InsertRemoveBootEntryCommand: public QUndoCommand\n{\nprivate:\n    BootEntryListModel &model;\n    QModelIndex index_parent;\n    BootEntry entry;\n    int index;\n\npublic:\n    InsertRemoveBootEntryCommand(BootEntryListModel &model_, const QString &description, const QModelIndex &index_parent_, int index_, const BootEntry &entry_, QUndoCommand *parent = nullptr);\n    InsertRemoveBootEntryCommand(const InsertRemoveBootEntryCommand &) = delete;\n    InsertRemoveBootEntryCommand &operator=(const InsertRemoveBootEntryCommand &) = delete;\n\nprotected:\n    int id() const override;\n    void insert();\n    void remove();\n};\n\nclass InsertBootEntryCommand: public InsertRemoveBootEntryCommand\n{\npublic:\n    InsertBootEntryCommand(BootEntryListModel &model_, const QModelIndex &index_parent_, int index_, const BootEntry &entry_, QUndoCommand *parent = nullptr);\n    InsertBootEntryCommand(const InsertBootEntryCommand &) = delete;\n    InsertBootEntryCommand &operator=(const InsertBootEntryCommand &) = delete;\n\n    void undo() override;\n    void redo() override;\n};\n\nclass RemoveBootEntryCommand: public InsertRemoveBootEntryCommand\n{\npublic:\n    RemoveBootEntryCommand(BootEntryListModel &model_, const QModelIndex &index_parent_, int index_, QUndoCommand *parent = nullptr);\n    RemoveBootEntryCommand(const RemoveBootEntryCommand &) = delete;\n    RemoveBootEntryCommand &operator=(const RemoveBootEntryCommand &) = delete;\n\n    void undo() override;\n    void redo() override;\n};\n\nclass MoveBootEntryCommand: public QUndoCommand\n{\n    BootEntryListModel &model;\n    const QString title;\n    QModelIndex source_parent;\n    QModelIndex destination_parent;\n    int source_index;\n    int destination_index;\n\npublic:\n    MoveBootEntryCommand(BootEntryListModel &model_, const QModelIndex &source_parent_, int source_index_, const QModelIndex &destination_parent_, int destination_index_, QUndoCommand *parent = nullptr);\n    MoveBootEntryCommand(const MoveBootEntryCommand &) = delete;\n    MoveBootEntryCommand &operator=(const MoveBootEntryCommand &) = delete;\n\n    int id() const override;\n    void undo() override;\n    void redo() override;\n    bool mergeWith(const QUndoCommand *command) override;\n};\n\ntemplate <class Type>\nclass SetBootEntryValueCommand: public QUndoCommand\n{\n    using PropertyPtr = Type BootEntry::*;\n\n    BootEntryListModel &model;\n    const QString title;\n    const QModelIndex index;\n    const QString name;\n    PropertyPtr property;\n    Type value;\n\npublic:\n    SetBootEntryValueCommand(BootEntryListModel &model_, const QModelIndex &index_, const QString &name_, PropertyPtr property_, const Type &value_, QUndoCommand *parent = nullptr)\n        : QUndoCommand{\"\", parent}\n        , model{model_}\n        , title{model_.entries.at(index_.row()).getTitle()}\n        , index{index_}\n        , name{name_}\n        , property{property_}\n        , value{value_}\n    {\n        setText(QObject::tr(\"Change %1 entry \\\"%2\\\" %3 to \\\"%4\\\"\").arg(model.name, title, name).arg(static_cast<underlying_type_t<Type>>(value)));\n    }\n\n    SetBootEntryValueCommand(const SetBootEntryValueCommand &) = delete;\n    SetBootEntryValueCommand &operator=(const SetBootEntryValueCommand &) = delete;\n\n    int id() const override\n    {\n        return 3;\n    }\n\n    void undo() override\n    {\n        redo();\n    }\n\n    void redo() override\n    {\n        auto &entry = model.entries[index.row()];\n        auto old_value = entry.*property;\n        entry.*property = value;\n        value = old_value;\n        emit model.dataChanged(index, index, {Qt::EditRole});\n    }\n\n    bool mergeWith(const QUndoCommand *command) override\n    {\n        auto cmd = static_cast<const SetBootEntryValueCommand<Type> *>(command);\n        if(&cmd->model != &model)\n            return false;\n\n        if(cmd->index != index)\n            return false;\n\n        if(cmd->property != property)\n            return false;\n\n        auto &entry = model.entries.at(index.row());\n        if(value == entry.*property)\n            setObsolete(true);\n\n        setText(QObject::tr(\"Change %1 entry \\\"%2\\\" %3 to \\\"%4\\\"\").arg(model.name, title, name).arg(static_cast<underlying_type_t<Type>>(entry.*property)));\n        return true;\n    }\n};\n\nclass ChangeOptionalDataFormatCommand: public QUndoCommand\n{\n    BootEntryListModel &model;\n    const QString title;\n    const QModelIndex index;\n    BootEntry::OptionalDataFormat value;\n\npublic:\n    ChangeOptionalDataFormatCommand(BootEntryListModel &model_, const QModelIndex &index_, const BootEntry::OptionalDataFormat &value_, QUndoCommand *parent = nullptr);\n    ChangeOptionalDataFormatCommand(const ChangeOptionalDataFormatCommand &) = delete;\n    ChangeOptionalDataFormatCommand &operator=(const ChangeOptionalDataFormatCommand &) = delete;\n\n    int id() const override;\n    void undo() override;\n    void redo() override;\n    bool mergeWith(const QUndoCommand *command) override;\n    void updateTitle(BootEntry::OptionalDataFormat val);\n};\n\nclass InsertRemoveBootEntryFilePathCommand: public QUndoCommand\n{\nprivate:\n    BootEntryListModel &model;\n    FilePath::ANY file_path;\n    const QModelIndex index;\n    int row;\n\npublic:\n    InsertRemoveBootEntryFilePathCommand(BootEntryListModel &model_, const QString &description, const QModelIndex &index_, int row_, const FilePath::ANY &file_path_, QUndoCommand *parent = nullptr);\n    InsertRemoveBootEntryFilePathCommand(const InsertRemoveBootEntryFilePathCommand &) = delete;\n    InsertRemoveBootEntryFilePathCommand &operator=(const InsertRemoveBootEntryFilePathCommand &) = delete;\n\nprotected:\n    int id() const override;\n    void insert();\n    void remove();\n};\n\nclass InsertBootEntryFilePathCommand: public InsertRemoveBootEntryFilePathCommand\n{\npublic:\n    InsertBootEntryFilePathCommand(BootEntryListModel &model_, const QModelIndex &index_, int row_, const FilePath::ANY &file_path_, QUndoCommand *parent = nullptr);\n    InsertBootEntryFilePathCommand(const InsertBootEntryFilePathCommand &) = delete;\n    InsertBootEntryFilePathCommand &operator=(const InsertBootEntryFilePathCommand &) = delete;\n\n    void undo() override;\n    void redo() override;\n};\n\nclass RemoveBootEntryFilePathCommand: public InsertRemoveBootEntryFilePathCommand\n{\npublic:\n    RemoveBootEntryFilePathCommand(BootEntryListModel &model_, const QModelIndex &index_, int row_, QUndoCommand *parent = nullptr);\n    RemoveBootEntryFilePathCommand(const RemoveBootEntryFilePathCommand &) = delete;\n    RemoveBootEntryFilePathCommand &operator=(const RemoveBootEntryFilePathCommand &) = delete;\n\n    void undo() override;\n    void redo() override;\n};\n\nclass SetBootEntryFilePathCommand: public QUndoCommand\n{\nprivate:\n    BootEntryListModel &model;\n    QModelIndex index;\n    FilePath::ANY value;\n    int row;\n\npublic:\n    SetBootEntryFilePathCommand(BootEntryListModel &model_, const QModelIndex &index_, int row_, const FilePath::ANY &value_, QUndoCommand *parent = nullptr);\n    SetBootEntryFilePathCommand(const SetBootEntryFilePathCommand &) = delete;\n    SetBootEntryFilePathCommand &operator=(const SetBootEntryFilePathCommand &) = delete;\n\n    int id() const override;\n    void undo() override;\n    void redo() override;\n};\n\nclass MoveBootEntryFilePathCommand: public QUndoCommand\n{\n    BootEntryListModel &model;\n    const QString title;\n    QModelIndex index;\n    int source_row;\n    int destination_row;\n\npublic:\n    MoveBootEntryFilePathCommand(BootEntryListModel &model_, const QModelIndex &index_, int source_row_, int destination_row_, QUndoCommand *parent = nullptr);\n    MoveBootEntryFilePathCommand(const MoveBootEntryFilePathCommand &) = delete;\n    MoveBootEntryFilePathCommand &operator=(const MoveBootEntryFilePathCommand &) = delete;\n\n    int id() const override;\n    void undo() override;\n    void redo() override;\n    bool mergeWith(const QUndoCommand *command) override;\n};\n\n// Hot Keys\nclass InsertRemoveHotKeyCommand: public QUndoCommand\n{\nprivate:\n    HotKeyListModel &model;\n    QModelIndex index_parent;\n    HotKey entry;\n    int index;\n\npublic:\n    InsertRemoveHotKeyCommand(HotKeyListModel &model_, const QString &description, const QModelIndex &index_parent_, int index_, const HotKey &entry_, QUndoCommand *parent = nullptr);\n    InsertRemoveHotKeyCommand(const InsertRemoveHotKeyCommand &) = delete;\n    InsertRemoveHotKeyCommand &operator=(const InsertRemoveHotKeyCommand &) = delete;\n\nprotected:\n    int id() const override;\n    void insert();\n    void remove();\n};\n\nclass InsertHotKeyCommand: public InsertRemoveHotKeyCommand\n{\npublic:\n    InsertHotKeyCommand(HotKeyListModel &model_, const QModelIndex &index_parent_, int index_, const HotKey &entry_, QUndoCommand *parent = nullptr);\n    InsertHotKeyCommand(const InsertHotKeyCommand &) = delete;\n    InsertHotKeyCommand &operator=(const InsertHotKeyCommand &) = delete;\n\n    void undo() override;\n    void redo() override;\n};\n\nclass RemoveHotKeyCommand: public InsertRemoveHotKeyCommand\n{\npublic:\n    RemoveHotKeyCommand(HotKeyListModel &model_, const QModelIndex &index_parent_, int index_, QUndoCommand *parent = nullptr);\n    RemoveHotKeyCommand(const RemoveHotKeyCommand &) = delete;\n    RemoveHotKeyCommand &operator=(const RemoveHotKeyCommand &) = delete;\n\n    void undo() override;\n    void redo() override;\n};\n\ntemplate <class Type>\nclass SetHotKeyValueCommand: public QUndoCommand\n{\n    using PropertyPtr = Type HotKey::*;\n\n    HotKeyListModel &model;\n    const QModelIndex index;\n    const QString name;\n    PropertyPtr property;\n    Type value;\n\npublic:\n    SetHotKeyValueCommand(HotKeyListModel &model_, const QModelIndex &index_, const QString &name_, PropertyPtr property_, const Type &value_, QUndoCommand *parent = nullptr)\n        : QUndoCommand{\"\", parent}\n        , model{model_}\n        , index{index_}\n        , name{name_}\n        , property{property_}\n        , value{value_}\n    {\n        setText(QObject::tr(\"Change %1 entry at position %2 %3 to \\\"%4\\\"\").arg(\"Key\").arg(index.row()).arg(name).arg(static_cast<underlying_type_t<Type>>(value)));\n    }\n\n    SetHotKeyValueCommand(const SetHotKeyValueCommand &) = delete;\n    SetHotKeyValueCommand &operator=(const SetHotKeyValueCommand &) = delete;\n\n    int id() const override\n    {\n        return 6;\n    }\n\n    void undo() override\n    {\n        redo();\n    }\n\n    void redo() override\n    {\n        auto &entry = model.entries[index.row()];\n        auto old_value = entry.*property;\n        entry.*property = value;\n        value = old_value;\n        emit model.dataChanged(index, index, {Qt::EditRole});\n    }\n\n    bool mergeWith(const QUndoCommand *command) override\n    {\n        auto cmd = static_cast<const SetHotKeyValueCommand<Type> *>(command);\n        if(&cmd->model != &model)\n            return false;\n\n        if(cmd->index != index)\n            return false;\n\n        if(cmd->property != property)\n            return false;\n\n        auto &entry = model.entries.at(index.row());\n        if(value == entry.*property)\n            setObsolete(true);\n\n        setText(QObject::tr(\"Change %1 entry at position %2 %3 to \\\"%4\\\"\").arg(\"Key\").arg(index.row()).arg(name).arg(static_cast<underlying_type_t<Type>>(entry.*property)));\n        return true;\n    }\n};\n\nclass SetHotKeyKeysCommand: public QUndoCommand\n{\nprivate:\n    HotKeyListModel &model;\n    QModelIndex index;\n    EFIKeySequence value;\n\npublic:\n    SetHotKeyKeysCommand(HotKeyListModel &model_, const QModelIndex &index_, const EFIKeySequence &value_, QUndoCommand *parent = nullptr);\n    SetHotKeyKeysCommand(const SetHotKeyKeysCommand &) = delete;\n    SetHotKeyKeysCommand &operator=(const SetHotKeyKeysCommand &) = delete;\n\n    int id() const override;\n    void undo() override;\n    void redo() override;\n    bool mergeWith(const QUndoCommand *command) override;\n};\n"
  },
  {
    "path": "include/compat.h",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#pragma once\n\n#include <stdbool.h>\n#include <stddef.h>\n#include <stdint.h>\n\n/* casts */\n#if defined(__cplusplus)\n#define STATIC_CAST(type) static_cast<type>\n#else\n#define STATIC_CAST(type) (type)\n#define nullptr NULL\n#endif\n\n/* attributes */\n#if defined(__GNUC__) && !defined(__clang__)\n#define ATTR_ARTIFICIAL __attribute__((__artificial__))\n#else\n#define ATTR_ARTIFICIAL\n#endif\n\n/* MSVC compatibility */\n#if defined(_MSC_VER)\n#include <basetsd.h>\n#define ATTR_ALIGN(X) __declspec(align(X))\n#define ATTR_NONNULL(...)\n#define ATTR_NONNULL_IS_NULL(x) !(x)\n#define ATTR_UNUSED\n#define ATTR_VISIBILITY(...)\n#define ATTR_WARN_UNUSED_RESULT _Check_return_\ntypedef SSIZE_T ssize_t;\n#else\n#define ATTR_ALIGN(X) __attribute__((__aligned__(X)))\n#define ATTR_NONNULL(...) __attribute__((__nonnull__(__VA_ARGS__)))\n#define ATTR_NONNULL_IS_NULL(x) false\n#define ATTR_UNUSED __attribute__((__unused__))\n#define ATTR_VISIBILITY(...) __attribute__((__visibility__(__VA_ARGS__)))\n#define ATTR_WARN_UNUSED_RESULT __attribute__((__warn_unused_result__))\n#endif\n\n/* Windows compatibility */\n#if defined(_WIN32)\n#include <Windows.h>\n#include <stdio.h>\n#include <tchar.h>\n#undef interface\ntypedef uint32_t mode_t;\n#else\n#include <stdio.h>\n#include <string.h>\n#include <sys/stat.h>\n#include <sys/types.h>\ntypedef char TCHAR;\n#define ANYSIZE_ARRAY 1\n#if defined(__clang__)\n#pragma clang diagnostic push\n#pragma clang diagnostic ignored \"-Wreserved-id-macro\"\n#pragma clang diagnostic ignored \"-Wreserved-identifier\"\n#pragma clang diagnostic ignored \"-Wreserved-macro-identifier\"\n#endif\n#define _T\n#define _TRUNCATE STATIC_CAST(size_t)(-1)\ninline int _tcsncpy_s(TCHAR *buffer, size_t size, TCHAR *src, size_t _size)\n{\n    (void)_size;\n    return !buffer || *strncpy(buffer, src, size - 1) == 0;\n}\n\ninline int _tcserror_s(TCHAR *buffer, size_t size, int errnum)\n{\n#if defined(__APPLE__) || ((_POSIX_C_SOURCE >= 200112L) && !defined(_GNU_SOURCE))\n    return strerror_r(errnum, buffer, size);\n#else\n    TCHAR *msg = strerror_r(errnum, buffer, size);\n    if(msg == nullptr)\n        return 0;\n\n    return _tcsncpy_s(buffer, size, msg, _TRUNCATE);\n#endif\n}\n\n#if defined(__clang__)\n#pragma clang diagnostic pop\n#endif\n#define _sntprintf_s(buffer, buffer_size, count, format, ...) snprintf(buffer, buffer_size, format, __VA_ARGS__)\n#endif\n\n#if defined(__cplusplus)\n#include <QString>\n#include <cctype>\n#include <fstream>\n#include <memory>\n#include <sstream>\n#include <string>\n\n#if QT_VERSION >= QT_VERSION_CHECK(6, 2, 0)\n#include <QStringConverter>\n#else\n#include <QTextCodec>\n#endif\n\n/* string types */\nusing tstring = std::basic_string<TCHAR>;\n\nusing tstring_view = std::basic_string_view<TCHAR>;\n\nusing tostream = std::basic_ostream<TCHAR>;\nusing tistream = std::basic_istream<TCHAR>;\nusing tiostream = std::basic_iostream<TCHAR>;\n\nusing tifstream = std::basic_ifstream<TCHAR>;\nusing tofstream = std::basic_ofstream<TCHAR>;\nusing tfstream = std::basic_fstream<TCHAR>;\n\nusing tstringstream = std::basic_stringstream<TCHAR>;\n\ntemplate <class Type>\ninline tstring to_tstring(const Type &value)\n{\n#if defined(UNICODE) || defined(_UNICODE)\n    return std::to_wstring(value);\n#else\n    return std::to_string(value);\n#endif\n}\n\nconst int HEX_BASE = 16;\n\n/* QString helpers */\ninline tstring QStringToStdTString(const QString &string)\n{\n#if defined(UNICODE) || defined(_UNICODE)\n    return string.toStdWString();\n#else\n    return string.toStdString();\n#endif\n}\n\ninline QString QStringFromTCharArray(const TCHAR *string)\n{\n#if defined(UNICODE) || defined(_UNICODE)\n    return QString::fromWCharArray(string);\n#else\n    return string;\n#endif\n}\n\ninline QString QStringFromStdTString(const tstring &string)\n{\n#if defined(UNICODE) || defined(_UNICODE)\n    return QString::fromStdWString(string);\n#else\n    return QString::fromStdString(string);\n#endif\n}\n\n/* additional helpers */\ninline QString toHex(unsigned long long number, int min_width = 0, const QString &prefix = \"0x\")\n{\n    return prefix + QString(\"%1\").arg(number, min_width, HEX_BASE, QChar('0')).toUpper();\n}\n\ninline bool isxnumber(const tstring_view &string)\n{\n#if defined(UNICODE) || defined(_UNICODE)\n    return std::all_of(std::begin(string), std::end(string), [](char16_t chr)\n        { return iswxdigit(chr); });\n#else\n    return std::all_of(std::begin(string), std::end(string), [](unsigned char chr)\n        { return isxdigit(chr); });\n#endif\n}\n\ntemplate <class Container>\nauto get_default(const Container &data, const typename Container::key_type &key, const typename Container::mapped_type &default_value) -> typename Container::mapped_type\n{\n    if(auto it = data.find(key); it != data.end())\n        return it->second;\n\n    return default_value;\n}\n\ntemplate <class Container>\ninline bool toUnicode(QString &output, const Container &input, const char *codec_name = \"UTF-8\")\n{\n#if QT_VERSION >= QT_VERSION_CHECK(6, 2, 0)\n    QStringDecoder decoder{codec_name};\n    output = decoder.decode(input);\n    return !decoder.hasError();\n#else\n    auto codec = QTextCodec::codecForName(codec_name);\n    QTextCodec::ConverterState state;\n    output = codec->toUnicode(reinterpret_cast<const char *>(std::data(input)), static_cast<int>(std::size(input)), &state);\n    return state.invalidChars == 0;\n#endif\n}\n\ninline QByteArray fromUnicode(const QString &input, const char *codec_name = \"UTF-8\")\n{\n#if QT_VERSION >= QT_VERSION_CHECK(6, 2, 0)\n    QStringEncoder encoder(codec_name);\n    return encoder.encode(input);\n#else\n    std::unique_ptr<QTextEncoder> encoder{QTextCodec::codecForName(codec_name)->makeEncoder(QTextCodec::IgnoreHeader)};\n    return encoder->fromUnicode(input);\n#endif\n}\n\ntemplate <class Type>\nstruct type_identity\n{\n    using type = Type;\n};\n\n// Like std::underlying_type but also works for non enums\ntemplate <class Type>\nusing underlying_type_t = typename std::conditional_t<std::is_enum_v<Type>, std::underlying_type<Type>, type_identity<Type>>::type;\n\n// like std::add_const but forces const also for pointer types\ntemplate <class Type>\nusing add_const_t = typename std::conditional_t<std::is_pointer_v<Type>, std::add_pointer_t<std::add_const_t<std::remove_pointer_t<Type>>>, std::add_const_t<Type>>;\n#endif\n\n#if defined(__clang__)\n#pragma clang diagnostic push\n#pragma clang diagnostic ignored \"-Wunsafe-buffer-usage\"\n#endif\ninline const void *advance_bytes(const void *ptr, size_t bytes)\n{\n    return STATIC_CAST(const void *)(STATIC_CAST(const uint8_t *)(ptr) + bytes);\n}\n#if defined(__clang__)\n#pragma clang diagnostic pop\n#endif\n"
  },
  {
    "path": "include/devicepathproxymodel.h",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#pragma once\n\n#include \"bootentry.h\"\n#include \"bootentrylistmodel.h\"\n#include <QAbstractListModel>\n\nclass DevicePathProxyModel: public QAbstractListModel\n{\n    Q_OBJECT\n\npublic:\n    explicit DevicePathProxyModel(QObject *parent = nullptr);\n    DevicePathProxyModel(const DevicePathProxyModel &) = delete;\n    DevicePathProxyModel &operator=(const DevicePathProxyModel &) = delete;\n\n    void setBootEntryListModel(BootEntryListModel &model);\n    void setBootEntryItem(const QModelIndex &index, const BootEntry *item);\n\n    int rowCount(const QModelIndex &parent = QModelIndex()) const override;\n\n    QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;\n    bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole) override;\n\n    bool insertRows(int row, int count, const QModelIndex &parent = QModelIndex()) override;\n\n    bool removeRows(int row, int count, const QModelIndex &parent = QModelIndex()) override;\n\n    bool moveRows(const QModelIndex &sourceParent, int sourceRow, int count, const QModelIndex &destinationParent, int destinationChild) override;\n\n    void clear();\n\nprivate:\n    BootEntryListModel *boot_entry_list_model = nullptr;\n    QModelIndex boot_entry_index = {};\n    const QVector<FilePath::ANY> *boot_entry_device_path = nullptr;\n};\n"
  },
  {
    "path": "include/devicepathview.h",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#pragma once\n\n#include \"filepathdelegate.h\"\n#include \"filepathdialog.h\"\n#include <QListView>\n\nclass DevicePathView: public QListView\n{\n    Q_OBJECT\n\nprivate:\n    FilePathDelegate delegate{};\n    std::unique_ptr<FilePathDialog> dialog{nullptr};\n    bool readonly{false};\n\npublic:\n    explicit DevicePathView(QWidget *parent = nullptr);\n    DevicePathView(const DevicePathView &) = delete;\n    DevicePathView &operator=(const DevicePathView &) = delete;\n\n    void setReadOnly(bool readonly);\n\npublic Q_SLOTS:\n    void insertRow();\n    void editCurrentRow();\n    void removeCurrentRow() const;\n    void moveCurrentRowUp();\n    void moveCurrentRowDown();\n};\n"
  },
  {
    "path": "include/disableundoredo.h",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#pragma once\n\n#include <QEvent>\n#include <QKeyEvent>\n#include <QObject>\n\nclass DisableUndoRedo: public QObject\n{\n    Q_OBJECT\n\n    using QObject::QObject;\n\npublic:\n    DisableUndoRedo(const DisableUndoRedo &) = delete;\n    DisableUndoRedo &operator=(const DisableUndoRedo &) = delete;\n\nprotected:\n    bool eventFilter(QObject *obj, QEvent *ev) override\n    {\n        if(ev->type() == QEvent::ShortcutOverride)\n        {\n            auto keyEvent = dynamic_cast<QKeyEvent *>(ev);\n            auto isUndo = keyEvent->matches(QKeySequence::Undo);\n            auto isRedo = keyEvent->matches(QKeySequence::Redo);\n\n            return isUndo || isRedo;\n        }\n\n        return QObject::eventFilter(obj, ev);\n    }\n};\n"
  },
  {
    "path": "include/driveinfo.h",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#pragma once\n\n#include <QMetaType>\n#include <QUuid>\n#include <QVector>\n\nclass DriveInfo\n{\n    static QVector<DriveInfo> all;\n\npublic:\n    enum class SIGNATURE : uint8_t\n    {\n        NONE = 0x00,\n        MBR = 0x01,\n        GUID = 0x02,\n    };\n\npublic:\n    QString name{};\n    QUuid signature{};\n    uint64_t start{0};\n    uint64_t size{0};\n    uint32_t partition{0};\n    SIGNATURE signature_type{SIGNATURE::NONE};\n\npublic:\n    static QVector<DriveInfo> getAll(bool refresh = false);\n\n    bool operator<(const DriveInfo &info) const { return name < info.name; }\n};\n\nQ_DECLARE_METATYPE(DriveInfo)\n"
  },
  {
    "path": "include/efiboot.h",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#pragma once\n\n#include <array>\n#include <functional>\n#include <optional>\n#include <string>\n#include <string_view>\n#include <unordered_map>\n#include <variant>\n#include <vector>\n#include <zlib.h>\n\nnamespace EFIBoot\n{\n\nextern \"C\"\n{\n#include \"efivar-lite/device-paths.h\"\n#include \"efivar-lite/efivar-lite.h\"\n#include \"efivar-lite/key-option.h\"\n#include \"efivar-lite/load-option.h\"\n}\n\ninline bool operator==(const efi_guid_t &first, const efi_guid_t &second)\n{\n    return efi_guid_cmp(&first, &second) == 0;\n}\n\ninline bool operator!=(const efi_guid_t &first, const efi_guid_t &second)\n{\n    return efi_guid_cmp(&first, &second) != 0;\n}\n\nusing Raw_data = std::vector<uint8_t>;\n\ntemplate <class Type = Raw_data>\nstd::optional<Type> deserialize(const void *data, size_t data_size);\n\nnamespace File_path\n{\n\n/*\n   Hardware\n   This Device Path defines how a device is attached to the resource domain of a system, where resource domain is simply the shared memory, memory mapped I/O, and I/O space of the system.\n*/\nnamespace HW\n{\n\n/*\n   PCI\n   The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.\n*/\nstruct Pci\n{\n    static const uint8_t TYPE = EFIDP_TYPE_HW;\n    static const uint8_t SUBTYPE = EFIDP_HW_PCI;\n\n    uint8_t function = {};\n    uint8_t device = {};\n};\n\n/*\n   PCCARD\n   PCCARD Settings.\n*/\nstruct Pccard\n{\n    static const uint8_t TYPE = EFIDP_TYPE_HW;\n    static const uint8_t SUBTYPE = EFIDP_HW_PCCARD;\n\n    uint8_t function_number = {};\n};\n\n/*\n   Memory Mapped\n   Memory Mapped Settings.\n*/\nstruct Memory_mapped\n{\n    enum class MEMORY_TYPE : uint32_t\n    {\n        RESERVED = 0x0,\n        LOADER_CODE = 0x1,\n        LOADER_DATA = 0x2,\n        BOOT_SERVICES_CODE = 0x3,\n        BOOT_SERVICES_DATA = 0x4,\n        RUNTIME_SERVICES_CODE = 0x5,\n        RUNTIME_SERVICES_DATA = 0x6,\n        CONVENTIONAL = 0x7,\n        UNUSABLE = 0x8,\n        ACPI_RECLAIM = 0x9,\n        ACPI_MEMORY_NVS = 0xa,\n        MEMORY_MAPPED_IO = 0xb,\n        MEMORY_MAPPD_IO_PORT_SPACE = 0xc,\n        PAL_CODE = 0xd,\n        PERSISTENT = 0xe,\n        UNACCEPTED = 0xf,\n    };\n\n    static const uint8_t TYPE = EFIDP_TYPE_HW;\n    static const uint8_t SUBTYPE = EFIDP_HW_MEMORY_MAPPED;\n\n    MEMORY_TYPE memory_type = {};\n    uint64_t start_address = {};\n    uint64_t end_address = {};\n};\n\n/*\n   Vendor-Defined Hardware\n   The Vendor Device Path allows the creation of vendor-defined Device Paths.\n*/\nstruct Vendor\n{\n    static const uint8_t TYPE = EFIDP_TYPE_HW;\n    static const uint8_t SUBTYPE = EFIDP_HW_VENDOR;\n\n    std::array<uint8_t, 16> guid = {};\n    Raw_data data = {};\n};\n\n/*\n   Controller\n   Controller settings.\n*/\nstruct Controller\n{\n    static const uint8_t TYPE = EFIDP_TYPE_HW;\n    static const uint8_t SUBTYPE = EFIDP_HW_CONTROLLER;\n\n    uint32_t controller_number = {};\n};\n\n/*\n   BMC\n   The Device Path for a Baseboard Management Controller (BMC) host interface.\n*/\nstruct Bmc\n{\n    enum class INTERFACE_TYPE : uint8_t\n    {\n        UNKNOWN = 0x0,\n        KCS = 0x1,\n        SMIC = 0x2,\n        BT = 0x3,\n    };\n\n    static const uint8_t TYPE = EFIDP_TYPE_HW;\n    static const uint8_t SUBTYPE = EFIDP_HW_BMC;\n\n    INTERFACE_TYPE interface_type = {};\n    uint64_t base_address = {};\n};\n\n} // namespace HW\n\n/*\n   ACPI\n   This Device Path is used to describe devices whose enumeration is not described in an industry-standard fashion. These devices must be described using ACPI AML in the ACPI name space; this Device Path is a linkage to the ACPI name space.\n*/\nnamespace ACPI\n{\n\n/*\n   ACPI\n   This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.\n*/\nstruct Acpi\n{\n    static const uint8_t TYPE = EFIDP_TYPE_ACPI;\n    static const uint8_t SUBTYPE = EFIDP_ACPI_ACPI;\n\n    uint32_t hid = {};\n    uint32_t uid = {};\n};\n\n/*\n   Expanded\n   This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.\n*/\nstruct Expanded\n{\n    static const uint8_t TYPE = EFIDP_TYPE_ACPI;\n    static const uint8_t SUBTYPE = EFIDP_ACPI_EXPANDED;\n\n    uint32_t hid = {};\n    uint32_t uid = {};\n    uint32_t cid = {};\n    std::string hidstr = {};\n    std::string uidstr = {};\n    std::string cidstr = {};\n};\n\n/*\n   ADR\n   The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.\n*/\nstruct Adr\n{\n    static const uint8_t TYPE = EFIDP_TYPE_ACPI;\n    static const uint8_t SUBTYPE = EFIDP_ACPI_ADR;\n\n    uint32_t adr = {};\n    Raw_data additional_adr = {};\n};\n\n/*\n   NVDIMM\n   This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.\n*/\nstruct Nvdimm\n{\n    static const uint8_t TYPE = EFIDP_TYPE_ACPI;\n    static const uint8_t SUBTYPE = EFIDP_ACPI_NVDIMM;\n\n    uint32_t nfit_device_handle = {};\n};\n\n} // namespace ACPI\n\n/*\n   Messaging\n   This Device Path is used to describe the connection of devices outside the resource domain of the system. This Device Path can describe physical messaging information such as a SCSI ID, or abstract information such as networking protocol IP addresses.\n*/\nnamespace MSG\n{\n\n/*\n   ATAPI\n   ATAPI Settings.\n*/\nstruct Atapi\n{\n    static const uint8_t TYPE = EFIDP_TYPE_MSG;\n    static const uint8_t SUBTYPE = EFIDP_MSG_ATAPI;\n\n    bool primary = {};\n    bool slave = {};\n    uint16_t lun = {};\n};\n\n/*\n   SCSI\n   SCSI Settings.\n*/\nstruct Scsi\n{\n    static const uint8_t TYPE = EFIDP_TYPE_MSG;\n    static const uint8_t SUBTYPE = EFIDP_MSG_SCSI;\n\n    uint16_t pun = {};\n    uint16_t lun = {};\n};\n\n/*\n   Fibre Channel\n   Fibre Channel Settings\n*/\nstruct Fibre_channel\n{\n    static const uint8_t TYPE = EFIDP_TYPE_MSG;\n    static const uint8_t SUBTYPE = EFIDP_MSG_FIBRE_CHANNEL;\n\n    uint32_t reserved = {};\n    uint64_t world_wide_name = {};\n    uint64_t lun = {};\n};\n\n/*\n   Firewire\n   Firewire Settings.\n*/\nstruct Firewire\n{\n    static const uint8_t TYPE = EFIDP_TYPE_MSG;\n    static const uint8_t SUBTYPE = EFIDP_MSG_FIREWIRE;\n\n    uint32_t reserved = {};\n    uint64_t guid = {};\n};\n\n/*\n   USB\n   USB settings.\n*/\nstruct Usb\n{\n    static const uint8_t TYPE = EFIDP_TYPE_MSG;\n    static const uint8_t SUBTYPE = EFIDP_MSG_USB;\n\n    uint8_t parent_port_number = {};\n    uint8_t interface_number = {};\n};\n\n/*\n   I2O\n   I2O Settings\n*/\nstruct I2o\n{\n    static const uint8_t TYPE = EFIDP_TYPE_MSG;\n    static const uint8_t SUBTYPE = EFIDP_MSG_I2O;\n\n    uint32_t tid = {};\n};\n\n/*\n   InfiniBand\n   InfiniBand Settings.\n*/\nstruct Infiniband\n{\n    static const uint8_t TYPE = EFIDP_TYPE_MSG;\n    static const uint8_t SUBTYPE = EFIDP_MSG_INFINIBAND;\n\n    uint32_t resource_flags = {};\n    std::array<uint8_t, 16> port_gid = {};\n    uint64_t ioc_guid_service_id = {};\n    uint64_t target_port_id = {};\n    uint64_t device_id = {};\n};\n\n/*\n   Vendor-Defined Messaging\n   The Vendor Device Path allows the creation of vendor-defined Device Paths.\n*/\nstruct Vendor\n{\n    static const uint8_t TYPE = EFIDP_TYPE_MSG;\n    static const uint8_t SUBTYPE = EFIDP_MSG_VENDOR;\n\n    std::array<uint8_t, 16> guid = {};\n    Raw_data data = {};\n};\n\n/*\n   MAC Address\n   MAC settings.\n*/\nstruct Mac_address\n{\n    static const uint8_t TYPE = EFIDP_TYPE_MSG;\n    static const uint8_t SUBTYPE = EFIDP_MSG_MAC_ADDRESS;\n\n    std::array<uint8_t, 32> address = {};\n    uint8_t if_type = {};\n};\n\n/*\n   IPv4\n   IPv4 settings.\n*/\nstruct Ipv4\n{\n    static const uint8_t TYPE = EFIDP_TYPE_MSG;\n    static const uint8_t SUBTYPE = EFIDP_MSG_IPV4;\n\n    std::array<uint8_t, 4> local_ip_address = {};\n    std::array<uint8_t, 4> remote_ip_address = {};\n    uint16_t local_port = {};\n    uint16_t remote_port = {};\n    uint16_t protocol = {};\n    bool static_ip_address = {};\n    std::array<uint8_t, 4> gateway_ip_address = {};\n    std::array<uint8_t, 4> subnet_mask = {};\n};\n\n/*\n   IPv6\n   IPv6 settings.\n*/\nstruct Ipv6\n{\n    enum class IP_ADDRESS_ORIGIN : uint8_t\n    {\n        STATIC = 0x0,\n        STATELESS = 0x1,\n        STATEFUL = 0x2,\n    };\n\n    static const uint8_t TYPE = EFIDP_TYPE_MSG;\n    static const uint8_t SUBTYPE = EFIDP_MSG_IPV6;\n\n    std::array<uint8_t, 16> local_ip_address = {};\n    std::array<uint8_t, 16> remote_ip_address = {};\n    uint16_t local_port = {};\n    uint16_t remote_port = {};\n    uint16_t protocol = {};\n    IP_ADDRESS_ORIGIN ip_address_origin = {};\n    uint8_t prefix_length = {};\n    std::array<uint8_t, 16> gateway_ip_address = {};\n};\n\n/*\n   UART\n   UART Settings.\n*/\nstruct Uart\n{\n    enum class PARITY : uint8_t\n    {\n        DEFAULT = 0x0,\n        NO = 0x1,\n        EVEN = 0x2,\n        ODD = 0x3,\n        MARK = 0x4,\n        SPACE = 0x5,\n    };\n\n    enum class STOP_BITS : uint8_t\n    {\n        DEFAULT = 0x0,\n        ONE = 0x1,\n        ONE_AND_HALF = 0x2,\n        TWO = 0x3,\n    };\n\n    static const uint8_t TYPE = EFIDP_TYPE_MSG;\n    static const uint8_t SUBTYPE = EFIDP_MSG_UART;\n\n    uint32_t reserved = {};\n    uint64_t baud_rate = {};\n    uint8_t data_bits = {};\n    PARITY parity = {};\n    STOP_BITS stop_bits = {};\n};\n\n/*\n   USB Class\n   USB Class Settings.\n*/\nstruct Usb_class\n{\n    static const uint8_t TYPE = EFIDP_TYPE_MSG;\n    static const uint8_t SUBTYPE = EFIDP_MSG_USB_CLASS;\n\n    uint16_t vendor_id = {};\n    uint16_t product_id = {};\n    uint8_t device_class = {};\n    uint8_t device_subclass = {};\n    uint8_t device_protocol = {};\n};\n\n/*\n   USB WWID\n   This device path describes a USB device using its serial number.\n*/\nstruct Usb_wwid\n{\n    static const uint8_t TYPE = EFIDP_TYPE_MSG;\n    static const uint8_t SUBTYPE = EFIDP_MSG_USB_WWID;\n\n    uint16_t interface_number = {};\n    uint16_t device_vendor_id = {};\n    uint16_t device_product_id = {};\n    std::u16string serial_number = {};\n};\n\n/*\n   Device Logical Unit\n   Device Logical Unit Settings.\n*/\nstruct Device_logical_unit\n{\n    static const uint8_t TYPE = EFIDP_TYPE_MSG;\n    static const uint8_t SUBTYPE = EFIDP_MSG_DEVICE_LOGICAL_UNIT;\n\n    uint8_t lun = {};\n};\n\n/*\n   SATA\n   SATA settings.\n*/\nstruct Sata\n{\n    static const uint8_t TYPE = EFIDP_TYPE_MSG;\n    static const uint8_t SUBTYPE = EFIDP_MSG_SATA;\n\n    uint16_t hba_port_number = {};\n    uint16_t port_multiplier_port_number = {};\n    uint16_t lun = {};\n};\n\n/*\n   iSCSI\n   iSCSI Settings.\n*/\nstruct Iscsi\n{\n    static const uint8_t TYPE = EFIDP_TYPE_MSG;\n    static const uint8_t SUBTYPE = EFIDP_MSG_ISCSI;\n\n    uint16_t protocol = {};\n    uint16_t options = {};\n    uint64_t lun = {};\n    uint16_t target_portal_group = {};\n    std::string target_name = {};\n};\n\n/*\n   VLAN\n   VLAN Settings.\n*/\nstruct Vlan\n{\n    static const uint8_t TYPE = EFIDP_TYPE_MSG;\n    static const uint8_t SUBTYPE = EFIDP_MSG_VLAN;\n\n    uint16_t vlan_id = {};\n};\n\n/*\n   Fibre Channel Ex\n   The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.\n*/\nstruct Fibre_channel_ex\n{\n    static const uint8_t TYPE = EFIDP_TYPE_MSG;\n    static const uint8_t SUBTYPE = EFIDP_MSG_FIBRE_CHANNEL_EX;\n\n    uint32_t reserved = {};\n    uint64_t world_wide_name = {};\n    uint64_t lun = {};\n};\n\n/*\n   SAS Extended Messaging\n   The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.\n*/\nstruct Sas_extended_messaging\n{\n    static const uint8_t TYPE = EFIDP_TYPE_MSG;\n    static const uint8_t SUBTYPE = EFIDP_MSG_SAS_EXTENDED_MESSAGING;\n\n    uint64_t sas_address = {};\n    uint64_t lun = {};\n    uint16_t device_and_topology_info = {};\n    uint16_t relative_target_port = {};\n};\n\n/*\n   NVM Express NS\n   NVM Express Namespace Settings.\n*/\nstruct Nvm_express_ns\n{\n    static const uint8_t TYPE = EFIDP_TYPE_MSG;\n    static const uint8_t SUBTYPE = EFIDP_MSG_NVM_EXPRESS_NS;\n\n    uint32_t namespace_identifier = {};\n    uint64_t ieee_extended_unique_identifier = {};\n};\n\n/*\n   URI\n   Refer to RFC 3986 for details on the URI contents.\n*/\nstruct Uri\n{\n    static const uint8_t TYPE = EFIDP_TYPE_MSG;\n    static const uint8_t SUBTYPE = EFIDP_MSG_URI;\n\n    Raw_data uri = {};\n};\n\n/*\n   UFS\n   UFS Settings.\n*/\nstruct Ufs\n{\n    static const uint8_t TYPE = EFIDP_TYPE_MSG;\n    static const uint8_t SUBTYPE = EFIDP_MSG_UFS;\n\n    uint8_t pun = {};\n    uint8_t lun = {};\n};\n\n/*\n   SD\n   SD Settings.\n*/\nstruct Sd\n{\n    static const uint8_t TYPE = EFIDP_TYPE_MSG;\n    static const uint8_t SUBTYPE = EFIDP_MSG_SD;\n\n    uint8_t slot_number = {};\n};\n\n/*\n   Bluetooth\n   EFI Bluetooth Settings.\n*/\nstruct Bluetooth\n{\n    static const uint8_t TYPE = EFIDP_TYPE_MSG;\n    static const uint8_t SUBTYPE = EFIDP_MSG_BLUETOOTH;\n\n    std::array<uint8_t, 6> device_address = {};\n};\n\n/*\n   Wi-Fi\n   Wi-Fi Settings.\n*/\nstruct Wi_fi\n{\n    static const uint8_t TYPE = EFIDP_TYPE_MSG;\n    static const uint8_t SUBTYPE = EFIDP_MSG_WI_FI;\n\n    std::string ssid = {};\n};\n\n/*\n   eMMC\n   Embedded Multi-Media Card Settings.\n*/\nstruct Emmc\n{\n    static const uint8_t TYPE = EFIDP_TYPE_MSG;\n    static const uint8_t SUBTYPE = EFIDP_MSG_EMMC;\n\n    uint8_t slot_number = {};\n};\n\n/*\n   BluetoothLE\n   EFI BluetoothLE Settings.\n*/\nstruct Bluetoothle\n{\n    enum class ADDRESS_TYPE : uint8_t\n    {\n        PUBLIC = 0x0,\n        RANDOM = 0x1,\n    };\n\n    static const uint8_t TYPE = EFIDP_TYPE_MSG;\n    static const uint8_t SUBTYPE = EFIDP_MSG_BLUETOOTHLE;\n\n    std::array<uint8_t, 6> device_address = {};\n    ADDRESS_TYPE address_type = {};\n};\n\n/*\n   DNS\n   DNS Settings.\n*/\nstruct Dns\n{\n    static const uint8_t TYPE = EFIDP_TYPE_MSG;\n    static const uint8_t SUBTYPE = EFIDP_MSG_DNS;\n\n    bool ipv6 = {};\n    Raw_data data = {};\n};\n\n/*\n   NVDIMM NS\n   This device path describes a bootable NVDIMM namespace that is defined by a namespace label.\n*/\nstruct Nvdimm_ns\n{\n    static const uint8_t TYPE = EFIDP_TYPE_MSG;\n    static const uint8_t SUBTYPE = EFIDP_MSG_NVDIMM_NS;\n\n    std::array<uint8_t, 16> uuid = {};\n};\n\n/*\n   REST Service\n   REST Service Settings.\n*/\nstruct Rest_service\n{\n    enum class REST_SERVICE : uint8_t\n    {\n        REDFISH = 0x1,\n        ODATA = 0x2,\n        VENDOR = 0xff,\n    };\n\n    enum class ACCESS_MODE : uint8_t\n    {\n        IN_BAND = 0x1,\n        OUT_OF_BAND = 0x2,\n    };\n\n    static const uint8_t TYPE = EFIDP_TYPE_MSG;\n    static const uint8_t SUBTYPE = EFIDP_MSG_REST_SERVICE;\n\n    REST_SERVICE rest_service = {};\n    ACCESS_MODE access_mode = {};\n    std::array<uint8_t, 16> guid = {};\n    Raw_data data = {};\n};\n\n/*\n   NVMe-oF NS\n   This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.\n*/\nstruct Nvme_of_ns\n{\n    static const uint8_t TYPE = EFIDP_TYPE_MSG;\n    static const uint8_t SUBTYPE = EFIDP_MSG_NVME_OF_NS;\n\n    uint8_t nidt = {};\n    std::array<uint8_t, 16> nid = {};\n    std::string subsystem_nqn = {};\n};\n\n} // namespace MSG\n\n/*\n   Media\n   This Device Path is used to describe the portion of a medium that is being abstracted by a boot service. For example, a Media Device Path could define which partition on a hard drive was being used.\n*/\nnamespace MEDIA\n{\n\n/*\n   Hard Drive\n   The Hard Drive Media Device Path is used to represent a partition on a hard drive.\n*/\nstruct Hd\n{\n    enum class PARTITION_FORMAT : uint8_t\n    {\n        MBR = 0x1,\n        GUID = 0x2,\n    };\n\n    enum class SIGNATURE_TYPE : uint8_t\n    {\n        NONE = 0x0,\n        MBR = 0x1,\n        GUID = 0x2,\n    };\n\n    static const uint8_t TYPE = EFIDP_TYPE_MEDIA;\n    static const uint8_t SUBTYPE = EFIDP_MEDIA_HD;\n\n    uint32_t partition_number = {};\n    uint64_t partition_start = {};\n    uint64_t partition_size = {};\n    std::array<uint8_t, 16> partition_signature = {};\n    PARTITION_FORMAT partition_format = {};\n    SIGNATURE_TYPE signature_type = {};\n};\n\n/*\n   CD-ROM\n   The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.\n*/\nstruct Cd_rom\n{\n    static const uint8_t TYPE = EFIDP_TYPE_MEDIA;\n    static const uint8_t SUBTYPE = EFIDP_MEDIA_CD_ROM;\n\n    uint32_t boot_entry = {};\n    uint64_t partition_start = {};\n    uint64_t partition_size = {};\n};\n\n/*\n   Vendor-Defined Media\n   The Vendor Device Path allows the creation of vendor-defined Device Paths.\n*/\nstruct Vendor\n{\n    static const uint8_t TYPE = EFIDP_TYPE_MEDIA;\n    static const uint8_t SUBTYPE = EFIDP_MEDIA_VENDOR;\n\n    std::array<uint8_t, 16> guid = {};\n    Raw_data data = {};\n};\n\n/*\n   File Path\n   File Path settings.\n*/\nstruct File_path\n{\n    static const uint8_t TYPE = EFIDP_TYPE_MEDIA;\n    static const uint8_t SUBTYPE = EFIDP_MEDIA_FILE_PATH;\n\n    std::u16string path_name = {};\n};\n\n/*\n   Protocol\n   The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.\n*/\nstruct Protocol\n{\n    static const uint8_t TYPE = EFIDP_TYPE_MEDIA;\n    static const uint8_t SUBTYPE = EFIDP_MEDIA_PROTOCOL;\n\n    std::array<uint8_t, 16> guid = {};\n};\n\n/*\n   Firmware File\n   Describes a firmware file in a firmware volume.\n*/\nstruct Firmware_file\n{\n    static const uint8_t TYPE = EFIDP_TYPE_MEDIA;\n    static const uint8_t SUBTYPE = EFIDP_MEDIA_FIRMWARE_FILE;\n\n    std::array<uint8_t, 16> name = {};\n};\n\n/*\n   Firmware Volume\n   Describes a firmware volume.\n*/\nstruct Firmware_volume\n{\n    static const uint8_t TYPE = EFIDP_TYPE_MEDIA;\n    static const uint8_t SUBTYPE = EFIDP_MEDIA_FIRMWARE_VOLUME;\n\n    std::array<uint8_t, 16> name = {};\n};\n\n/*\n   Relative Offset Range\n   This device path node specifies a range of offsets relative to the first byte available on the device.\n*/\nstruct Relative_offset_range\n{\n    static const uint8_t TYPE = EFIDP_TYPE_MEDIA;\n    static const uint8_t SUBTYPE = EFIDP_MEDIA_RELATIVE_OFFSET_RANGE;\n\n    uint32_t reserved = {};\n    uint64_t starting_offset = {};\n    uint64_t ending_offset = {};\n};\n\n/*\n   RAM Disk\n   RAM Disk Settings.\n*/\nstruct Ram_disk\n{\n    static const uint8_t TYPE = EFIDP_TYPE_MEDIA;\n    static const uint8_t SUBTYPE = EFIDP_MEDIA_RAM_DISK;\n\n    uint64_t starting_address = {};\n    uint64_t ending_address = {};\n    std::array<uint8_t, 16> guid = {};\n    uint16_t disk_instance = {};\n};\n\n} // namespace MEDIA\n\n/*\n   BIOS\n   This Device Path is used to point to boot legacy operating systems. it is based on the BIOS Boot Specification Version 1.01.\n*/\nnamespace BIOS\n{\n\n/*\n   BIOS Boot Specification\n   This Device Path is used to describe the booting of non-EFI-aware operating systems.\n*/\nstruct Boot_specification\n{\n    static const uint8_t TYPE = EFIDP_TYPE_BIOS;\n    static const uint8_t SUBTYPE = EFIDP_BIOS_BOOT_SPECIFICATION;\n\n    uint16_t device_type = {};\n    uint16_t status_flag = {};\n    std::string description = {};\n};\n\n} // namespace BIOS\n\n/*\n   End\n   Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.\n*/\nnamespace END\n{\n\n/*\n   End This Instance\n   This type of node terminates one Device Path instance and denotes the start of another. This is only required when an environment variable represents multiple devices.\n*/\nstruct Instance\n{\n    static const uint8_t TYPE = EFIDP_TYPE_END;\n    static const uint8_t SUBTYPE = EFIDP_END_INSTANCE;\n};\n\n/*\n   End Entire\n   This type of node terminates an entire Device Path. Software searches for this sub-type to find the end of a Device Path. All Device Paths must end with this sub-type.\n*/\nstruct Entire\n{\n    static const uint8_t TYPE = EFIDP_TYPE_END;\n    static const uint8_t SUBTYPE = EFIDP_END_ENTIRE;\n};\n\n} // namespace END\n\nstruct Unknown\n{\n    Raw_data data = {};\n    uint8_t TYPE = {};\n    uint8_t SUBTYPE = {};\n};\n\nusing ANY = std::variant<\n    HW::Pci,\n    HW::Pccard,\n    HW::Memory_mapped,\n    HW::Vendor,\n    HW::Controller,\n    HW::Bmc,\n    ACPI::Acpi,\n    ACPI::Expanded,\n    ACPI::Adr,\n    ACPI::Nvdimm,\n    MSG::Atapi,\n    MSG::Scsi,\n    MSG::Fibre_channel,\n    MSG::Firewire,\n    MSG::Usb,\n    MSG::I2o,\n    MSG::Infiniband,\n    MSG::Vendor,\n    MSG::Mac_address,\n    MSG::Ipv4,\n    MSG::Ipv6,\n    MSG::Uart,\n    MSG::Usb_class,\n    MSG::Usb_wwid,\n    MSG::Device_logical_unit,\n    MSG::Sata,\n    MSG::Iscsi,\n    MSG::Vlan,\n    MSG::Fibre_channel_ex,\n    MSG::Sas_extended_messaging,\n    MSG::Nvm_express_ns,\n    MSG::Uri,\n    MSG::Ufs,\n    MSG::Sd,\n    MSG::Bluetooth,\n    MSG::Wi_fi,\n    MSG::Emmc,\n    MSG::Bluetoothle,\n    MSG::Dns,\n    MSG::Nvdimm_ns,\n    MSG::Rest_service,\n    MSG::Nvme_of_ns,\n    MEDIA::Hd,\n    MEDIA::Cd_rom,\n    MEDIA::Vendor,\n    MEDIA::File_path,\n    MEDIA::Protocol,\n    MEDIA::Firmware_file,\n    MEDIA::Firmware_volume,\n    MEDIA::Relative_offset_range,\n    MEDIA::Ram_disk,\n    BIOS::Boot_specification,\n    END::Instance,\n    END::Entire,\n    Unknown>;\n\n} // namespace File_path\n\nenum class Load_option_attribute : uint32_t\n{\n    EMPTY = 0x00000000,\n\n    ACTIVE = 0x00000001,\n    FORCE_RECONNECT = 0x00000002,\n    HIDDEN = 0x00000008,\n\n    CATEGORY_MASK = 0x00001F00,\n    CATEGORY_BOOT = 0x00000000,\n    CATEGORY_APP = 0x00000100,\n};\n\ninline Load_option_attribute operator|(Load_option_attribute a, Load_option_attribute b)\n{\n    return static_cast<Load_option_attribute>(static_cast<std::underlying_type_t<Load_option_attribute>>(a) | static_cast<std::underlying_type_t<Load_option_attribute>>(b));\n}\n\ninline Load_option_attribute operator&(Load_option_attribute a, Load_option_attribute b)\n{\n    return static_cast<Load_option_attribute>(static_cast<std::underlying_type_t<Load_option_attribute>>(a) & static_cast<std::underlying_type_t<Load_option_attribute>>(b));\n}\n\nstruct Load_option\n{\n    std::u16string description = u\"\";\n    std::vector<File_path::ANY> device_path = {};\n    Raw_data optional_data = {};\n    Load_option_attribute attributes = Load_option_attribute::EMPTY;\n};\n\nstruct Key_option\n{\n    efi_boot_key_data key_data = {};\n    uint16_t boot_option = 0u;\n    uint32_t boot_option_crc = 9u;\n    std::vector<efi_input_key> keys = {};\n    Raw_data vendor_data = {};\n};\n\nusing Progress_fn = std::function<void(size_t, size_t)>;\n\ntemplate <class Type = Raw_data>\nusing Variable = std::tuple<Type, uint32_t>;\n\nstd::optional<tstring> init();\n\ntemplate <class Type = Raw_data>\nstd::optional<std::vector<Type>> deserialize_list(const void *data, size_t data_size);\n\ntemplate <class Type = Raw_data, class Size_fn, class Advance_fn>\nstd::optional<std::vector<Type>> deserialize_list_ex(const void *data, size_t data_size, const Size_fn &get_element_size, const Advance_fn &get_next_element);\n\ntemplate <class Type = Raw_data>\nsize_t serialize(Raw_data &output, const Type &value);\n\ntemplate <class Type = Raw_data>\nsize_t serialize_list(Raw_data &output, const std::vector<Type> &value);\n\ntemplate <class Filter_fn>\nstd::optional<std::unordered_map<tstring, efi_guid_t>> get_variables(const Filter_fn &filter, const Progress_fn &progress);\n\ntemplate <class Filter_fn>\nstd::optional<std::unordered_map<tstring, efi_guid_t>> get_variables(const Filter_fn &filter);\nstd::optional<std::unordered_map<tstring, efi_guid_t>> get_variables();\n\ntemplate <class Type = Raw_data>\nstd::optional<Variable<Type>> get_variable(const efi_guid_t &guid, const tstring &name);\n\ntemplate <class Type = Raw_data>\nstd::optional<Variable<std::vector<Type>>> get_list_variable(const efi_guid_t &guid, const tstring &name);\n\ntemplate <class Type = Raw_data, class Size_fn, class Advance_fn>\nstd::optional<Variable<std::vector<Type>>> get_list_variable_ex(const efi_guid_t &guid, const tstring &name, const Size_fn &get_element_size, const Advance_fn &get_next_element);\n\ntemplate <class Type = Raw_data>\nbool set_variable_ex(const efi_guid_t &guid, const tstring &name, const Variable<Type> &variable, mode_t mode, uint32_t &crc);\n\ntemplate <class Type = Raw_data>\nbool set_variable(const efi_guid_t &guid, const tstring &name, const Variable<Type> &variable, mode_t mode);\n\ntemplate <class Type = Raw_data>\nbool set_list_variable(const efi_guid_t &guid, const tstring &name, const Variable<std::vector<Type>> &variable, mode_t mode);\n\ninline std::optional<tstring> init()\n{\n    if(!efi_variables_supported())\n        return {_T(\"UEFI variables not supported on this machine.\")};\n\n    return std::nullopt;\n}\n\ntemplate <class Type>\ninline std::optional<Type> deserialize(const void *data, size_t data_size)\n{\n    if(data_size != sizeof(Type))\n        return std::nullopt;\n\n    return {*static_cast<const Type *>(data)};\n}\n\ntemplate <class Type>\ninline size_t serialize(Raw_data &output, const Type &value)\n{\n    size_t pos = output.size();\n    output.resize(pos + sizeof(value));\n    memcpy(&output[pos], &value, sizeof(value));\n    return sizeof(value);\n}\n\ntemplate <>\ninline std::optional<Raw_data> deserialize<Raw_data>(const void *data, size_t data_size)\n{\n    return {Raw_data{static_cast<const uint8_t *>(data), static_cast<const uint8_t *>(advance_bytes(data, data_size))}};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const Raw_data &data)\n{\n    output.insert(std::end(output), std::begin(data), std::end(data));\n    return data.size();\n}\n\ntemplate <>\ninline std::optional<std::string> deserialize<std::string>(const void *data, size_t data_size)\n{\n    if(data_size % sizeof(std::string::value_type))\n        return std::nullopt;\n\n    return {std::string{static_cast<const std::string::value_type *>(data), data_size / sizeof(std::string::value_type)}};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const std::string &value)\n{\n    size_t bytes = (value.size() + 1) * sizeof(std::string::value_type);\n    size_t pos = output.size();\n    output.resize(pos + bytes);\n    memcpy(&output[pos], value.c_str(), bytes);\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<std::wstring> deserialize<std::wstring>(const void *data, size_t data_size)\n{\n    if(data_size % sizeof(std::wstring::value_type))\n        return std::nullopt;\n\n    return {std::wstring{static_cast<const std::wstring::value_type *>(data), data_size / sizeof(std::wstring::value_type)}};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const std::wstring &value)\n{\n    size_t bytes = (value.size() + 1) * sizeof(std::wstring::value_type);\n    size_t pos = output.size();\n    output.resize(pos + bytes);\n    memcpy(&output[pos], value.c_str(), bytes);\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<std::u16string> deserialize(const void *data, size_t data_size)\n{\n    if(data_size % sizeof(std::u16string::value_type))\n        return std::nullopt;\n\n    return {std::u16string{static_cast<const std::u16string::value_type *>(data), data_size / sizeof(std::u16string::value_type)}};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const std::u16string &value)\n{\n    size_t bytes = (value.size() + 1) * sizeof(std::u16string::value_type);\n    size_t pos = output.size();\n    output.resize(pos + bytes);\n    memcpy(&output[pos], value.c_str(), bytes);\n    return bytes;\n}\n\ntemplate <class Type, class Size_fn, class Advance_fn>\ninline std::optional<std::vector<Type>> deserialize_list_ex(const void *data, size_t data_size, const Size_fn &get_element_size, const Advance_fn &get_next_element)\n{\n    std::vector<Type> values;\n    const void *data_end = advance_bytes(data, data_size);\n    while(data && data < data_end)\n    {\n        auto element_size = get_element_size(data);\n        auto value = deserialize<Type>(data, element_size);\n        if(!value)\n            return std::nullopt;\n\n        values.push_back(*value);\n        data = get_next_element(data, data_size);\n        auto bytes_left = static_cast<const uint8_t *>(data_end) - static_cast<const uint8_t *>(data);\n        data_size = static_cast<size_t>(bytes_left);\n    }\n\n    if(data != data_end)\n        return std::nullopt;\n\n    return {values};\n}\n\ntemplate <class Type>\ninline std::optional<std::vector<Type>> deserialize_list(const void *data, size_t data_size)\n{\n    return deserialize_list_ex<Type>(\n        data, data_size,\n        [](const void *)\n        {\n            return sizeof(Type);\n        },\n        [](const void *ptr, size_t)\n        {\n            return advance_bytes(ptr, sizeof(const Type));\n        });\n}\n\ntemplate <class Type>\nsize_t serialize_list(Raw_data &output, const std::vector<Type> &value)\n{\n    size_t bytes = 0;\n    for(const auto &item: value)\n        bytes += serialize(output, item);\n\n    return bytes;\n}\n\n// Hardware\n\ntemplate <>\ninline std::optional<File_path::HW::Pci> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_hw_pci *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::HW::Pci::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::HW::Pci::SUBTYPE)\n        return std::nullopt;\n\n    File_path::HW::Pci value{};\n    value.function = dp->function;\n    value.device = dp->device;\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::HW::Pci &pci)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::HW::Pci::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::HW::Pci::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, pci.function);\n    bytes += serialize(output, pci.device);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::HW::Pccard> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_hw_pccard *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::HW::Pccard::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::HW::Pccard::SUBTYPE)\n        return std::nullopt;\n\n    File_path::HW::Pccard value{};\n    value.function_number = dp->function_number;\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::HW::Pccard &pccard)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::HW::Pccard::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::HW::Pccard::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, pccard.function_number);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::HW::Memory_mapped> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_hw_memory_mapped *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::HW::Memory_mapped::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::HW::Memory_mapped::SUBTYPE)\n        return std::nullopt;\n\n    File_path::HW::Memory_mapped value{};\n    value.memory_type = static_cast<File_path::HW::Memory_mapped::MEMORY_TYPE>(dp->memory_type);\n    value.start_address = dp->start_address;\n    value.end_address = dp->end_address;\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::HW::Memory_mapped &memory_mapped)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::HW::Memory_mapped::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::HW::Memory_mapped::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, memory_mapped.memory_type);\n    bytes += serialize(output, memory_mapped.start_address);\n    bytes += serialize(output, memory_mapped.end_address);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::HW::Vendor> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_hw_vendor *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::HW::Vendor::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::HW::Vendor::SUBTYPE)\n        return std::nullopt;\n\n    File_path::HW::Vendor value{};\n    std::copy(std::begin(dp->guid), std::end(dp->guid), std::begin(value.guid));\n    {\n        static_assert(sizeof(decltype(value.data)::value_type) == sizeof(dp->data[0]));\n        auto length = static_cast<size_t>(static_cast<decltype(&dp->data[0])>(advance_bytes(data, data_size)) - &dp->data[0]);\n        value.data.resize(length);\n        memcpy(value.data.data(), dp->data, length * sizeof(dp->data[0]));\n    }\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::HW::Vendor &vendor)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::HW::Vendor::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::HW::Vendor::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, vendor.guid);\n    bytes += serialize(output, vendor.data);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::HW::Controller> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_hw_controller *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::HW::Controller::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::HW::Controller::SUBTYPE)\n        return std::nullopt;\n\n    File_path::HW::Controller value{};\n    value.controller_number = dp->controller_number;\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::HW::Controller &controller)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::HW::Controller::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::HW::Controller::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, controller.controller_number);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::HW::Bmc> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_hw_bmc *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::HW::Bmc::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::HW::Bmc::SUBTYPE)\n        return std::nullopt;\n\n    File_path::HW::Bmc value{};\n    value.interface_type = static_cast<File_path::HW::Bmc::INTERFACE_TYPE>(dp->interface_type);\n    value.base_address = dp->base_address;\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::HW::Bmc &bmc)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::HW::Bmc::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::HW::Bmc::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, bmc.interface_type);\n    bytes += serialize(output, bmc.base_address);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\n// ACPI\n\ntemplate <>\ninline std::optional<File_path::ACPI::Acpi> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_acpi_acpi *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::ACPI::Acpi::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::ACPI::Acpi::SUBTYPE)\n        return std::nullopt;\n\n    File_path::ACPI::Acpi value{};\n    value.hid = dp->hid;\n    value.uid = dp->uid;\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::ACPI::Acpi &acpi)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::ACPI::Acpi::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::ACPI::Acpi::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, acpi.hid);\n    bytes += serialize(output, acpi.uid);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::ACPI::Expanded> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_acpi_expanded *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::ACPI::Expanded::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::ACPI::Expanded::SUBTYPE)\n        return std::nullopt;\n\n    File_path::ACPI::Expanded value{};\n    value.hid = dp->hid;\n    value.uid = dp->uid;\n    value.cid = dp->cid;\n    value.hidstr = reinterpret_cast<const decltype(value.hidstr)::value_type *>(dp->hidstr);\n    size_t offset = value.hidstr.size() + 1;\n    value.uidstr = reinterpret_cast<const decltype(value.uidstr)::value_type *>(dp->hidstr + offset);\n    offset += value.uidstr.size() + 1;\n    value.cidstr = reinterpret_cast<const decltype(value.cidstr)::value_type *>(dp->hidstr + offset);\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::ACPI::Expanded &expanded)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::ACPI::Expanded::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::ACPI::Expanded::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, expanded.hid);\n    bytes += serialize(output, expanded.uid);\n    bytes += serialize(output, expanded.cid);\n    bytes += serialize(output, expanded.hidstr);\n    bytes += serialize(output, expanded.uidstr);\n    bytes += serialize(output, expanded.cidstr);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::ACPI::Adr> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_acpi_adr *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::ACPI::Adr::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::ACPI::Adr::SUBTYPE)\n        return std::nullopt;\n\n    File_path::ACPI::Adr value{};\n    value.adr = dp->adr;\n    {\n        static_assert(sizeof(decltype(value.additional_adr)::value_type) == sizeof(dp->additional_adr[0]));\n        auto length = static_cast<size_t>(static_cast<decltype(&dp->additional_adr[0])>(advance_bytes(data, data_size)) - &dp->additional_adr[0]);\n        value.additional_adr.resize(length);\n        memcpy(value.additional_adr.data(), dp->additional_adr, length * sizeof(dp->additional_adr[0]));\n    }\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::ACPI::Adr &adr)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::ACPI::Adr::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::ACPI::Adr::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, adr.adr);\n    bytes += serialize(output, adr.additional_adr);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::ACPI::Nvdimm> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_acpi_nvdimm *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::ACPI::Nvdimm::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::ACPI::Nvdimm::SUBTYPE)\n        return std::nullopt;\n\n    File_path::ACPI::Nvdimm value{};\n    value.nfit_device_handle = dp->nfit_device_handle;\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::ACPI::Nvdimm &nvdimm)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::ACPI::Nvdimm::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::ACPI::Nvdimm::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, nvdimm.nfit_device_handle);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\n// Messaging\n\ntemplate <>\ninline std::optional<File_path::MSG::Atapi> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_msg_atapi *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::MSG::Atapi::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::MSG::Atapi::SUBTYPE)\n        return std::nullopt;\n\n    File_path::MSG::Atapi value{};\n    value.primary = dp->primary;\n    value.slave = dp->slave;\n    value.lun = dp->lun;\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::MSG::Atapi &atapi)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::MSG::Atapi::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::MSG::Atapi::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, atapi.primary);\n    bytes += serialize(output, atapi.slave);\n    bytes += serialize(output, atapi.lun);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::MSG::Scsi> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_msg_scsi *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::MSG::Scsi::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::MSG::Scsi::SUBTYPE)\n        return std::nullopt;\n\n    File_path::MSG::Scsi value{};\n    value.pun = dp->pun;\n    value.lun = dp->lun;\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::MSG::Scsi &scsi)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::MSG::Scsi::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::MSG::Scsi::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, scsi.pun);\n    bytes += serialize(output, scsi.lun);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::MSG::Fibre_channel> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_msg_fibre_channel *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::MSG::Fibre_channel::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::MSG::Fibre_channel::SUBTYPE)\n        return std::nullopt;\n\n    File_path::MSG::Fibre_channel value{};\n    value.reserved = dp->reserved;\n    value.world_wide_name = dp->world_wide_name;\n    value.lun = dp->lun;\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::MSG::Fibre_channel &fibre_channel)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::MSG::Fibre_channel::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::MSG::Fibre_channel::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, fibre_channel.reserved);\n    bytes += serialize(output, fibre_channel.world_wide_name);\n    bytes += serialize(output, fibre_channel.lun);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::MSG::Firewire> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_msg_firewire *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::MSG::Firewire::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::MSG::Firewire::SUBTYPE)\n        return std::nullopt;\n\n    File_path::MSG::Firewire value{};\n    value.reserved = dp->reserved;\n    value.guid = dp->guid;\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::MSG::Firewire &firewire)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::MSG::Firewire::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::MSG::Firewire::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, firewire.reserved);\n    bytes += serialize(output, firewire.guid);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::MSG::Usb> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_msg_usb *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::MSG::Usb::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::MSG::Usb::SUBTYPE)\n        return std::nullopt;\n\n    File_path::MSG::Usb value{};\n    value.parent_port_number = dp->parent_port_number;\n    value.interface_number = dp->interface_number;\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::MSG::Usb &usb)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::MSG::Usb::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::MSG::Usb::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, usb.parent_port_number);\n    bytes += serialize(output, usb.interface_number);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::MSG::I2o> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_msg_i2o *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::MSG::I2o::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::MSG::I2o::SUBTYPE)\n        return std::nullopt;\n\n    File_path::MSG::I2o value{};\n    value.tid = dp->tid;\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::MSG::I2o &i2o)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::MSG::I2o::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::MSG::I2o::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, i2o.tid);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::MSG::Infiniband> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_msg_infiniband *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::MSG::Infiniband::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::MSG::Infiniband::SUBTYPE)\n        return std::nullopt;\n\n    File_path::MSG::Infiniband value{};\n    value.resource_flags = dp->resource_flags;\n    std::copy(std::begin(dp->port_gid), std::end(dp->port_gid), std::begin(value.port_gid));\n    value.ioc_guid_service_id = dp->ioc_guid_service_id;\n    value.target_port_id = dp->target_port_id;\n    value.device_id = dp->device_id;\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::MSG::Infiniband &infiniband)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::MSG::Infiniband::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::MSG::Infiniband::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, infiniband.resource_flags);\n    bytes += serialize(output, infiniband.port_gid);\n    bytes += serialize(output, infiniband.ioc_guid_service_id);\n    bytes += serialize(output, infiniband.target_port_id);\n    bytes += serialize(output, infiniband.device_id);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::MSG::Vendor> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_msg_vendor *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::MSG::Vendor::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::MSG::Vendor::SUBTYPE)\n        return std::nullopt;\n\n    File_path::MSG::Vendor value{};\n    std::copy(std::begin(dp->guid), std::end(dp->guid), std::begin(value.guid));\n    {\n        static_assert(sizeof(decltype(value.data)::value_type) == sizeof(dp->data[0]));\n        auto length = static_cast<size_t>(static_cast<decltype(&dp->data[0])>(advance_bytes(data, data_size)) - &dp->data[0]);\n        value.data.resize(length);\n        memcpy(value.data.data(), dp->data, length * sizeof(dp->data[0]));\n    }\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::MSG::Vendor &vendor)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::MSG::Vendor::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::MSG::Vendor::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, vendor.guid);\n    bytes += serialize(output, vendor.data);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::MSG::Mac_address> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_msg_mac_address *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::MSG::Mac_address::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::MSG::Mac_address::SUBTYPE)\n        return std::nullopt;\n\n    File_path::MSG::Mac_address value{};\n    std::copy(std::begin(dp->address), std::end(dp->address), std::begin(value.address));\n    value.if_type = dp->if_type;\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::MSG::Mac_address &mac_address)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::MSG::Mac_address::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::MSG::Mac_address::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, mac_address.address);\n    bytes += serialize(output, mac_address.if_type);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::MSG::Ipv4> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_msg_ipv4 *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::MSG::Ipv4::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::MSG::Ipv4::SUBTYPE)\n        return std::nullopt;\n\n    File_path::MSG::Ipv4 value{};\n    std::copy(std::begin(dp->local_ip_address), std::end(dp->local_ip_address), std::begin(value.local_ip_address));\n    std::copy(std::begin(dp->remote_ip_address), std::end(dp->remote_ip_address), std::begin(value.remote_ip_address));\n    value.local_port = dp->local_port;\n    value.remote_port = dp->remote_port;\n    value.protocol = dp->protocol;\n    value.static_ip_address = dp->static_ip_address;\n    std::copy(std::begin(dp->gateway_ip_address), std::end(dp->gateway_ip_address), std::begin(value.gateway_ip_address));\n    std::copy(std::begin(dp->subnet_mask), std::end(dp->subnet_mask), std::begin(value.subnet_mask));\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::MSG::Ipv4 &ipv4)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::MSG::Ipv4::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::MSG::Ipv4::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, ipv4.local_ip_address);\n    bytes += serialize(output, ipv4.remote_ip_address);\n    bytes += serialize(output, ipv4.local_port);\n    bytes += serialize(output, ipv4.remote_port);\n    bytes += serialize(output, ipv4.protocol);\n    bytes += serialize(output, ipv4.static_ip_address);\n    bytes += serialize(output, ipv4.gateway_ip_address);\n    bytes += serialize(output, ipv4.subnet_mask);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::MSG::Ipv6> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_msg_ipv6 *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::MSG::Ipv6::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::MSG::Ipv6::SUBTYPE)\n        return std::nullopt;\n\n    File_path::MSG::Ipv6 value{};\n    std::copy(std::begin(dp->local_ip_address), std::end(dp->local_ip_address), std::begin(value.local_ip_address));\n    std::copy(std::begin(dp->remote_ip_address), std::end(dp->remote_ip_address), std::begin(value.remote_ip_address));\n    value.local_port = dp->local_port;\n    value.remote_port = dp->remote_port;\n    value.protocol = dp->protocol;\n    value.ip_address_origin = static_cast<File_path::MSG::Ipv6::IP_ADDRESS_ORIGIN>(dp->ip_address_origin);\n    value.prefix_length = dp->prefix_length;\n    std::copy(std::begin(dp->gateway_ip_address), std::end(dp->gateway_ip_address), std::begin(value.gateway_ip_address));\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::MSG::Ipv6 &ipv6)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::MSG::Ipv6::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::MSG::Ipv6::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, ipv6.local_ip_address);\n    bytes += serialize(output, ipv6.remote_ip_address);\n    bytes += serialize(output, ipv6.local_port);\n    bytes += serialize(output, ipv6.remote_port);\n    bytes += serialize(output, ipv6.protocol);\n    bytes += serialize(output, ipv6.ip_address_origin);\n    bytes += serialize(output, ipv6.prefix_length);\n    bytes += serialize(output, ipv6.gateway_ip_address);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::MSG::Uart> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_msg_uart *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::MSG::Uart::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::MSG::Uart::SUBTYPE)\n        return std::nullopt;\n\n    File_path::MSG::Uart value{};\n    value.reserved = dp->reserved;\n    value.baud_rate = dp->baud_rate;\n    value.data_bits = dp->data_bits;\n    value.parity = static_cast<File_path::MSG::Uart::PARITY>(dp->parity);\n    value.stop_bits = static_cast<File_path::MSG::Uart::STOP_BITS>(dp->stop_bits);\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::MSG::Uart &uart)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::MSG::Uart::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::MSG::Uart::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, uart.reserved);\n    bytes += serialize(output, uart.baud_rate);\n    bytes += serialize(output, uart.data_bits);\n    bytes += serialize(output, uart.parity);\n    bytes += serialize(output, uart.stop_bits);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::MSG::Usb_class> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_msg_usb_class *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::MSG::Usb_class::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::MSG::Usb_class::SUBTYPE)\n        return std::nullopt;\n\n    File_path::MSG::Usb_class value{};\n    value.vendor_id = dp->vendor_id;\n    value.product_id = dp->product_id;\n    value.device_class = dp->device_class;\n    value.device_subclass = dp->device_subclass;\n    value.device_protocol = dp->device_protocol;\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::MSG::Usb_class &usb_class)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::MSG::Usb_class::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::MSG::Usb_class::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, usb_class.vendor_id);\n    bytes += serialize(output, usb_class.product_id);\n    bytes += serialize(output, usb_class.device_class);\n    bytes += serialize(output, usb_class.device_subclass);\n    bytes += serialize(output, usb_class.device_protocol);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::MSG::Usb_wwid> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_msg_usb_wwid *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::MSG::Usb_wwid::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::MSG::Usb_wwid::SUBTYPE)\n        return std::nullopt;\n\n    File_path::MSG::Usb_wwid value{};\n    value.interface_number = dp->interface_number;\n    value.device_vendor_id = dp->device_vendor_id;\n    value.device_product_id = dp->device_product_id;\n    value.serial_number = reinterpret_cast<const decltype(value.serial_number)::value_type *>(dp->serial_number);\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::MSG::Usb_wwid &usb_wwid)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::MSG::Usb_wwid::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::MSG::Usb_wwid::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, usb_wwid.interface_number);\n    bytes += serialize(output, usb_wwid.device_vendor_id);\n    bytes += serialize(output, usb_wwid.device_product_id);\n    bytes += serialize(output, usb_wwid.serial_number);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::MSG::Device_logical_unit> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_msg_device_logical_unit *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::MSG::Device_logical_unit::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::MSG::Device_logical_unit::SUBTYPE)\n        return std::nullopt;\n\n    File_path::MSG::Device_logical_unit value{};\n    value.lun = dp->lun;\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::MSG::Device_logical_unit &device_logical_unit)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::MSG::Device_logical_unit::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::MSG::Device_logical_unit::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, device_logical_unit.lun);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::MSG::Sata> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_msg_sata *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::MSG::Sata::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::MSG::Sata::SUBTYPE)\n        return std::nullopt;\n\n    File_path::MSG::Sata value{};\n    value.hba_port_number = dp->hba_port_number;\n    value.port_multiplier_port_number = dp->port_multiplier_port_number;\n    value.lun = dp->lun;\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::MSG::Sata &sata)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::MSG::Sata::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::MSG::Sata::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, sata.hba_port_number);\n    bytes += serialize(output, sata.port_multiplier_port_number);\n    bytes += serialize(output, sata.lun);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::MSG::Iscsi> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_msg_iscsi *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::MSG::Iscsi::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::MSG::Iscsi::SUBTYPE)\n        return std::nullopt;\n\n    File_path::MSG::Iscsi value{};\n    value.protocol = dp->protocol;\n    value.options = dp->options;\n    value.lun = dp->lun;\n    value.target_portal_group = dp->target_portal_group;\n    value.target_name = reinterpret_cast<const decltype(value.target_name)::value_type *>(dp->target_name);\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::MSG::Iscsi &iscsi)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::MSG::Iscsi::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::MSG::Iscsi::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, iscsi.protocol);\n    bytes += serialize(output, iscsi.options);\n    bytes += serialize(output, iscsi.lun);\n    bytes += serialize(output, iscsi.target_portal_group);\n    bytes += serialize(output, iscsi.target_name);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::MSG::Vlan> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_msg_vlan *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::MSG::Vlan::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::MSG::Vlan::SUBTYPE)\n        return std::nullopt;\n\n    File_path::MSG::Vlan value{};\n    value.vlan_id = dp->vlan_id;\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::MSG::Vlan &vlan)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::MSG::Vlan::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::MSG::Vlan::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, vlan.vlan_id);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::MSG::Fibre_channel_ex> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_msg_fibre_channel_ex *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::MSG::Fibre_channel_ex::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::MSG::Fibre_channel_ex::SUBTYPE)\n        return std::nullopt;\n\n    File_path::MSG::Fibre_channel_ex value{};\n    value.reserved = dp->reserved;\n    value.world_wide_name = dp->world_wide_name;\n    value.lun = dp->lun;\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::MSG::Fibre_channel_ex &fibre_channel_ex)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::MSG::Fibre_channel_ex::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::MSG::Fibre_channel_ex::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, fibre_channel_ex.reserved);\n    bytes += serialize(output, fibre_channel_ex.world_wide_name);\n    bytes += serialize(output, fibre_channel_ex.lun);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::MSG::Sas_extended_messaging> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_msg_sas_extended_messaging *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::MSG::Sas_extended_messaging::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::MSG::Sas_extended_messaging::SUBTYPE)\n        return std::nullopt;\n\n    File_path::MSG::Sas_extended_messaging value{};\n    value.sas_address = dp->sas_address;\n    value.lun = dp->lun;\n    value.device_and_topology_info = dp->device_and_topology_info;\n    value.relative_target_port = dp->relative_target_port;\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::MSG::Sas_extended_messaging &sas_extended_messaging)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::MSG::Sas_extended_messaging::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::MSG::Sas_extended_messaging::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, sas_extended_messaging.sas_address);\n    bytes += serialize(output, sas_extended_messaging.lun);\n    bytes += serialize(output, sas_extended_messaging.device_and_topology_info);\n    bytes += serialize(output, sas_extended_messaging.relative_target_port);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::MSG::Nvm_express_ns> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_msg_nvm_express_ns *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::MSG::Nvm_express_ns::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::MSG::Nvm_express_ns::SUBTYPE)\n        return std::nullopt;\n\n    File_path::MSG::Nvm_express_ns value{};\n    value.namespace_identifier = dp->namespace_identifier;\n    value.ieee_extended_unique_identifier = dp->ieee_extended_unique_identifier;\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::MSG::Nvm_express_ns &nvm_express_ns)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::MSG::Nvm_express_ns::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::MSG::Nvm_express_ns::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, nvm_express_ns.namespace_identifier);\n    bytes += serialize(output, nvm_express_ns.ieee_extended_unique_identifier);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::MSG::Uri> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_msg_uri *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::MSG::Uri::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::MSG::Uri::SUBTYPE)\n        return std::nullopt;\n\n    File_path::MSG::Uri value{};\n    {\n        static_assert(sizeof(decltype(value.uri)::value_type) == sizeof(dp->uri[0]));\n        auto length = static_cast<size_t>(static_cast<decltype(&dp->uri[0])>(advance_bytes(data, data_size)) - &dp->uri[0]);\n        value.uri.resize(length);\n        memcpy(value.uri.data(), dp->uri, length * sizeof(dp->uri[0]));\n    }\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::MSG::Uri &uri)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::MSG::Uri::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::MSG::Uri::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, uri.uri);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::MSG::Ufs> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_msg_ufs *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::MSG::Ufs::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::MSG::Ufs::SUBTYPE)\n        return std::nullopt;\n\n    File_path::MSG::Ufs value{};\n    value.pun = dp->pun;\n    value.lun = dp->lun;\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::MSG::Ufs &ufs)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::MSG::Ufs::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::MSG::Ufs::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, ufs.pun);\n    bytes += serialize(output, ufs.lun);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::MSG::Sd> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_msg_sd *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::MSG::Sd::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::MSG::Sd::SUBTYPE)\n        return std::nullopt;\n\n    File_path::MSG::Sd value{};\n    value.slot_number = dp->slot_number;\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::MSG::Sd &sd)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::MSG::Sd::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::MSG::Sd::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, sd.slot_number);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::MSG::Bluetooth> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_msg_bluetooth *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::MSG::Bluetooth::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::MSG::Bluetooth::SUBTYPE)\n        return std::nullopt;\n\n    File_path::MSG::Bluetooth value{};\n    std::copy(std::begin(dp->device_address), std::end(dp->device_address), std::begin(value.device_address));\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::MSG::Bluetooth &bluetooth)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::MSG::Bluetooth::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::MSG::Bluetooth::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, bluetooth.device_address);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::MSG::Wi_fi> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_msg_wi_fi *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::MSG::Wi_fi::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::MSG::Wi_fi::SUBTYPE)\n        return std::nullopt;\n\n    File_path::MSG::Wi_fi value{};\n    value.ssid = reinterpret_cast<const decltype(value.ssid)::value_type *>(dp->ssid);\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::MSG::Wi_fi &wi_fi)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::MSG::Wi_fi::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::MSG::Wi_fi::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, wi_fi.ssid);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::MSG::Emmc> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_msg_emmc *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::MSG::Emmc::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::MSG::Emmc::SUBTYPE)\n        return std::nullopt;\n\n    File_path::MSG::Emmc value{};\n    value.slot_number = dp->slot_number;\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::MSG::Emmc &emmc)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::MSG::Emmc::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::MSG::Emmc::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, emmc.slot_number);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::MSG::Bluetoothle> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_msg_bluetoothle *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::MSG::Bluetoothle::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::MSG::Bluetoothle::SUBTYPE)\n        return std::nullopt;\n\n    File_path::MSG::Bluetoothle value{};\n    std::copy(std::begin(dp->device_address), std::end(dp->device_address), std::begin(value.device_address));\n    value.address_type = static_cast<File_path::MSG::Bluetoothle::ADDRESS_TYPE>(dp->address_type);\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::MSG::Bluetoothle &bluetoothle)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::MSG::Bluetoothle::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::MSG::Bluetoothle::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, bluetoothle.device_address);\n    bytes += serialize(output, bluetoothle.address_type);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::MSG::Dns> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_msg_dns *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::MSG::Dns::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::MSG::Dns::SUBTYPE)\n        return std::nullopt;\n\n    File_path::MSG::Dns value{};\n    value.ipv6 = dp->ipv6;\n    {\n        static_assert(sizeof(decltype(value.data)::value_type) == sizeof(dp->data[0]));\n        auto length = static_cast<size_t>(static_cast<decltype(&dp->data[0])>(advance_bytes(data, data_size)) - &dp->data[0]);\n        value.data.resize(length);\n        memcpy(value.data.data(), dp->data, length * sizeof(dp->data[0]));\n    }\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::MSG::Dns &dns)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::MSG::Dns::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::MSG::Dns::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, dns.ipv6);\n    bytes += serialize(output, dns.data);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::MSG::Nvdimm_ns> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_msg_nvdimm_ns *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::MSG::Nvdimm_ns::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::MSG::Nvdimm_ns::SUBTYPE)\n        return std::nullopt;\n\n    File_path::MSG::Nvdimm_ns value{};\n    std::copy(std::begin(dp->uuid), std::end(dp->uuid), std::begin(value.uuid));\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::MSG::Nvdimm_ns &nvdimm_ns)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::MSG::Nvdimm_ns::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::MSG::Nvdimm_ns::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, nvdimm_ns.uuid);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::MSG::Rest_service> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_msg_rest_service *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::MSG::Rest_service::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::MSG::Rest_service::SUBTYPE)\n        return std::nullopt;\n\n    File_path::MSG::Rest_service value{};\n    value.rest_service = static_cast<File_path::MSG::Rest_service::REST_SERVICE>(dp->rest_service);\n    value.access_mode = static_cast<File_path::MSG::Rest_service::ACCESS_MODE>(dp->access_mode);\n    if(static_cast<File_path::MSG::Rest_service::REST_SERVICE>(dp->rest_service) == File_path::MSG::Rest_service::REST_SERVICE::VENDOR && data_size > 6)\n    {\n        std::copy(std::begin(dp->guid), std::end(dp->guid), std::begin(value.guid));\n        static_assert(sizeof(decltype(value.data)::value_type) == sizeof(dp->data[0]));\n        auto length = static_cast<size_t>(static_cast<decltype(&dp->data[0])>(advance_bytes(data, data_size)) - &dp->data[0]);\n        value.data.resize(length);\n        memcpy(value.data.data(), dp->data, length * sizeof(dp->data[0]));\n    }\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::MSG::Rest_service &rest_service)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::MSG::Rest_service::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::MSG::Rest_service::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, rest_service.rest_service);\n    bytes += serialize(output, rest_service.access_mode);\n    if(rest_service.rest_service == File_path::MSG::Rest_service::REST_SERVICE::VENDOR)\n    {\n        bytes += serialize(output, rest_service.guid);\n        bytes += serialize(output, rest_service.data);\n    }\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::MSG::Nvme_of_ns> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_msg_nvme_of_ns *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::MSG::Nvme_of_ns::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::MSG::Nvme_of_ns::SUBTYPE)\n        return std::nullopt;\n\n    File_path::MSG::Nvme_of_ns value{};\n    value.nidt = dp->nidt;\n    std::copy(std::begin(dp->nid), std::end(dp->nid), std::begin(value.nid));\n    value.subsystem_nqn = reinterpret_cast<const decltype(value.subsystem_nqn)::value_type *>(dp->subsystem_nqn);\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::MSG::Nvme_of_ns &nvme_of_ns)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::MSG::Nvme_of_ns::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::MSG::Nvme_of_ns::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, nvme_of_ns.nidt);\n    bytes += serialize(output, nvme_of_ns.nid);\n    bytes += serialize(output, nvme_of_ns.subsystem_nqn);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\n// Media\n\ntemplate <>\ninline std::optional<File_path::MEDIA::Hd> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_media_hd *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::MEDIA::Hd::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::MEDIA::Hd::SUBTYPE)\n        return std::nullopt;\n\n    File_path::MEDIA::Hd value{};\n    value.partition_number = dp->partition_number;\n    value.partition_start = dp->partition_start;\n    value.partition_size = dp->partition_size;\n    std::copy(std::begin(dp->partition_signature), std::end(dp->partition_signature), std::begin(value.partition_signature));\n    value.partition_format = static_cast<File_path::MEDIA::Hd::PARTITION_FORMAT>(dp->partition_format);\n    value.signature_type = static_cast<File_path::MEDIA::Hd::SIGNATURE_TYPE>(dp->signature_type);\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::MEDIA::Hd &hd)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::MEDIA::Hd::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::MEDIA::Hd::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, hd.partition_number);\n    bytes += serialize(output, hd.partition_start);\n    bytes += serialize(output, hd.partition_size);\n    bytes += serialize(output, hd.partition_signature);\n    bytes += serialize(output, hd.partition_format);\n    bytes += serialize(output, hd.signature_type);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::MEDIA::Cd_rom> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_media_cd_rom *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::MEDIA::Cd_rom::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::MEDIA::Cd_rom::SUBTYPE)\n        return std::nullopt;\n\n    File_path::MEDIA::Cd_rom value{};\n    value.boot_entry = dp->boot_entry;\n    value.partition_start = dp->partition_start;\n    value.partition_size = dp->partition_size;\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::MEDIA::Cd_rom &cd_rom)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::MEDIA::Cd_rom::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::MEDIA::Cd_rom::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, cd_rom.boot_entry);\n    bytes += serialize(output, cd_rom.partition_start);\n    bytes += serialize(output, cd_rom.partition_size);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::MEDIA::Vendor> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_media_vendor *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::MEDIA::Vendor::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::MEDIA::Vendor::SUBTYPE)\n        return std::nullopt;\n\n    File_path::MEDIA::Vendor value{};\n    std::copy(std::begin(dp->guid), std::end(dp->guid), std::begin(value.guid));\n    {\n        static_assert(sizeof(decltype(value.data)::value_type) == sizeof(dp->data[0]));\n        auto length = static_cast<size_t>(static_cast<decltype(&dp->data[0])>(advance_bytes(data, data_size)) - &dp->data[0]);\n        value.data.resize(length);\n        memcpy(value.data.data(), dp->data, length * sizeof(dp->data[0]));\n    }\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::MEDIA::Vendor &vendor)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::MEDIA::Vendor::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::MEDIA::Vendor::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, vendor.guid);\n    bytes += serialize(output, vendor.data);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::MEDIA::File_path> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_media_file_path *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::MEDIA::File_path::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::MEDIA::File_path::SUBTYPE)\n        return std::nullopt;\n\n    File_path::MEDIA::File_path value{};\n    value.path_name = reinterpret_cast<const decltype(value.path_name)::value_type *>(dp->path_name);\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::MEDIA::File_path &file_path)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::MEDIA::File_path::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::MEDIA::File_path::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, file_path.path_name);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::MEDIA::Protocol> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_media_protocol *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::MEDIA::Protocol::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::MEDIA::Protocol::SUBTYPE)\n        return std::nullopt;\n\n    File_path::MEDIA::Protocol value{};\n    std::copy(std::begin(dp->guid), std::end(dp->guid), std::begin(value.guid));\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::MEDIA::Protocol &protocol)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::MEDIA::Protocol::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::MEDIA::Protocol::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, protocol.guid);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::MEDIA::Firmware_file> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_media_firmware_file *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::MEDIA::Firmware_file::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::MEDIA::Firmware_file::SUBTYPE)\n        return std::nullopt;\n\n    File_path::MEDIA::Firmware_file value{};\n    std::copy(std::begin(dp->name), std::end(dp->name), std::begin(value.name));\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::MEDIA::Firmware_file &firmware_file)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::MEDIA::Firmware_file::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::MEDIA::Firmware_file::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, firmware_file.name);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::MEDIA::Firmware_volume> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_media_firmware_volume *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::MEDIA::Firmware_volume::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::MEDIA::Firmware_volume::SUBTYPE)\n        return std::nullopt;\n\n    File_path::MEDIA::Firmware_volume value{};\n    std::copy(std::begin(dp->name), std::end(dp->name), std::begin(value.name));\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::MEDIA::Firmware_volume &firmware_volume)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::MEDIA::Firmware_volume::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::MEDIA::Firmware_volume::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, firmware_volume.name);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::MEDIA::Relative_offset_range> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_media_relative_offset_range *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::MEDIA::Relative_offset_range::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::MEDIA::Relative_offset_range::SUBTYPE)\n        return std::nullopt;\n\n    File_path::MEDIA::Relative_offset_range value{};\n    value.reserved = dp->reserved;\n    value.starting_offset = dp->starting_offset;\n    value.ending_offset = dp->ending_offset;\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::MEDIA::Relative_offset_range &relative_offset_range)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::MEDIA::Relative_offset_range::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::MEDIA::Relative_offset_range::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, relative_offset_range.reserved);\n    bytes += serialize(output, relative_offset_range.starting_offset);\n    bytes += serialize(output, relative_offset_range.ending_offset);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::MEDIA::Ram_disk> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_media_ram_disk *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::MEDIA::Ram_disk::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::MEDIA::Ram_disk::SUBTYPE)\n        return std::nullopt;\n\n    File_path::MEDIA::Ram_disk value{};\n    value.starting_address = dp->starting_address;\n    value.ending_address = dp->ending_address;\n    std::copy(std::begin(dp->guid), std::end(dp->guid), std::begin(value.guid));\n    value.disk_instance = dp->disk_instance;\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::MEDIA::Ram_disk &ram_disk)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::MEDIA::Ram_disk::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::MEDIA::Ram_disk::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, ram_disk.starting_address);\n    bytes += serialize(output, ram_disk.ending_address);\n    bytes += serialize(output, ram_disk.guid);\n    bytes += serialize(output, ram_disk.disk_instance);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\n// BIOS\n\ntemplate <>\ninline std::optional<File_path::BIOS::Boot_specification> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_bios_boot_specification *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::BIOS::Boot_specification::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::BIOS::Boot_specification::SUBTYPE)\n        return std::nullopt;\n\n    File_path::BIOS::Boot_specification value{};\n    value.device_type = dp->device_type;\n    value.status_flag = dp->status_flag;\n    value.description = reinterpret_cast<const decltype(value.description)::value_type *>(dp->description);\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::BIOS::Boot_specification &boot_specification)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::BIOS::Boot_specification::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::BIOS::Boot_specification::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, boot_specification.device_type);\n    bytes += serialize(output, boot_specification.status_flag);\n    bytes += serialize(output, boot_specification.description);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\n// End\n\ntemplate <>\ninline std::optional<File_path::END::Instance> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_end_instance *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::END::Instance::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::END::Instance::SUBTYPE)\n        return std::nullopt;\n\n    File_path::END::Instance value{};\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::END::Instance &)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::END::Instance::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::END::Instance::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::END::Entire> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_end_entire *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::END::Entire::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::END::Entire::SUBTYPE)\n        return std::nullopt;\n\n    File_path::END::Entire value{};\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::END::Entire &)\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::END::Entire::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::END::Entire::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::Unknown> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_header *>(data);\n    if(dp->length != data_size)\n        return std::nullopt;\n\n    File_path::Unknown value{};\n    value.TYPE = dp->type;\n    value.SUBTYPE = dp->subtype;\n\n    size_t data_length = data_size - sizeof(*dp);\n    value.data.resize(data_length);\n    memcpy(value.data.data(), static_cast<const uint8_t *>(advance_bytes(data, sizeof(const efidp_header))), data_length);\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::Unknown &unknown)\n{\n    size_t bytes = 0;\n    bytes += serialize(output, unknown.TYPE);\n    bytes += serialize(output, unknown.SUBTYPE);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, unknown.data);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::ANY> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const_efidp>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n#define TYPE_SUBTYPE(type, subtype) (((type) << 8) | (subtype))\n#define casefp(Type)                                                    \\\n    case TYPE_SUBTYPE(File_path::Type::TYPE, File_path::Type::SUBTYPE): \\\n        return deserialize<File_path::Type>(dp, data_size)\n\n    switch(TYPE_SUBTYPE(dp->header.type, dp->header.subtype))\n    {\n        casefp(HW::Pci);\n        casefp(HW::Pccard);\n        casefp(HW::Memory_mapped);\n        casefp(HW::Vendor);\n        casefp(HW::Controller);\n        casefp(HW::Bmc);\n        casefp(ACPI::Acpi);\n        casefp(ACPI::Expanded);\n        casefp(ACPI::Adr);\n        casefp(ACPI::Nvdimm);\n        casefp(MSG::Atapi);\n        casefp(MSG::Scsi);\n        casefp(MSG::Fibre_channel);\n        casefp(MSG::Firewire);\n        casefp(MSG::Usb);\n        casefp(MSG::I2o);\n        casefp(MSG::Infiniband);\n        casefp(MSG::Vendor);\n        casefp(MSG::Mac_address);\n        casefp(MSG::Ipv4);\n        casefp(MSG::Ipv6);\n        casefp(MSG::Uart);\n        casefp(MSG::Usb_class);\n        casefp(MSG::Usb_wwid);\n        casefp(MSG::Device_logical_unit);\n        casefp(MSG::Sata);\n        casefp(MSG::Iscsi);\n        casefp(MSG::Vlan);\n        casefp(MSG::Fibre_channel_ex);\n        casefp(MSG::Sas_extended_messaging);\n        casefp(MSG::Nvm_express_ns);\n        casefp(MSG::Uri);\n        casefp(MSG::Ufs);\n        casefp(MSG::Sd);\n        casefp(MSG::Bluetooth);\n        casefp(MSG::Wi_fi);\n        casefp(MSG::Emmc);\n        casefp(MSG::Bluetoothle);\n        casefp(MSG::Dns);\n        casefp(MSG::Nvdimm_ns);\n        casefp(MSG::Rest_service);\n        casefp(MSG::Nvme_of_ns);\n        casefp(MEDIA::Hd);\n        casefp(MEDIA::Cd_rom);\n        casefp(MEDIA::Vendor);\n        casefp(MEDIA::File_path);\n        casefp(MEDIA::Protocol);\n        casefp(MEDIA::Firmware_file);\n        casefp(MEDIA::Firmware_volume);\n        casefp(MEDIA::Relative_offset_range);\n        casefp(MEDIA::Ram_disk);\n        casefp(BIOS::Boot_specification);\n        casefp(END::Instance);\n        casefp(END::Entire);\n\n    default:\n        return deserialize<File_path::Unknown>(dp, data_size);\n    }\n\n#undef casefp\n#undef TYPE_SUBTYPE\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::ANY &file_path)\n{\n    return std::visit([&output](const auto &dp) -> size_t\n        { return serialize(output, dp); },\n        file_path);\n}\n\ntemplate <>\ninline std::optional<Load_option> deserialize(const void *data, size_t data_size)\n{\n    Load_option value{};\n    auto ssize = static_cast<ssize_t>(data_size);\n    auto load_option = const_cast<efi_load_option *>(static_cast<const efi_load_option *>(data));\n\n#if defined(__clang__)\n#pragma clang diagnostic push\n#pragma clang diagnostic ignored \"-Wunsafe-buffer-usage\"\n#endif\n    for(size_t d = 0; load_option->description[d]; ++d)\n        value.description.push_back(load_option->description[d]);\n#if defined(__clang__)\n#pragma clang diagnostic pop\n#endif\n\n    uint16_t device_path_size = efi_loadopt_pathlen(load_option, ssize);\n    const_efidp device_path = efi_loadopt_path(load_option, ssize);\n\n    auto file_paths = deserialize_list_ex<File_path::ANY>(\n        device_path, device_path_size,\n        [](const void *ptr)\n        {\n            auto size = efidp_node_size(static_cast<const_efidp>(ptr));\n            return static_cast<size_t>(size);\n        },\n        [](const void *ptr, size_t bytes_left) -> const void *\n        {\n            auto dp = static_cast<const_efidp>(ptr);\n            ssize_t size = efidp_node_size(dp);\n            if(size < 0 || static_cast<size_t>(size) > bytes_left)\n                return nullptr;\n\n            return advance_bytes(ptr, static_cast<size_t>(size));\n        });\n\n    if(!file_paths || file_paths->empty())\n        return std::nullopt;\n\n    value.device_path = *file_paths;\n\n    uint8_t *optional_data = nullptr;\n    size_t optional_data_size = 0;\n    if(int ret = efi_loadopt_optional_data(load_option, data_size, &optional_data, &optional_data_size); ret >= 0)\n    {\n        auto opt_data = deserialize<Raw_data>(optional_data, optional_data_size);\n        if(!opt_data)\n            return std::nullopt;\n\n        value.optional_data = *opt_data;\n    }\n\n    value.attributes = static_cast<Load_option_attribute>(load_option->attributes);\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const Load_option &load_option)\n{\n    size_t size = 0;\n    size += serialize(output, load_option.attributes);\n    auto file_path_list_length_pos = output.size();\n    uint16_t file_path_list_size = 0;\n    size += serialize(output, file_path_list_size);\n    size += serialize(output, load_option.description);\n\n    file_path_list_size = static_cast<uint16_t>(serialize_list(output, load_option.device_path));\n    // Always set END_ENTIRE tag at the end of device path\n    if(!load_option.device_path.size() || std::visit([](const auto &file_path)\n                                              { return file_path.SUBTYPE; }, load_option.device_path.back())\n            != File_path::END::Entire::SUBTYPE)\n    {\n        File_path::END::Entire end{};\n        file_path_list_size = static_cast<uint16_t>(file_path_list_size + static_cast<uint16_t>(serialize(output, end))); // Older GCC complains about conversion when using += `conversion from ‘int’ to ‘uint16_t’ {aka ‘short unsigned int’} may change value`\n    }\n    size += file_path_list_size;\n    memcpy(&output[file_path_list_length_pos], &file_path_list_size, sizeof(file_path_list_size));\n\n    size += serialize(output, load_option.optional_data);\n    return size;\n}\n\ntemplate <>\ninline std::optional<Key_option> deserialize(const void *data, size_t data_size)\n{\n    Key_option value{};\n    auto key_option = static_cast<const efi_key_option *>(data);\n\n    value.boot_option = key_option->boot_option;\n    value.boot_option_crc = key_option->boot_option_crc;\n    value.key_data = key_option->key_data;\n\n    auto keys_size = key_option->key_data.options.input_key_count * sizeof(efi_input_key);\n    if(keys_size)\n    {\n        auto keys = deserialize_list<efi_input_key>(key_option->keys, keys_size);\n        if(!keys || keys->empty())\n            return std::nullopt;\n\n        value.keys = *keys;\n    }\n\n    if(keys_size != data_size - offsetof(efi_key_option, keys))\n    {\n        auto vendor_data = deserialize<Raw_data>(advance_bytes(key_option->keys, keys_size), data_size - offsetof(efi_key_option, keys) - keys_size);\n        if(!vendor_data)\n            return std::nullopt;\n\n        value.vendor_data = *vendor_data;\n    }\n\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const Key_option &key_option)\n{\n    size_t size = 0;\n    size += serialize(output, key_option.key_data);\n    size += serialize(output, key_option.boot_option_crc);\n    size += serialize(output, key_option.boot_option);\n    size += serialize_list(output, key_option.keys);\n    size += serialize(output, key_option.vendor_data);\n    return size;\n}\n\nextern Progress_fn _get_variables_progress_fn;\n\ntemplate <class Filter_fn>\ninline std::optional<std::unordered_map<tstring, efi_guid_t>> get_variables(const Filter_fn &filter_fn, const Progress_fn &progress_fn)\n{\n    std::unordered_map<tstring, efi_guid_t> variables;\n    efi_guid_t *guid = nullptr;\n    TCHAR *name = nullptr;\n    _get_variables_progress_fn = progress_fn;\n    efi_set_get_next_variable_name_progress_cb([](size_t step, size_t total) noexcept\n        { try { if(_get_variables_progress_fn)_get_variables_progress_fn(step, total); } catch (...) {/* ignore */} });\n\n    int ret = 0;\n    while((ret = efi_get_next_variable_name(&guid, &name)) > 0)\n    {\n        if(!filter_fn(*guid, name))\n            continue;\n\n        memcpy(&variables[name], guid, sizeof(efi_guid_t));\n    }\n\n    efi_set_get_next_variable_name_progress_cb(nullptr);\n    _get_variables_progress_fn = nullptr;\n\n    if(ret < 0)\n        return std::nullopt;\n\n    return {variables};\n}\n\ntemplate <class Filter_fn>\ninline std::optional<std::unordered_map<tstring, efi_guid_t>> get_variables(Filter_fn filter_fn)\n{\n    return get_variables(filter_fn, [](size_t, size_t) { /* noprogress */ });\n}\n\ninline std::optional<std::unordered_map<tstring, efi_guid_t>> get_variables()\n{\n    return get_variables(\n        [](const efi_guid_t &, const tstring_view)\n        { return true; },\n        [](size_t, size_t) { /* noprogress */ });\n}\n\ntemplate <class Type>\ninline std::optional<Variable<Type>> get_variable(const efi_guid_t &guid, const tstring &name)\n{\n    uint8_t *data = nullptr;\n    size_t data_size = 0;\n    uint32_t attributes = 0;\n    if(int ret = efi_get_variable(guid, name.c_str(), &data, &data_size, &attributes); ret < 0)\n        return std::nullopt;\n\n    auto value = deserialize<Type>(data, data_size);\n    if(!value)\n        return std::nullopt;\n\n    return {{*value, attributes}};\n}\n\ntemplate <class Type>\ninline std::optional<Variable<std::vector<Type>>> get_list_variable(const efi_guid_t &guid, const tstring &name)\n{\n    uint8_t *data = nullptr;\n    size_t data_size = 0;\n    uint32_t attributes = 0;\n    if(int ret = efi_get_variable(guid, name.c_str(), &data, &data_size, &attributes); ret < 0)\n        return std::nullopt;\n\n    auto value = deserialize_list<Type>(data, data_size);\n    if(!value)\n        return std::nullopt;\n\n    return {{*value, attributes}};\n}\n\ntemplate <class Type, class Size_fn, class Advance_fn>\ninline std::optional<Variable<std::vector<Type>>> get_list_variable_ex(const efi_guid_t &guid, const tstring &name, const Size_fn &get_element_size, const Advance_fn &get_next_element)\n{\n    uint8_t *data = nullptr;\n    size_t data_size = 0;\n    uint32_t attributes = 0;\n    if(int ret = efi_get_variable(guid, name.c_str(), &data, &data_size, &attributes); ret < 0)\n        return std::nullopt;\n\n    auto value = deserialize_list_ex<Type>(data, data_size, get_element_size, get_next_element);\n    if(!value)\n        return std::nullopt;\n\n    return {{*value, attributes}};\n}\n\ntemplate <class Type>\ninline bool set_variable_ex(const efi_guid_t &guid, const tstring &name, const Variable<Type> &variable, mode_t mode, uint32_t &crc)\n{\n    auto [value, attributes] = variable;\n    Raw_data bytes;\n    size_t size = serialize(bytes, value);\n    crc = static_cast<uint32_t>(crc32(0, bytes.data(), static_cast<uInt>(bytes.size())));\n    // Skip overwriting with exactly the same value\n    if(const auto current = EFIBoot::get_variable<Raw_data>(guid, name); current)\n    {\n        const auto &[current_bytes, current_attributes] = *current;\n        if(current_attributes == attributes && current_bytes == bytes)\n            return true;\n    }\n\n    // Don't care about the error from get_variable\n    efi_error_clear();\n    return efi_set_variable(guid, name.c_str(), bytes.data(), size, attributes, mode) == 0;\n}\n\ntemplate <class Type>\ninline bool set_variable(const efi_guid_t &guid, const tstring &name, const Variable<Type> &variable, mode_t mode)\n{\n    uint32_t crc = 0;\n    return set_variable_ex<Type>(guid, name, variable, mode, crc);\n}\n\ntemplate <class Type>\ninline bool set_list_variable(const efi_guid_t &guid, const tstring &name, const Variable<std::vector<Type>> &variable, mode_t mode)\n{\n    auto [value, attributes] = variable;\n    Raw_data bytes;\n    size_t size = serialize_list(bytes, value);\n    // Skip overwriting with exactly the same value\n    if(const auto current = EFIBoot::get_variable<Raw_data>(guid, name); current)\n    {\n        const auto &[current_bytes, current_attributes] = *current;\n        if(current_attributes == attributes && current_bytes == bytes)\n            return true;\n    }\n\n    // Don't care about the error from get_variable\n    efi_error_clear();\n    return efi_set_variable(guid, name.c_str(), bytes.data(), size, attributes, mode) == 0;\n}\n\ninline bool del_variable(const efi_guid_t &guid, const tstring &name)\n{\n    return efi_del_variable(guid, name.c_str()) == 0;\n}\n\ninline tstring get_error_trace()\n{\n    tstring output = _T(\"Error trace:\\n\");\n    unsigned int i = 0;\n    while(true)\n    {\n        TCHAR *filename = nullptr;\n        TCHAR *function = nullptr;\n        int line = 0;\n        TCHAR *message = nullptr;\n        int error = 0;\n        const int ERROR_STR_BUFFER_SIZE = 1024;\n        TCHAR error_str[ERROR_STR_BUFFER_SIZE] = {};\n\n        int rc = efi_error_get(i, &filename, &function, &line, &message, &error);\n        if(rc < 0)\n            output += _T(\"error fetching trace value\\n\");\n\n        if(rc <= 0)\n            break;\n\n        ++i;\n        if(_tcserror_s(error_str, ERROR_STR_BUFFER_SIZE - 1, error) != 0)\n            output += _T(\"error translating error code to string\\n\");\n\n        if(filename)\n            output += filename;\n\n        if(line >= 0)\n        {\n            output += _T(\":\");\n            output += to_tstring(line);\n        }\n\n        if(function)\n        {\n            output += _T(\" \");\n            output += function;\n            output += _T(\"()\");\n        }\n\n        output += _T(\": \\n    \");\n        output += error_str;\n        output += _T(\"[\");\n        output += to_tstring(error);\n        output += _T(\"]: \");\n        if(message)\n            output += message;\n\n        output += _T(\"\\n\");\n    }\n\n    if(i == 0)\n        output += _T(\"no errors?\");\n\n    return output;\n}\n\ninline void error_clear()\n{\n    efi_error_clear();\n}\n\n} // namespace EFIBoot\n"
  },
  {
    "path": "include/efiboot.h.j2",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#pragma once\n\n#include <array>\n#include <functional>\n#include <optional>\n#include <string>\n#include <string_view>\n#include <unordered_map>\n#include <variant>\n#include <vector>\n#include <zlib.h>\n\nnamespace EFIBoot\n{\n\nextern \"C\"\n{\n#include \"efivar-lite/device-paths.h\"\n#include \"efivar-lite/efivar-lite.h\"\n#include \"efivar-lite/key-option.h\"\n#include \"efivar-lite/load-option.h\"\n}\n\ninline bool operator==(const efi_guid_t &first, const efi_guid_t &second)\n{\n    return efi_guid_cmp(&first, &second) == 0;\n}\n\ninline bool operator!=(const efi_guid_t &first, const efi_guid_t &second)\n{\n    return efi_guid_cmp(&first, &second) != 0;\n}\n\nusing Raw_data = std::vector<uint8_t>;\n\ntemplate <class Type = Raw_data>\nstd::optional<Type> deserialize(const void *data, size_t data_size);\n\nnamespace File_path\n{\n\n{% for category in device_paths.values() %}\n/*\n   {{ category.name }}\n   {{ category.description }}\n*/\nnamespace {{ category.slug.upper() }}\n{\n\n{% for node in category.nodes %}\n/*\n   {{ node.name }}\n   {{ node.description }}\n*/\nstruct {{ node.slug.capitalize() }}\n{\n    {% for field in node.fields if field.type == \"enum\" %}\n    enum class {{ field.slug.upper() }} : uint{{ field.size*8 }}_t\n    {\n        {% for enum in field.enum %}\n        {{ enum.slug.upper() }} = {{ \"0x%0x\" | format(enum.value) }},\n        {% endfor %}\n    };\n\n    {% endfor %}\n    static const uint8_t TYPE = EFIDP_TYPE_{{ category.slug.upper() }};\n    static const uint8_t SUBTYPE = EFIDP_{{ category.slug.upper() }}_{{ node.slug.upper() }};\n\n    {% for field in node.fields %}\n    {%- if field.type in (\"guid\", \"ip4\", \"ip6\", \"mac\") %}\n    std::array<uint8_t, {{ field.size }}>\n    {%- elif field.type == \"wstring\" %}\n    std::u16string\n    {%- elif field.type == \"string\" %}\n    std::string\n    {%- elif field.type in (\"raw_data\", \"uri\") %}\n    Raw_data\n    {%- elif field.type in (\"int\", \"hex\") %}\n    uint{{ field.size * 8 }}_t\n    {%- elif field.type == \"enum\" %}\n    {{ field.slug.upper() }}\n    {%- else %}\n    {{ field.type }}\n    {%- endif %} {{ field.slug }} = {};\n    {% endfor %}\n};\n\n{% endfor %}\n} // namespace {{ category.slug.upper() }}\n\n{% endfor %}\nstruct Unknown\n{\n    Raw_data data = {};\n    uint8_t TYPE = {};\n    uint8_t SUBTYPE = {};\n};\n\nusing ANY = std::variant<\n{% for category in device_paths.values() %}{% for node in category.nodes %}\n    {{ category.slug.upper() }}::{{ node.slug.capitalize() }},\n{% endfor %}{% endfor %}\n    Unknown>;\n\n} // namespace File_path\n\nenum class Load_option_attribute : uint32_t\n{\n    EMPTY = 0x00000000,\n\n    ACTIVE = 0x00000001,\n    FORCE_RECONNECT = 0x00000002,\n    HIDDEN = 0x00000008,\n\n    CATEGORY_MASK = 0x00001F00,\n    CATEGORY_BOOT = 0x00000000,\n    CATEGORY_APP = 0x00000100,\n};\n\ninline Load_option_attribute operator|(Load_option_attribute a, Load_option_attribute b)\n{\n    return static_cast<Load_option_attribute>(static_cast<std::underlying_type_t<Load_option_attribute>>(a) | static_cast<std::underlying_type_t<Load_option_attribute>>(b));\n}\n\ninline Load_option_attribute operator&(Load_option_attribute a, Load_option_attribute b)\n{\n    return static_cast<Load_option_attribute>(static_cast<std::underlying_type_t<Load_option_attribute>>(a) & static_cast<std::underlying_type_t<Load_option_attribute>>(b));\n}\n\nstruct Load_option\n{\n    std::u16string description = u\"\";\n    std::vector<File_path::ANY> device_path = {};\n    Raw_data optional_data = {};\n    Load_option_attribute attributes = Load_option_attribute::EMPTY;\n};\n\nstruct Key_option\n{\n    efi_boot_key_data key_data = {};\n    uint16_t boot_option = 0u;\n    uint32_t boot_option_crc = 9u;\n    std::vector<efi_input_key> keys = {};\n    Raw_data vendor_data = {};\n};\n\nusing Progress_fn = std::function<void(size_t, size_t)>;\n\ntemplate <class Type = Raw_data>\nusing Variable = std::tuple<Type, uint32_t>;\n\nstd::optional<tstring> init();\n\ntemplate <class Type = Raw_data>\nstd::optional<std::vector<Type>> deserialize_list(const void *data, size_t data_size);\n\ntemplate <class Type = Raw_data, class Size_fn, class Advance_fn>\nstd::optional<std::vector<Type>> deserialize_list_ex(const void *data, size_t data_size, const Size_fn &get_element_size, const Advance_fn &get_next_element);\n\ntemplate <class Type = Raw_data>\nsize_t serialize(Raw_data &output, const Type &value);\n\ntemplate <class Type = Raw_data>\nsize_t serialize_list(Raw_data &output, const std::vector<Type> &value);\n\ntemplate <class Filter_fn>\nstd::optional<std::unordered_map<tstring, efi_guid_t>> get_variables(const Filter_fn &filter, const Progress_fn &progress);\n\ntemplate <class Filter_fn>\nstd::optional<std::unordered_map<tstring, efi_guid_t>> get_variables(const Filter_fn &filter);\nstd::optional<std::unordered_map<tstring, efi_guid_t>> get_variables();\n\ntemplate <class Type = Raw_data>\nstd::optional<Variable<Type>> get_variable(const efi_guid_t &guid, const tstring &name);\n\ntemplate <class Type = Raw_data>\nstd::optional<Variable<std::vector<Type>>> get_list_variable(const efi_guid_t &guid, const tstring &name);\n\ntemplate <class Type = Raw_data, class Size_fn, class Advance_fn>\nstd::optional<Variable<std::vector<Type>>> get_list_variable_ex(const efi_guid_t &guid, const tstring &name, const Size_fn &get_element_size, const Advance_fn &get_next_element);\n\ntemplate <class Type = Raw_data>\nbool set_variable_ex(const efi_guid_t &guid, const tstring &name, const Variable<Type> &variable, mode_t mode, uint32_t &crc);\n\ntemplate <class Type = Raw_data>\nbool set_variable(const efi_guid_t &guid, const tstring &name, const Variable<Type> &variable, mode_t mode);\n\ntemplate <class Type = Raw_data>\nbool set_list_variable(const efi_guid_t &guid, const tstring &name, const Variable<std::vector<Type>> &variable, mode_t mode);\n\ninline std::optional<tstring> init()\n{\n    if(!efi_variables_supported())\n        return {_T(\"UEFI variables not supported on this machine.\")};\n\n    return std::nullopt;\n}\n\ntemplate <class Type>\ninline std::optional<Type> deserialize(const void *data, size_t data_size)\n{\n    if(data_size != sizeof(Type))\n        return std::nullopt;\n\n    return {*static_cast<const Type *>(data)};\n}\n\ntemplate <class Type>\ninline size_t serialize(Raw_data &output, const Type &value)\n{\n    size_t pos = output.size();\n    output.resize(pos + sizeof(value));\n    memcpy(&output[pos], &value, sizeof(value));\n    return sizeof(value);\n}\n\ntemplate <>\ninline std::optional<Raw_data> deserialize<Raw_data>(const void *data, size_t data_size)\n{\n    return {Raw_data{static_cast<const uint8_t *>(data), static_cast<const uint8_t *>(advance_bytes(data, data_size))}};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const Raw_data &data)\n{\n    output.insert(std::end(output), std::begin(data), std::end(data));\n    return data.size();\n}\n\ntemplate <>\ninline std::optional<std::string> deserialize<std::string>(const void *data, size_t data_size)\n{\n    if(data_size % sizeof(std::string::value_type))\n        return std::nullopt;\n\n    return {std::string{static_cast<const std::string::value_type *>(data), data_size / sizeof(std::string::value_type)}};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const std::string &value)\n{\n    size_t bytes = (value.size() + 1) * sizeof(std::string::value_type);\n    size_t pos = output.size();\n    output.resize(pos + bytes);\n    memcpy(&output[pos], value.c_str(), bytes);\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<std::wstring> deserialize<std::wstring>(const void *data, size_t data_size)\n{\n    if(data_size % sizeof(std::wstring::value_type))\n        return std::nullopt;\n\n    return {std::wstring{static_cast<const std::wstring::value_type *>(data), data_size / sizeof(std::wstring::value_type)}};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const std::wstring &value)\n{\n    size_t bytes = (value.size() + 1) * sizeof(std::wstring::value_type);\n    size_t pos = output.size();\n    output.resize(pos + bytes);\n    memcpy(&output[pos], value.c_str(), bytes);\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<std::u16string> deserialize(const void *data, size_t data_size)\n{\n    if(data_size % sizeof(std::u16string::value_type))\n        return std::nullopt;\n\n    return {std::u16string{static_cast<const std::u16string::value_type *>(data), data_size / sizeof(std::u16string::value_type)}};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const std::u16string &value)\n{\n    size_t bytes = (value.size() + 1) * sizeof(std::u16string::value_type);\n    size_t pos = output.size();\n    output.resize(pos + bytes);\n    memcpy(&output[pos], value.c_str(), bytes);\n    return bytes;\n}\n\ntemplate <class Type, class Size_fn, class Advance_fn>\ninline std::optional<std::vector<Type>> deserialize_list_ex(const void *data, size_t data_size, const Size_fn &get_element_size, const Advance_fn &get_next_element)\n{\n    std::vector<Type> values;\n    const void *data_end = advance_bytes(data, data_size);\n    while(data && data < data_end)\n    {\n        auto element_size = get_element_size(data);\n        auto value = deserialize<Type>(data, element_size);\n        if(!value)\n            return std::nullopt;\n\n        values.push_back(*value);\n        data = get_next_element(data, data_size);\n        auto bytes_left = static_cast<const uint8_t *>(data_end) - static_cast<const uint8_t *>(data);\n        data_size = static_cast<size_t>(bytes_left);\n    }\n\n    if(data != data_end)\n        return std::nullopt;\n\n    return {values};\n}\n\ntemplate <class Type>\ninline std::optional<std::vector<Type>> deserialize_list(const void *data, size_t data_size)\n{\n    return deserialize_list_ex<Type>(\n        data, data_size,\n        [](const void *)\n        {\n            return sizeof(Type);\n        },\n        [](const void *ptr, size_t)\n        {\n            return advance_bytes(ptr, sizeof(const Type));\n        });\n}\n\ntemplate <class Type>\nsize_t serialize_list(Raw_data &output, const std::vector<Type> &value)\n{\n    size_t bytes = 0;\n    for(const auto &item: value)\n        bytes += serialize(output, item);\n\n    return bytes;\n}\n\n{% for category in device_paths.values() %}\n// {{ category.name }}\n\n{% for node in category.nodes %}\ntemplate <>\ninline std::optional<File_path::{{ category.slug.upper() }}::{{ node.slug.capitalize() }}> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_{{ category.slug }}_{{ node.slug }} *>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n    if(dp->header.type != File_path::{{ category.slug.upper() }}::{{ node.slug.capitalize() }}::TYPE)\n        return std::nullopt;\n\n    if(dp->header.subtype != File_path::{{ category.slug.upper() }}::{{ node.slug.capitalize() }}::SUBTYPE)\n        return std::nullopt;\n\n    File_path::{{ category.slug.upper() }}::{{ node.slug.capitalize() }} value{};\n    {% for field in node.fields %}\n    {% if field.type == \"enum\" %}\n    value.{{ field.slug }} = static_cast<File_path::{{ category.slug.upper() }}::{{ node.slug.capitalize() }}::{{ field.slug.upper() }}>(dp->{{ field.slug }});\n    {% elif \"string\" in field.type %}\n    value.{{ field.slug }} = reinterpret_cast<const decltype(value.{{ field.slug }})::value_type *>(dp->{{ field.slug }});\n    {% elif field.size == \"n\" %}\n    {\n        static_assert(sizeof(decltype(value.{{ field.slug }})::value_type) == sizeof(dp->{{ field.slug }}[0]));\n        auto length = static_cast<size_t>(static_cast<decltype(&dp->{{ field.slug }}[0])>(advance_bytes(data, data_size)) - &dp->{{ field.slug }}[0]);\n        value.{{ field.slug }}.resize(length);\n        memcpy(value.{{ field.slug }}.data(), dp->{{ field.slug }}, length * sizeof(dp->{{ field.slug }}[0]));\n    }\n    {% elif field.size > 8 or field.type in (\"ip4\", \"ip6\", \"mac\") %}\n    std::copy(std::begin(dp->{{ field.slug }}), std::end(dp->{{ field.slug }}), std::begin(value.{{ field.slug }}));\n    {% else %}\n    value.{{ field.slug }} = dp->{{ field.slug }};\n    {% endif %}\n    {% endfor %}\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::{{ category.slug.upper() }}::{{ node.slug.capitalize() }} &{{ node.slug }})\n{\n    size_t bytes = 0;\n    uint8_t type = File_path::{{ category.slug.upper() }}::{{ node.slug.capitalize() }}::TYPE;\n    bytes += serialize(output, type);\n    uint8_t subtype = File_path::{{ category.slug.upper() }}::{{ node.slug.capitalize() }}::SUBTYPE;\n    bytes += serialize(output, subtype);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    {% for field in node.fields %}\n    bytes += serialize(output, {{ node.slug }}.{{ field.slug }});\n    {% endfor %}\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\n{% endfor %}{% endfor %}\ntemplate <>\ninline std::optional<File_path::Unknown> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const efidp_header *>(data);\n    if(dp->length != data_size)\n        return std::nullopt;\n\n    File_path::Unknown value{};\n    value.TYPE = dp->type;\n    value.SUBTYPE = dp->subtype;\n\n    size_t data_length = data_size - sizeof(*dp);\n    value.data.resize(data_length);\n    memcpy(value.data.data(), static_cast<const uint8_t *>(advance_bytes(data, sizeof(const efidp_header))), data_length);\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::Unknown &unknown)\n{\n    size_t bytes = 0;\n    bytes += serialize(output, unknown.TYPE);\n    bytes += serialize(output, unknown.SUBTYPE);\n    size_t pos = output.size();\n    uint16_t length = 0;\n    bytes += serialize(output, length);\n    bytes += serialize(output, unknown.data);\n    length = static_cast<uint16_t>(bytes);\n    memcpy(&output[pos], &length, sizeof(length));\n    return bytes;\n}\n\ntemplate <>\ninline std::optional<File_path::ANY> deserialize(const void *data, size_t data_size)\n{\n    auto dp = static_cast<const_efidp>(data);\n    if(dp->header.length != data_size)\n        return std::nullopt;\n\n#define TYPE_SUBTYPE(type, subtype) (((type) << 8) | (subtype))\n#define casefp(Type)                                                    \\\n    case TYPE_SUBTYPE(File_path::Type::TYPE, File_path::Type::SUBTYPE): \\\n        return deserialize<File_path::Type>(dp, data_size)\n\n    switch(TYPE_SUBTYPE(dp->header.type, dp->header.subtype))\n    {\n{% for category in device_paths.values() %}{% for node in category.nodes %}\n        casefp({{ category.slug.upper() }}::{{ node.slug.capitalize() }});\n{% endfor %}{% endfor %}\n\n    default:\n        return deserialize<File_path::Unknown>(dp, data_size);\n    }\n\n#undef casefp\n#undef TYPE_SUBTYPE\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const File_path::ANY &file_path)\n{\n    return std::visit([&output](const auto &dp) -> size_t\n        { return serialize(output, dp); },\n        file_path);\n}\n\ntemplate <>\ninline std::optional<Load_option> deserialize(const void *data, size_t data_size)\n{\n    Load_option value{};\n    auto ssize = static_cast<ssize_t>(data_size);\n    auto load_option = const_cast<efi_load_option *>(static_cast<const efi_load_option *>(data));\n\n#if defined(__clang__)\n#pragma clang diagnostic push\n#pragma clang diagnostic ignored \"-Wunsafe-buffer-usage\"\n#endif\n    for(size_t d = 0; load_option->description[d]; ++d)\n        value.description.push_back(load_option->description[d]);\n#if defined(__clang__)\n#pragma clang diagnostic pop\n#endif\n\n    uint16_t device_path_size = efi_loadopt_pathlen(load_option, ssize);\n    const_efidp device_path = efi_loadopt_path(load_option, ssize);\n\n    auto file_paths = deserialize_list_ex<File_path::ANY>(\n        device_path, device_path_size,\n        [](const void *ptr)\n        {\n            auto size = efidp_node_size(static_cast<const_efidp>(ptr));\n            return static_cast<size_t>(size);\n        },\n        [](const void *ptr, size_t bytes_left) -> const void *\n        {\n            auto dp = static_cast<const_efidp>(ptr);\n            ssize_t size = efidp_node_size(dp);\n            if(size < 0 || static_cast<size_t>(size) > bytes_left)\n                return nullptr;\n\n            return advance_bytes(ptr, static_cast<size_t>(size));\n        });\n\n    if(!file_paths || file_paths->empty())\n        return std::nullopt;\n\n    value.device_path = *file_paths;\n\n    uint8_t *optional_data = nullptr;\n    size_t optional_data_size = 0;\n    if(int ret = efi_loadopt_optional_data(load_option, data_size, &optional_data, &optional_data_size); ret >= 0)\n    {\n        auto opt_data = deserialize<Raw_data>(optional_data, optional_data_size);\n        if(!opt_data)\n            return std::nullopt;\n\n        value.optional_data = *opt_data;\n    }\n\n    value.attributes = static_cast<Load_option_attribute>(load_option->attributes);\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const Load_option &load_option)\n{\n    size_t size = 0;\n    size += serialize(output, load_option.attributes);\n    auto file_path_list_length_pos = output.size();\n    uint16_t file_path_list_size = 0;\n    size += serialize(output, file_path_list_size);\n    size += serialize(output, load_option.description);\n\n    file_path_list_size = static_cast<uint16_t>(serialize_list(output, load_option.device_path));\n    // Always set END_ENTIRE tag at the end of device path\n    if(!load_option.device_path.size() || std::visit([](const auto &file_path)\n                                              { return file_path.SUBTYPE; },\n                                              load_option.device_path.back())\n            != File_path::END::Entire::SUBTYPE)\n    {\n        File_path::END::Entire end{};\n        file_path_list_size = static_cast<uint16_t>(file_path_list_size + static_cast<uint16_t>(serialize(output, end))); // Older GCC complains about conversion when using += `conversion from ‘int’ to ‘uint16_t’ {aka ‘short unsigned int’} may change value`\n    }\n    size += file_path_list_size;\n    memcpy(&output[file_path_list_length_pos], &file_path_list_size, sizeof(file_path_list_size));\n\n    size += serialize(output, load_option.optional_data);\n    return size;\n}\n\ntemplate <>\ninline std::optional<Key_option> deserialize(const void *data, size_t data_size)\n{\n    Key_option value{};\n    auto key_option = static_cast<const efi_key_option *>(data);\n\n    value.boot_option = key_option->boot_option;\n    value.boot_option_crc = key_option->boot_option_crc;\n    value.key_data = key_option->key_data;\n\n    auto keys_size = key_option->key_data.options.input_key_count * sizeof(efi_input_key);\n    if(keys_size)\n    {\n        auto keys = deserialize_list<efi_input_key>(key_option->keys, keys_size);\n        if(!keys || keys->empty())\n            return std::nullopt;\n\n        value.keys = *keys;\n    }\n\n    if(keys_size != data_size - offsetof(efi_key_option, keys))\n    {\n        auto vendor_data = deserialize<Raw_data>(advance_bytes(key_option->keys, keys_size), data_size - offsetof(efi_key_option, keys) - keys_size);\n        if(!vendor_data)\n            return std::nullopt;\n\n        value.vendor_data = *vendor_data;\n    }\n\n    return {value};\n}\n\ntemplate <>\ninline size_t serialize(Raw_data &output, const Key_option &key_option)\n{\n    size_t size = 0;\n    size += serialize(output, key_option.key_data);\n    size += serialize(output, key_option.boot_option_crc);\n    size += serialize(output, key_option.boot_option);\n    size += serialize_list(output, key_option.keys);\n    size += serialize(output, key_option.vendor_data);\n    return size;\n}\n\nextern Progress_fn _get_variables_progress_fn;\n\ntemplate <class Filter_fn>\ninline std::optional<std::unordered_map<tstring, efi_guid_t>> get_variables(const Filter_fn &filter_fn, const Progress_fn &progress_fn)\n{\n    std::unordered_map<tstring, efi_guid_t> variables;\n    efi_guid_t *guid = nullptr;\n    TCHAR *name = nullptr;\n    _get_variables_progress_fn = progress_fn;\n    efi_set_get_next_variable_name_progress_cb([](size_t step, size_t total) noexcept\n        { try { if(_get_variables_progress_fn)_get_variables_progress_fn(step, total); } catch (...) {/* ignore */} });\n\n    int ret = 0;\n    while((ret = efi_get_next_variable_name(&guid, &name)) > 0)\n    {\n        if(!filter_fn(*guid, name))\n            continue;\n\n        memcpy(&variables[name], guid, sizeof(efi_guid_t));\n    }\n\n    efi_set_get_next_variable_name_progress_cb(nullptr);\n    _get_variables_progress_fn = nullptr;\n\n    if(ret < 0)\n        return std::nullopt;\n\n    return {variables};\n}\n\ntemplate <class Filter_fn>\ninline std::optional<std::unordered_map<tstring, efi_guid_t>> get_variables(Filter_fn filter_fn)\n{\n    return get_variables(filter_fn, [](size_t, size_t) { /* noprogress */ });\n}\n\ninline std::optional<std::unordered_map<tstring, efi_guid_t>> get_variables()\n{\n    return get_variables(\n        [](const efi_guid_t &, const tstring_view)\n        { return true; },\n        [](size_t, size_t) { /* noprogress */ });\n}\n\ntemplate <class Type>\ninline std::optional<Variable<Type>> get_variable(const efi_guid_t &guid, const tstring &name)\n{\n    uint8_t *data = nullptr;\n    size_t data_size = 0;\n    uint32_t attributes = 0;\n    if(int ret = efi_get_variable(guid, name.c_str(), &data, &data_size, &attributes); ret < 0)\n        return std::nullopt;\n\n    auto value = deserialize<Type>(data, data_size);\n    if(!value)\n        return std::nullopt;\n\n    return {{ \"{{*value, attributes}}\" }};\n}\n\ntemplate <class Type>\ninline std::optional<Variable<std::vector<Type>>> get_list_variable(const efi_guid_t &guid, const tstring &name)\n{\n    uint8_t *data = nullptr;\n    size_t data_size = 0;\n    uint32_t attributes = 0;\n    if(int ret = efi_get_variable(guid, name.c_str(), &data, &data_size, &attributes); ret < 0)\n        return std::nullopt;\n\n    auto value = deserialize_list<Type>(data, data_size);\n    if(!value)\n        return std::nullopt;\n\n    return {{ \"{{*value, attributes}}\" }};\n}\n\ntemplate <class Type, class Size_fn, class Advance_fn>\ninline std::optional<Variable<std::vector<Type>>> get_list_variable_ex(const efi_guid_t &guid, const tstring &name, const Size_fn &get_element_size, const Advance_fn &get_next_element)\n{\n    uint8_t *data = nullptr;\n    size_t data_size = 0;\n    uint32_t attributes = 0;\n    if(int ret = efi_get_variable(guid, name.c_str(), &data, &data_size, &attributes); ret < 0)\n        return std::nullopt;\n\n    auto value = deserialize_list_ex<Type>(data, data_size, get_element_size, get_next_element);\n    if(!value)\n        return std::nullopt;\n\n    return {{ \"{{*value, attributes}}\" }};\n}\n\ntemplate <class Type>\ninline bool set_variable_ex(const efi_guid_t &guid, const tstring &name, const Variable<Type> &variable, mode_t mode, uint32_t &crc)\n{\n    auto [value, attributes] = variable;\n    Raw_data bytes;\n    size_t size = serialize(bytes, value);\n    crc = static_cast<uint32_t>(crc32(0, bytes.data(), static_cast<uInt>(bytes.size())));\n    // Skip overwriting with exactly the same value\n    if(const auto current = EFIBoot::get_variable<Raw_data>(guid, name); current)\n    {\n        const auto &[current_bytes, current_attributes] = *current;\n        if(current_attributes == attributes && current_bytes == bytes)\n            return true;\n    }\n\n    // Don't care about the error from get_variable\n    efi_error_clear();\n    return efi_set_variable(guid, name.c_str(), bytes.data(), size, attributes, mode) == 0;\n}\n\ntemplate <class Type>\ninline bool set_variable(const efi_guid_t &guid, const tstring &name, const Variable<Type> &variable, mode_t mode)\n{\n    uint32_t crc = 0;\n    return set_variable_ex<Type>(guid, name, variable, mode, crc);\n}\n\n\ntemplate <class Type>\ninline bool set_list_variable(const efi_guid_t &guid, const tstring &name, const Variable<std::vector<Type>> &variable, mode_t mode)\n{\n    auto [value, attributes] = variable;\n    Raw_data bytes;\n    size_t size = serialize_list(bytes, value);\n    // Skip overwriting with exactly the same value\n    if(const auto current = EFIBoot::get_variable<Raw_data>(guid, name); current)\n    {\n        const auto &[current_bytes, current_attributes] = *current;\n        if(current_attributes == attributes && current_bytes == bytes)\n            return true;\n    }\n\n    // Don't care about the error from get_variable\n    efi_error_clear();\n    return efi_set_variable(guid, name.c_str(), bytes.data(), size, attributes, mode) == 0;\n}\n\ninline bool del_variable(const efi_guid_t &guid, const tstring &name)\n{\n    return efi_del_variable(guid, name.c_str()) == 0;\n}\n\ninline tstring get_error_trace()\n{\n    tstring output = _T(\"Error trace:\\n\");\n    unsigned int i = 0;\n    while(true)\n    {\n        TCHAR *filename = nullptr;\n        TCHAR *function = nullptr;\n        int line = 0;\n        TCHAR *message = nullptr;\n        int error = 0;\n        const int ERROR_STR_BUFFER_SIZE = 1024;\n        TCHAR error_str[ERROR_STR_BUFFER_SIZE] = {};\n\n        int rc = efi_error_get(i, &filename, &function, &line, &message, &error);\n        if(rc < 0)\n            output += _T(\"error fetching trace value\\n\");\n\n        if(rc <= 0)\n            break;\n\n        ++i;\n        if(_tcserror_s(error_str, ERROR_STR_BUFFER_SIZE - 1, error) != 0)\n            output += _T(\"error translating error code to string\\n\");\n\n        if(filename)\n            output += filename;\n\n        if(line >= 0)\n        {\n            output += _T(\":\");\n            output += to_tstring(line);\n        }\n\n        if(function)\n        {\n            output += _T(\" \");\n            output += function;\n            output += _T(\"()\");\n        }\n\n        output += _T(\": \\n    \");\n        output += error_str;\n        output += _T(\"[\");\n        output += to_tstring(error);\n        output += _T(\"]: \");\n        if(message)\n            output += message;\n\n        output += _T(\"\\n\");\n    }\n\n    if(i == 0)\n        output += _T(\"no errors?\");\n\n    return output;\n}\n\ninline void error_clear()\n{\n    efi_error_clear();\n}\n\n} // namespace EFIBoot\n\n"
  },
  {
    "path": "include/efibootdata.h",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#pragma once\n\n#include <QObject>\n#include <QUndoStack>\n\n#include \"bootentrylistmodel.h\"\n#include \"hotkeylistmodel.h\"\n\nclass EFIBootData: public QObject\n{\n    Q_OBJECT\n\npublic:\n    BootEntryListModel boot_entries_list_model{tr(\"Boot\"), BootEntryListModel::Option::IsBoot, this};\n    BootEntryListModel driver_entries_list_model{tr(\"Driver\"), {}, this};\n    BootEntryListModel sysprep_entries_list_model{tr(\"System Preparation\"), {}, this};\n    BootEntryListModel platform_recovery_entries_list_model{tr(\"Platform Recovery\"), BootEntryListModel::Option::ReadOnly, this};\n    HotKeyListModel hot_keys_list_model{};\n\n    const std::vector<std::tuple<QString, BootEntryListModel &>> BOOT_ENTRIES{\n        {\"Boot\", boot_entries_list_model},\n        {\"Driver\", driver_entries_list_model},\n        {\"SysPrep\", sysprep_entries_list_model},\n        {\"PlatformRecovery\", platform_recovery_entries_list_model},\n    };\n\n    QString apple_boot_args{};\n    QUndoStack *undo_stack{nullptr};\n\n    uint64_t supported_indications{0};\n    uint64_t indications{0};\n\n    uint32_t boot_option_support{0};\n\n    uint16_t timeout{0};\n    bool secure_boot{false};\n    bool vendor_keys{false};\n    bool setup_mode{false};\n    bool audit_mode{false};\n    bool deployed_mode{false};\n\npublic:\n    explicit EFIBootData(QObject *parent = nullptr);\n    EFIBootData(const EFIBootData &) = delete;\n    EFIBootData &operator=(const EFIBootData &) = delete;\n\n    QUndoStack *getUndoStack() const;\n    void setUndoStack(QUndoStack *undo_stack_);\n\npublic Q_SLOTS:\n    void clear();\n    void reload(bool require_efi_entries = true);\n    void save();\n    void import_(const QString &file_name);\n    void export_(const QString &file_name);\n    void dump(const QString &file_name);\n\n    void setTimeout(uint16_t value);\n    void setAppleBootArgs(const QString &text);\n    void setOsIndications(uint64_t value);\n\nQ_SIGNALS:\n    void error(const QString &message, const QString &details);\n    void progress(size_t step, size_t total, const QString &details);\n    void done();\n\n    void timeoutChanged(const uint16_t &value);\n    void secureBootChanged(bool enabled);\n    void vendorKeysChanged(bool enabled);\n    void setupModeChanged(bool enabled);\n    void auditModeChanged(bool enabled);\n    void deployedModeChanged(bool enabled);\n    void bootOptionSupportChanged(uint32_t flags);\n    void appleBootArgsChanged(const QString &text);\n    void osIndicationsSupportedChanged(uint64_t value);\n    void osIndicationsChanged(const uint64_t &value);\n\nprivate:\n    void setSecureBoot(bool enabled);\n    void setVendorKeys(bool enabled);\n    void setSetupMode(bool enabled);\n    void setAuditMode(bool enabled);\n    void setDeployedMode(bool enabled);\n    void setBootOptionSupport(uint32_t flags);\n    void setOsIndicationsSupported(uint64_t value);\n    void importJSONEFIData(const QJsonObject &input);\n    void importRawEFIData(const QJsonObject &input);\n};\n"
  },
  {
    "path": "include/efibooteditor.h",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#pragma once\n\n#include <QMainWindow>\n#include <QMessageBox>\n#include <QProgressDialog>\n#include <QUndoStack>\n#include <memory>\n\n#include \"bootentrylistview.h\"\n#include \"disableundoredo.h\"\n#include \"efibootdata.h\"\n#include \"hotkeysdialog.h\"\n\nQT_BEGIN_NAMESPACE\nnamespace Ui\n{\nclass EFIBootEditor;\n}\nQT_END_NAMESPACE\n\nclass EFIBootEditor: public QMainWindow\n{\n    Q_OBJECT\n\nprivate:\n    enum BootEntryType\n    {\n        BOOT = 0,\n        DRIVER = 1,\n        SYSPREP = 2,\n        PLATFORM_RECOVERY = 3,\n    };\n\n    std::unique_ptr<Ui::EFIBootEditor> ui;\n    EFIBootData data{this};\n\n    std::unique_ptr<QMessageBox> confirmation;\n    std::unique_ptr<QMessageBox> error;\n    std::unique_ptr<QProgressDialog> progress;\n    std::unique_ptr<QMessageBox> about;\n    std::unique_ptr<HotKeysDialog> hot_keys;\n    std::unique_ptr<DisableUndoRedo> disable_undo_redo{std::make_unique<DisableUndoRedo>()};\n\n    QUndoStack undo_stack{this};\n\npublic:\n    explicit EFIBootEditor(const std::optional<tstring> &efi_error_message, QWidget *parent = nullptr);\n    EFIBootEditor(const EFIBootEditor &) = delete;\n    EFIBootEditor &operator=(const EFIBootEditor &) = delete;\n    ~EFIBootEditor() override;\n\n    void reloadBootConfiguration();\n\npublic Q_SLOTS:\n    void reload();\n    void save();\n    void import_();\n    void export_();\n    void dump();\n    void reorder();\n\n    void undo();\n    void redo();\n\n    void removeCurrentBootEntry();\n    void moveCurrentBootEntryUp();\n    void moveCurrentBootEntryDown();\n    void insertBootEntry();\n    void duplicateBootEntry();\n\n    void enableBootEntryEditor(const QModelIndex &index);\n    void switchBootEntryEditor(int index);\n    void showAboutDialog();\n    void showHotKeysDialog(int index = -1);\n\n    void setOsIndicationsSupported(uint64_t value);\n    void setOsIndications(uint64_t value);\n\n    void setOsIndication(bool checked);\n\n    void updateBootOptionSupport(uint32_t flags);\n\nQ_SIGNALS:\n    void osIndicationsChanged(uint64_t value);\n\nprivate:\n    void disableBootEntryEditor();\n    void refreshBootEntryEditor();\n    void reorderBootEntries();\n\n    std::tuple<QString, BootEntryListView &, BootEntryListModel &> getBootEntryList(int index);\n    std::tuple<QString, BootEntryListView &, BootEntryListModel &> currentBootEntryList();\n\n    uint64_t getOsIndications() const;\n\n    void closeEvent(QCloseEvent *event) override;\n\n    template <class Receiver, typename Slot>\n    void showConfirmation(const QString &message, const QMessageBox::StandardButtons &buttons, const QMessageBox::StandardButton &confirmation_button, Receiver confirmation_context, Slot confirmation_slot);\n\n    void showError(const QString &message, const QString &details);\n    void showProgressBar(size_t step, size_t total, const QString &details);\n    void hideProgressBar();\n};\n"
  },
  {
    "path": "include/efibooteditorcli.h",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#pragma once\n\n#include <QCommandLineParser>\n#include <QCoreApplication>\n\n#include \"efibootdata.h\"\n\nclass EFIBootEditorCLI: public QObject\n{\n    Q_OBJECT\n\n    QCommandLineParser parser{};\n    EFIBootData data{this};\n    bool efi_supported;\n    bool failed{false};\n\npublic:\n    explicit EFIBootEditorCLI(const std::optional<tstring> &efi_error_message, QObject *parent = nullptr);\n    EFIBootEditorCLI(const EFIBootEditorCLI &) = delete;\n    EFIBootEditorCLI &operator=(const EFIBootEditorCLI &) = delete;\n    ~EFIBootEditorCLI() override;\n\n    bool process(const QCoreApplication &app);\n\npublic Q_SLOTS:\n    void showError(const QString &message, const QString &details);\n    void showProgress(size_t step, size_t total, const QString &details) const;\n    void hideProgress() const;\n};\n"
  },
  {
    "path": "include/efikeysequence.h",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#pragma once\n\n#include <QObject>\n#include <QSet>\n#include <QString>\n#include <QVector>\n#include <tuple>\n\n#include \"efiboot.h\"\n\nstatic const QVector<std::tuple<int, QString, Qt::Key>> efi_scan_codes = {\n    {0x00, \"NULL\", Qt::Key_unknown},\n    {0x01, \"Up\", Qt::Key_Up},\n    {0x02, \"Down\", Qt::Key_Down},\n    {0x03, \"Right\", Qt::Key_Right},\n    {0x04, \"Left\", Qt::Key_Left},\n    {0x05, \"Home\", Qt::Key_Home},\n    {0x06, \"End\", Qt::Key_End},\n    {0x07, \"Insert\", Qt::Key_Insert},\n    {0x08, \"Delete\", Qt::Key_Delete},\n    {0x09, \"Page Up\", Qt::Key_PageUp},\n    {0x0a, \"Page Down\", Qt::Key_PageDown},\n    {0x0b, \"F1\", Qt::Key_F1},\n    {0x0c, \"F2\", Qt::Key_F2},\n    {0x0d, \"F3\", Qt::Key_F3},\n    {0x0e, \"F4\", Qt::Key_F4},\n    {0x0f, \"F5\", Qt::Key_F5},\n    {0x10, \"F6\", Qt::Key_F6},\n    {0x11, \"F7\", Qt::Key_F7},\n    {0x12, \"F8\", Qt::Key_F8},\n    {0x13, \"F9\", Qt::Key_F9},\n    {0x14, \"F10\", Qt::Key_F10},\n    {0x15, \"F11\", Qt::Key_F11},\n    {0x16, \"F12\", Qt::Key_F12},\n    {0x17, \"ESC\", Qt::Key_Escape},\n    {0x48, \"Pause\", Qt::Key_Pause},\n    {0x68, \"F13\", Qt::Key_F13},\n    {0x69, \"F14\", Qt::Key_F14},\n    {0x6a, \"F15\", Qt::Key_F15},\n    {0x6b, \"F16\", Qt::Key_F16},\n    {0x6c, \"F17\", Qt::Key_F17},\n    {0x6d, \"F18\", Qt::Key_F18},\n    {0x6e, \"F19\", Qt::Key_F19},\n    {0x6f, \"F20\", Qt::Key_F20},\n    {0x70, \"F21\", Qt::Key_F21},\n    {0x71, \"F22\", Qt::Key_F22},\n    {0x72, \"F23\", Qt::Key_F23},\n    {0x73, \"F24\", Qt::Key_F24},\n    {0x7f, \"Mute\", Qt::Key_VolumeMute},\n    {0x80, \"Volume Up\", Qt::Key_VolumeUp},\n    {0x81, \"Volume Down\", Qt::Key_VolumeDown},\n    {0x100, \"Brightness Up\", Qt::Key_unknown}, // Qt::Key_BrightnessUp\n    {0x101, \"Brightness Down\", Qt::Key_unknown}, // Qt::Key_BrightnessUp\n    {0x102, \"Suspend\", Qt::Key_Suspend},\n    {0x103, \"Hibernate\", Qt::Key_Hibernate},\n    {0x104, \"Toggle Display\", Qt::Key_Display},\n    {0x105, \"Recovery\", Qt::Key_unknown}, // Qt::Key_Recovery\n    {0x106, \"Eject\", Qt::Key_Eject},\n};\n\nstatic const QVector<std::tuple<QString, Qt::Key>> efi_modifiers = {\n    {\"Shift\", Qt::Key_Shift},\n    {\"Ctrl\", Qt::Key_Control},\n    {\"Alt\", Qt::Key_Alt},\n    {\"Meta\", Qt::Key_Meta},\n    {\"Menu\", Qt::Key_Menu},\n    {\"SysReq\", Qt::Key_SysReq},\n};\n\nclass EFIKey\n{\nprivate:\n    Qt::Key scan_code{};\n    QChar unicode_char{};\n\npublic:\n    EFIKey() = default;\n    explicit EFIKey(const EFIBoot::efi_input_key &key);\n    explicit EFIKey(const Qt::Key _scan_code, const QChar _unicode_char);\n    EFIBoot::efi_input_key toEFIInputKey() const;\n    bool operator==(const EFIKey &b) const;\n    bool operator!=(const EFIKey &b) const { return !(*this == b); }\n\n    static EFIKey fromString(const QString &repr, bool *success = nullptr);\n    QString toString() const;\n\n    bool isUnicode() const { return scan_code == Qt::Key_unknown; }\n    EFIKey toUpper() const;\n    bool isUpper() const;\n\n    static EFIKey fromQKey(int key, Qt::KeyboardModifiers modifiers, const QString &text, bool *success = nullptr);\n};\n\nclass EFIKeySequence\n{\n    Q_GADGET\n\nprivate:\n    QSet<Qt::Key> shift_state{};\n    QList<EFIKey> keys{};\n\npublic:\n    EFIKeySequence() = default;\n    EFIKeySequence(const EFIBoot::efi_boot_key_data &key_data, const std::vector<EFIBoot::efi_input_key> &keys_);\n\n    bool toEFIKeyOption(EFIBoot::efi_boot_key_data &key_data, std::vector<EFIBoot::efi_input_key> &keys_) const;\n\n    static EFIKeySequence fromString(const QString &str, qsizetype maxKeys);\n    QString toString(bool escaped = false) const;\n\n    bool isEmpty() const;\n\n    bool operator==(const EFIKeySequence &b) const;\n    bool operator!=(const EFIKeySequence &b) const { return !(*this == b); }\n\n    bool addKey(int key, Qt::KeyboardModifiers modifiers, const QString &text, qsizetype maxKeys);\n\nprivate:\n    void fixShiftState();\n};\n\nQ_DECLARE_METATYPE(const EFIKeySequence *)\n"
  },
  {
    "path": "include/efikeysequenceedit.h",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#pragma once\n\n#include \"efikeysequence.h\"\n#include <QLineEdit>\n#include <QVBoxLayout>\n#include <QWidget>\n\n// Based on QKeySequenceEdit\nclass EFIKeySequenceEdit: public QWidget\n{\n    Q_OBJECT\n\n    Q_PROPERTY(EFIKeySequence keySequence READ keySequence WRITE setKeySequence NOTIFY keySequenceChanged USER true)\n    Q_PROPERTY(bool clearButtonEnabled READ isClearButtonEnabled WRITE setClearButtonEnabled)\n    Q_PROPERTY(qsizetype maximumSequenceLength READ maximumSequenceLength WRITE setMaximumSequenceLength)\n\nprivate:\n    std::unique_ptr<QLineEdit> lineEdit;\n    std::unique_ptr<QVBoxLayout> layout;\n    EFIKeySequence _keySequence{};\n    qsizetype _maximumSequenceLength{3};\n    int startKey{-1};\n\npublic:\n    explicit EFIKeySequenceEdit(QWidget *parent = nullptr);\n    explicit EFIKeySequenceEdit(const EFIKeySequence &keySequence, QWidget *parent = nullptr);\n    EFIKeySequenceEdit(const EFIKeySequenceEdit &) = delete;\n    EFIKeySequenceEdit &operator=(const EFIKeySequenceEdit &) = delete;\n\n    const EFIKeySequence &keySequence() const { return _keySequence; }\n    qsizetype maximumSequenceLength() const { return _maximumSequenceLength; }\n\n    void setClearButtonEnabled(bool enable) { lineEdit->setClearButtonEnabled(enable); }\n    bool isClearButtonEnabled() const { return lineEdit->isClearButtonEnabled(); }\n\npublic Q_SLOTS:\n    void setKeySequence(const EFIKeySequence &keySequence);\n    void clear() { setKeySequence({}); }\n    void setMaximumSequenceLength(qsizetype count);\n\nQ_SIGNALS:\n    void editingFinished();\n    void keySequenceChanged(const EFIKeySequence &keySequence);\n\nprotected:\n    void keyPressEvent(QKeyEvent *event) override;\n    void keyReleaseEvent(QKeyEvent *event) override;\n    void focusOutEvent(QFocusEvent *event) override;\n\nprivate:\n    void resetState();\n    void finishEditing();\n};\n"
  },
  {
    "path": "include/efivar-lite/device-paths.h",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#pragma once\n\n#include <errno.h>\n#include <limits.h>\n\n#pragma pack(push, 1)\ntypedef struct\n{\n    uint8_t type;\n    uint8_t subtype;\n    uint16_t length;\n} efidp_header;\n\nenum EFIDP_TYPE\n{\n    EFIDP_TYPE_HW = 0x01,\n    EFIDP_TYPE_ACPI = 0x02,\n    EFIDP_TYPE_MSG = 0x03,\n    EFIDP_TYPE_MEDIA = 0x04,\n    EFIDP_TYPE_BIOS = 0x05,\n    EFIDP_TYPE_END = 0x7f,\n};\n\nenum EFIDP_HW\n{\n    EFIDP_HW_PCI = 0x01,\n    EFIDP_HW_PCCARD = 0x02,\n    EFIDP_HW_MEMORY_MAPPED = 0x03,\n    EFIDP_HW_VENDOR = 0x04,\n    EFIDP_HW_CONTROLLER = 0x05,\n    EFIDP_HW_BMC = 0x06,\n};\n\nenum EFIDP_ACPI\n{\n    EFIDP_ACPI_ACPI = 0x01,\n    EFIDP_ACPI_EXPANDED = 0x02,\n    EFIDP_ACPI_ADR = 0x03,\n    EFIDP_ACPI_NVDIMM = 0x04,\n};\n\nenum EFIDP_MSG\n{\n    EFIDP_MSG_ATAPI = 0x01,\n    EFIDP_MSG_SCSI = 0x02,\n    EFIDP_MSG_FIBRE_CHANNEL = 0x03,\n    EFIDP_MSG_FIREWIRE = 0x04,\n    EFIDP_MSG_USB = 0x05,\n    EFIDP_MSG_I2O = 0x06,\n    EFIDP_MSG_INFINIBAND = 0x09,\n    EFIDP_MSG_VENDOR = 0x0a,\n    EFIDP_MSG_MAC_ADDRESS = 0x0b,\n    EFIDP_MSG_IPV4 = 0x0c,\n    EFIDP_MSG_IPV6 = 0x0d,\n    EFIDP_MSG_UART = 0x0e,\n    EFIDP_MSG_USB_CLASS = 0x0f,\n    EFIDP_MSG_USB_WWID = 0x10,\n    EFIDP_MSG_DEVICE_LOGICAL_UNIT = 0x11,\n    EFIDP_MSG_SATA = 0x12,\n    EFIDP_MSG_ISCSI = 0x13,\n    EFIDP_MSG_VLAN = 0x14,\n    EFIDP_MSG_FIBRE_CHANNEL_EX = 0x15,\n    EFIDP_MSG_SAS_EXTENDED_MESSAGING = 0x16,\n    EFIDP_MSG_NVM_EXPRESS_NS = 0x17,\n    EFIDP_MSG_URI = 0x18,\n    EFIDP_MSG_UFS = 0x19,\n    EFIDP_MSG_SD = 0x1a,\n    EFIDP_MSG_BLUETOOTH = 0x1b,\n    EFIDP_MSG_WI_FI = 0x1c,\n    EFIDP_MSG_EMMC = 0x1d,\n    EFIDP_MSG_BLUETOOTHLE = 0x1e,\n    EFIDP_MSG_DNS = 0x1f,\n    EFIDP_MSG_NVDIMM_NS = 0x20,\n    EFIDP_MSG_REST_SERVICE = 0x21,\n    EFIDP_MSG_NVME_OF_NS = 0x22,\n};\n\nenum EFIDP_MEDIA\n{\n    EFIDP_MEDIA_HD = 0x01,\n    EFIDP_MEDIA_CD_ROM = 0x02,\n    EFIDP_MEDIA_VENDOR = 0x03,\n    EFIDP_MEDIA_FILE_PATH = 0x04,\n    EFIDP_MEDIA_PROTOCOL = 0x05,\n    EFIDP_MEDIA_FIRMWARE_FILE = 0x06,\n    EFIDP_MEDIA_FIRMWARE_VOLUME = 0x07,\n    EFIDP_MEDIA_RELATIVE_OFFSET_RANGE = 0x08,\n    EFIDP_MEDIA_RAM_DISK = 0x09,\n};\n\nenum EFIDP_BIOS\n{\n    EFIDP_BIOS_BOOT_SPECIFICATION = 0x01,\n};\n\nenum EFIDP_END\n{\n    EFIDP_END_INSTANCE = 0x01,\n    EFIDP_END_ENTIRE = 0xff,\n};\n\n/*\n   Hardware\n   This Device Path defines how a device is attached to the resource domain of a system, where resource domain is simply the shared memory, memory mapped I/O, and I/O space of the system.\n*/\n/*\n   PCI\n   The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint8_t function;\n    uint8_t device;\n} efidp_hw_pci;\n\n/*\n   PCCARD\n   PCCARD Settings.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint8_t function_number;\n} efidp_hw_pccard;\n\nenum EFIDP_HW_MEMORY_MAPPED_MEMORY_TYPE\n{\n    EFIDP_HW_MEMORY_MAPPED_MEMORY_TYPE_RESERVED = 0x0,\n    EFIDP_HW_MEMORY_MAPPED_MEMORY_TYPE_LOADER_CODE = 0x1,\n    EFIDP_HW_MEMORY_MAPPED_MEMORY_TYPE_LOADER_DATA = 0x2,\n    EFIDP_HW_MEMORY_MAPPED_MEMORY_TYPE_BOOT_SERVICES_CODE = 0x3,\n    EFIDP_HW_MEMORY_MAPPED_MEMORY_TYPE_BOOT_SERVICES_DATA = 0x4,\n    EFIDP_HW_MEMORY_MAPPED_MEMORY_TYPE_RUNTIME_SERVICES_CODE = 0x5,\n    EFIDP_HW_MEMORY_MAPPED_MEMORY_TYPE_RUNTIME_SERVICES_DATA = 0x6,\n    EFIDP_HW_MEMORY_MAPPED_MEMORY_TYPE_CONVENTIONAL = 0x7,\n    EFIDP_HW_MEMORY_MAPPED_MEMORY_TYPE_UNUSABLE = 0x8,\n    EFIDP_HW_MEMORY_MAPPED_MEMORY_TYPE_ACPI_RECLAIM = 0x9,\n    EFIDP_HW_MEMORY_MAPPED_MEMORY_TYPE_ACPI_MEMORY_NVS = 0xa,\n    EFIDP_HW_MEMORY_MAPPED_MEMORY_TYPE_MEMORY_MAPPED_IO = 0xb,\n    EFIDP_HW_MEMORY_MAPPED_MEMORY_TYPE_MEMORY_MAPPD_IO_PORT_SPACE = 0xc,\n    EFIDP_HW_MEMORY_MAPPED_MEMORY_TYPE_PAL_CODE = 0xd,\n    EFIDP_HW_MEMORY_MAPPED_MEMORY_TYPE_PERSISTENT = 0xe,\n    EFIDP_HW_MEMORY_MAPPED_MEMORY_TYPE_UNACCEPTED = 0xf,\n};\n\n/*\n   Memory Mapped\n   Memory Mapped Settings.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint32_t memory_type;\n    uint64_t start_address;\n    uint64_t end_address;\n} efidp_hw_memory_mapped;\n\n/*\n   Vendor-Defined Hardware\n   The Vendor Device Path allows the creation of vendor-defined Device Paths.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint8_t guid[16];\n    uint8_t data[ANYSIZE_ARRAY];\n} efidp_hw_vendor;\n\n/*\n   Controller\n   Controller settings.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint32_t controller_number;\n} efidp_hw_controller;\n\nenum EFIDP_HW_BMC_INTERFACE_TYPE\n{\n    EFIDP_HW_BMC_INTERFACE_TYPE_UNKNOWN = 0x0,\n    EFIDP_HW_BMC_INTERFACE_TYPE_KCS = 0x1,\n    EFIDP_HW_BMC_INTERFACE_TYPE_SMIC = 0x2,\n    EFIDP_HW_BMC_INTERFACE_TYPE_BT = 0x3,\n};\n\n/*\n   BMC\n   The Device Path for a Baseboard Management Controller (BMC) host interface.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint8_t interface_type;\n    uint64_t base_address;\n} efidp_hw_bmc;\n\n/*\n   ACPI\n   This Device Path is used to describe devices whose enumeration is not described in an industry-standard fashion. These devices must be described using ACPI AML in the ACPI name space; this Device Path is a linkage to the ACPI name space.\n*/\n/*\n   ACPI\n   This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint32_t hid;\n    uint32_t uid;\n} efidp_acpi_acpi;\n\n/*\n   Expanded\n   This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint32_t hid;\n    uint32_t uid;\n    uint32_t cid;\n    uint8_t hidstr[ANYSIZE_ARRAY];\n    // uint8_t uidstr[ANYSIZE_ARRAY];\n    // uint8_t cidstr[ANYSIZE_ARRAY];\n} efidp_acpi_expanded;\n\n/*\n   ADR\n   The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint32_t adr;\n    uint8_t additional_adr[ANYSIZE_ARRAY];\n} efidp_acpi_adr;\n\n/*\n   NVDIMM\n   This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint32_t nfit_device_handle;\n} efidp_acpi_nvdimm;\n\n/*\n   Messaging\n   This Device Path is used to describe the connection of devices outside the resource domain of the system. This Device Path can describe physical messaging information such as a SCSI ID, or abstract information such as networking protocol IP addresses.\n*/\n/*\n   ATAPI\n   ATAPI Settings.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint8_t primary;\n    uint8_t slave;\n    uint16_t lun;\n} efidp_msg_atapi;\n\n/*\n   SCSI\n   SCSI Settings.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint16_t pun;\n    uint16_t lun;\n} efidp_msg_scsi;\n\n/*\n   Fibre Channel\n   Fibre Channel Settings\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint32_t reserved;\n    uint64_t world_wide_name;\n    uint64_t lun;\n} efidp_msg_fibre_channel;\n\n/*\n   Firewire\n   Firewire Settings.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint32_t reserved;\n    uint64_t guid;\n} efidp_msg_firewire;\n\n/*\n   USB\n   USB settings.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint8_t parent_port_number;\n    uint8_t interface_number;\n} efidp_msg_usb;\n\n/*\n   I2O\n   I2O Settings\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint32_t tid;\n} efidp_msg_i2o;\n\n/*\n   InfiniBand\n   InfiniBand Settings.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint32_t resource_flags;\n    uint8_t port_gid[16];\n    uint64_t ioc_guid_service_id;\n    uint64_t target_port_id;\n    uint64_t device_id;\n} efidp_msg_infiniband;\n\n/*\n   Vendor-Defined Messaging\n   The Vendor Device Path allows the creation of vendor-defined Device Paths.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint8_t guid[16];\n    uint8_t data[ANYSIZE_ARRAY];\n} efidp_msg_vendor;\n\n/*\n   MAC Address\n   MAC settings.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint8_t address[32];\n    uint8_t if_type;\n} efidp_msg_mac_address;\n\n/*\n   IPv4\n   IPv4 settings.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint8_t local_ip_address[4];\n    uint8_t remote_ip_address[4];\n    uint16_t local_port;\n    uint16_t remote_port;\n    uint16_t protocol;\n    uint8_t static_ip_address;\n    uint8_t gateway_ip_address[4];\n    uint8_t subnet_mask[4];\n} efidp_msg_ipv4;\n\nenum EFIDP_MSG_IPV6_IP_ADDRESS_ORIGIN\n{\n    EFIDP_MSG_IPV6_IP_ADDRESS_ORIGIN_STATIC = 0x0,\n    EFIDP_MSG_IPV6_IP_ADDRESS_ORIGIN_STATELESS = 0x1,\n    EFIDP_MSG_IPV6_IP_ADDRESS_ORIGIN_STATEFUL = 0x2,\n};\n\n/*\n   IPv6\n   IPv6 settings.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint8_t local_ip_address[16];\n    uint8_t remote_ip_address[16];\n    uint16_t local_port;\n    uint16_t remote_port;\n    uint16_t protocol;\n    uint8_t ip_address_origin;\n    uint8_t prefix_length;\n    uint8_t gateway_ip_address[16];\n} efidp_msg_ipv6;\n\nenum EFIDP_MSG_UART_PARITY\n{\n    EFIDP_MSG_UART_PARITY_DEFAULT = 0x0,\n    EFIDP_MSG_UART_PARITY_NO = 0x1,\n    EFIDP_MSG_UART_PARITY_EVEN = 0x2,\n    EFIDP_MSG_UART_PARITY_ODD = 0x3,\n    EFIDP_MSG_UART_PARITY_MARK = 0x4,\n    EFIDP_MSG_UART_PARITY_SPACE = 0x5,\n};\n\nenum EFIDP_MSG_UART_STOP_BITS\n{\n    EFIDP_MSG_UART_STOP_BITS_DEFAULT = 0x0,\n    EFIDP_MSG_UART_STOP_BITS_ONE = 0x1,\n    EFIDP_MSG_UART_STOP_BITS_ONE_AND_HALF = 0x2,\n    EFIDP_MSG_UART_STOP_BITS_TWO = 0x3,\n};\n\n/*\n   UART\n   UART Settings.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint32_t reserved;\n    uint64_t baud_rate;\n    uint8_t data_bits;\n    uint8_t parity;\n    uint8_t stop_bits;\n} efidp_msg_uart;\n\n/*\n   USB Class\n   USB Class Settings.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint16_t vendor_id;\n    uint16_t product_id;\n    uint8_t device_class;\n    uint8_t device_subclass;\n    uint8_t device_protocol;\n} efidp_msg_usb_class;\n\n/*\n   USB WWID\n   This device path describes a USB device using its serial number.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint16_t interface_number;\n    uint16_t device_vendor_id;\n    uint16_t device_product_id;\n    uint16_t serial_number[ANYSIZE_ARRAY];\n} efidp_msg_usb_wwid;\n\n/*\n   Device Logical Unit\n   Device Logical Unit Settings.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint8_t lun;\n} efidp_msg_device_logical_unit;\n\n/*\n   SATA\n   SATA settings.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint16_t hba_port_number;\n    uint16_t port_multiplier_port_number;\n    uint16_t lun;\n} efidp_msg_sata;\n\n/*\n   iSCSI\n   iSCSI Settings.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint16_t protocol;\n    uint16_t options;\n    uint64_t lun;\n    uint16_t target_portal_group;\n    uint8_t target_name[ANYSIZE_ARRAY];\n} efidp_msg_iscsi;\n\n/*\n   VLAN\n   VLAN Settings.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint16_t vlan_id;\n} efidp_msg_vlan;\n\n/*\n   Fibre Channel Ex\n   The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint32_t reserved;\n    uint64_t world_wide_name;\n    uint64_t lun;\n} efidp_msg_fibre_channel_ex;\n\n/*\n   SAS Extended Messaging\n   The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint64_t sas_address;\n    uint64_t lun;\n    uint16_t device_and_topology_info;\n    uint16_t relative_target_port;\n} efidp_msg_sas_extended_messaging;\n\n/*\n   NVM Express NS\n   NVM Express Namespace Settings.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint32_t namespace_identifier;\n    uint64_t ieee_extended_unique_identifier;\n} efidp_msg_nvm_express_ns;\n\n/*\n   URI\n   Refer to RFC 3986 for details on the URI contents.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint8_t uri[ANYSIZE_ARRAY];\n} efidp_msg_uri;\n\n/*\n   UFS\n   UFS Settings.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint8_t pun;\n    uint8_t lun;\n} efidp_msg_ufs;\n\n/*\n   SD\n   SD Settings.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint8_t slot_number;\n} efidp_msg_sd;\n\n/*\n   Bluetooth\n   EFI Bluetooth Settings.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint8_t device_address[6];\n} efidp_msg_bluetooth;\n\n/*\n   Wi-Fi\n   Wi-Fi Settings.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint8_t ssid;\n} efidp_msg_wi_fi;\n\n/*\n   eMMC\n   Embedded Multi-Media Card Settings.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint8_t slot_number;\n} efidp_msg_emmc;\n\nenum EFIDP_MSG_BLUETOOTHLE_ADDRESS_TYPE\n{\n    EFIDP_MSG_BLUETOOTHLE_ADDRESS_TYPE_PUBLIC = 0x0,\n    EFIDP_MSG_BLUETOOTHLE_ADDRESS_TYPE_RANDOM = 0x1,\n};\n\n/*\n   BluetoothLE\n   EFI BluetoothLE Settings.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint8_t device_address[6];\n    uint8_t address_type;\n} efidp_msg_bluetoothle;\n\n/*\n   DNS\n   DNS Settings.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint8_t ipv6;\n    uint8_t data[ANYSIZE_ARRAY];\n} efidp_msg_dns;\n\n/*\n   NVDIMM NS\n   This device path describes a bootable NVDIMM namespace that is defined by a namespace label.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint8_t uuid[16];\n} efidp_msg_nvdimm_ns;\n\nenum EFIDP_MSG_REST_SERVICE_REST_SERVICE\n{\n    EFIDP_MSG_REST_SERVICE_REST_SERVICE_REDFISH = 0x1,\n    EFIDP_MSG_REST_SERVICE_REST_SERVICE_ODATA = 0x2,\n    EFIDP_MSG_REST_SERVICE_REST_SERVICE_VENDOR = 0xff,\n};\n\nenum EFIDP_MSG_REST_SERVICE_ACCESS_MODE\n{\n    EFIDP_MSG_REST_SERVICE_ACCESS_MODE_IN_BAND = 0x1,\n    EFIDP_MSG_REST_SERVICE_ACCESS_MODE_OUT_OF_BAND = 0x2,\n};\n\n/*\n   REST Service\n   REST Service Settings.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint8_t rest_service;\n    uint8_t access_mode;\n    uint8_t guid[16];\n    uint8_t data[ANYSIZE_ARRAY];\n} efidp_msg_rest_service;\n\n/*\n   NVMe-oF NS\n   This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint8_t nidt;\n    uint8_t nid[16];\n    uint8_t subsystem_nqn[ANYSIZE_ARRAY];\n} efidp_msg_nvme_of_ns;\n\n/*\n   Media\n   This Device Path is used to describe the portion of a medium that is being abstracted by a boot service. For example, a Media Device Path could define which partition on a hard drive was being used.\n*/\nenum EFIDP_MEDIA_HD_PARTITION_FORMAT\n{\n    EFIDP_MEDIA_HD_PARTITION_FORMAT_MBR = 0x1,\n    EFIDP_MEDIA_HD_PARTITION_FORMAT_GUID = 0x2,\n};\n\nenum EFIDP_MEDIA_HD_SIGNATURE_TYPE\n{\n    EFIDP_MEDIA_HD_SIGNATURE_TYPE_NONE = 0x0,\n    EFIDP_MEDIA_HD_SIGNATURE_TYPE_MBR = 0x1,\n    EFIDP_MEDIA_HD_SIGNATURE_TYPE_GUID = 0x2,\n};\n\n/*\n   Hard Drive\n   The Hard Drive Media Device Path is used to represent a partition on a hard drive.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint32_t partition_number;\n    uint64_t partition_start;\n    uint64_t partition_size;\n    uint8_t partition_signature[16];\n    uint8_t partition_format;\n    uint8_t signature_type;\n} efidp_media_hd;\n\n/*\n   CD-ROM\n   The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint32_t boot_entry;\n    uint64_t partition_start;\n    uint64_t partition_size;\n} efidp_media_cd_rom;\n\n/*\n   Vendor-Defined Media\n   The Vendor Device Path allows the creation of vendor-defined Device Paths.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint8_t guid[16];\n    uint8_t data[ANYSIZE_ARRAY];\n} efidp_media_vendor;\n\n/*\n   File Path\n   File Path settings.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint16_t path_name[ANYSIZE_ARRAY];\n} efidp_media_file_path;\n\n/*\n   Protocol\n   The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint8_t guid[16];\n} efidp_media_protocol;\n\n/*\n   Firmware File\n   Describes a firmware file in a firmware volume.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint8_t name[16];\n} efidp_media_firmware_file;\n\n/*\n   Firmware Volume\n   Describes a firmware volume.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint8_t name[16];\n} efidp_media_firmware_volume;\n\n/*\n   Relative Offset Range\n   This device path node specifies a range of offsets relative to the first byte available on the device.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint32_t reserved;\n    uint64_t starting_offset;\n    uint64_t ending_offset;\n} efidp_media_relative_offset_range;\n\n/*\n   RAM Disk\n   RAM Disk Settings.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint64_t starting_address;\n    uint64_t ending_address;\n    uint8_t guid[16];\n    uint16_t disk_instance;\n} efidp_media_ram_disk;\n\n/*\n   BIOS\n   This Device Path is used to point to boot legacy operating systems. it is based on the BIOS Boot Specification Version 1.01.\n*/\n/*\n   BIOS Boot Specification\n   This Device Path is used to describe the booting of non-EFI-aware operating systems.\n*/\ntypedef struct\n{\n    efidp_header header;\n    uint16_t device_type;\n    uint16_t status_flag;\n    uint8_t description[ANYSIZE_ARRAY];\n} efidp_bios_boot_specification;\n\n/*\n   End\n   Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.\n*/\n/*\n   End This Instance\n   This type of node terminates one Device Path instance and denotes the start of another. This is only required when an environment variable represents multiple devices.\n*/\ntypedef struct\n{\n    efidp_header header;\n} efidp_end_instance;\n\n/*\n   End Entire\n   This type of node terminates an entire Device Path. Software searches for this sub-type to find the end of a Device Path. All Device Paths must end with this sub-type.\n*/\ntypedef struct\n{\n    efidp_header header;\n} efidp_end_entire;\n\n/* utility functions */\ntypedef union\n{\n    efidp_header header;\n    efidp_hw_pci hw_pci;\n    efidp_hw_pccard hw_pccard;\n    efidp_hw_memory_mapped hw_memory_mapped;\n    efidp_hw_vendor hw_vendor;\n    efidp_hw_controller hw_controller;\n    efidp_hw_bmc hw_bmc;\n    efidp_acpi_acpi acpi_acpi;\n    efidp_acpi_expanded acpi_expanded;\n    efidp_acpi_adr acpi_adr;\n    efidp_acpi_nvdimm acpi_nvdimm;\n    efidp_msg_atapi msg_atapi;\n    efidp_msg_scsi msg_scsi;\n    efidp_msg_fibre_channel msg_fibre_channel;\n    efidp_msg_firewire msg_firewire;\n    efidp_msg_usb msg_usb;\n    efidp_msg_i2o msg_i2o;\n    efidp_msg_infiniband msg_infiniband;\n    efidp_msg_vendor msg_vendor;\n    efidp_msg_mac_address msg_mac_address;\n    efidp_msg_ipv4 msg_ipv4;\n    efidp_msg_ipv6 msg_ipv6;\n    efidp_msg_uart msg_uart;\n    efidp_msg_usb_class msg_usb_class;\n    efidp_msg_usb_wwid msg_usb_wwid;\n    efidp_msg_device_logical_unit msg_device_logical_unit;\n    efidp_msg_sata msg_sata;\n    efidp_msg_iscsi msg_iscsi;\n    efidp_msg_vlan msg_vlan;\n    efidp_msg_fibre_channel_ex msg_fibre_channel_ex;\n    efidp_msg_sas_extended_messaging msg_sas_extended_messaging;\n    efidp_msg_nvm_express_ns msg_nvm_express_ns;\n    efidp_msg_uri msg_uri;\n    efidp_msg_ufs msg_ufs;\n    efidp_msg_sd msg_sd;\n    efidp_msg_bluetooth msg_bluetooth;\n    efidp_msg_wi_fi msg_wi_fi;\n    efidp_msg_emmc msg_emmc;\n    efidp_msg_bluetoothle msg_bluetoothle;\n    efidp_msg_dns msg_dns;\n    efidp_msg_nvdimm_ns msg_nvdimm_ns;\n    efidp_msg_rest_service msg_rest_service;\n    efidp_msg_nvme_of_ns msg_nvme_of_ns;\n    efidp_media_hd media_hd;\n    efidp_media_cd_rom media_cd_rom;\n    efidp_media_vendor media_vendor;\n    efidp_media_file_path media_file_path;\n    efidp_media_protocol media_protocol;\n    efidp_media_firmware_file media_firmware_file;\n    efidp_media_firmware_volume media_firmware_volume;\n    efidp_media_relative_offset_range media_relative_offset_range;\n    efidp_media_ram_disk media_ram_disk;\n    efidp_bios_boot_specification bios_boot_specification;\n    efidp_end_instance end_instance;\n    efidp_end_entire end_entire;\n} efidp_data;\ntypedef efidp_data *efidp;\ntypedef const efidp_data *const_efidp;\n\n#pragma pack(pop)\n\nstatic inline int16_t\n    ATTR_ARTIFICIAL ATTR_NONNULL(1) ATTR_UNUSED\n    efidp_type(const_efidp dp)\n{\n    if(ATTR_NONNULL_IS_NULL(dp))\n    {\n        errno = EINVAL;\n        return -1;\n    }\n\n    return dp->header.type;\n}\n\nstatic inline int16_t\n    ATTR_ARTIFICIAL ATTR_NONNULL(1) ATTR_UNUSED\n    efidp_subtype(const_efidp dp)\n{\n    if(ATTR_NONNULL_IS_NULL(dp))\n    {\n        errno = EINVAL;\n        return -1;\n    }\n\n    return dp->header.subtype;\n}\n\nstatic inline ssize_t\n    ATTR_ARTIFICIAL ATTR_NONNULL(1) ATTR_WARN_UNUSED_RESULT\n    efidp_node_size(const_efidp dn)\n{\n    if(ATTR_NONNULL_IS_NULL(dn) || dn->header.length < 4)\n    {\n        errno = EINVAL;\n        return -1;\n    }\n\n    return dn->header.length;\n}\n\nstatic inline int\n    ATTR_ARTIFICIAL ATTR_NONNULL(1, 2) ATTR_UNUSED ATTR_WARN_UNUSED_RESULT\n    efidp_next_node(const_efidp in, const_efidp *out)\n{\n    if(efidp_type(in) == EFIDP_TYPE_END && efidp_subtype(in) == EFIDP_END_ENTIRE)\n        return 0;\n\n    ssize_t sz = efidp_node_size(in);\n    if(sz < 0)\n        return -1;\n\n    *out = STATIC_CAST(const_efidp)(advance_bytes(in, STATIC_CAST(size_t)(sz)));\n    if(*out < in)\n    {\n        errno = EINVAL;\n        return -1;\n    }\n\n    return 1;\n}\n\nstatic inline int\n    ATTR_ARTIFICIAL ATTR_NONNULL(1, 2) ATTR_UNUSED ATTR_WARN_UNUSED_RESULT\n    efidp_next_instance(const_efidp in, const_efidp *out)\n{\n    if(efidp_type(in) != EFIDP_TYPE_END || efidp_subtype(in) != EFIDP_END_INSTANCE)\n    {\n        errno = EINVAL;\n        return -1;\n    }\n\n    ssize_t sz = efidp_node_size(in);\n    if(sz < 0)\n        return -1;\n\n    *out = STATIC_CAST(const_efidp)(advance_bytes(in, STATIC_CAST(size_t)(sz)));\n    if(*out < in)\n    {\n        errno = EINVAL;\n        return -1;\n    }\n\n    return 1;\n}\n\nstatic inline int\n    ATTR_ARTIFICIAL ATTR_NONNULL(1) ATTR_UNUSED ATTR_WARN_UNUSED_RESULT\n    efidp_is_multiinstance(const_efidp dn)\n{\n    while(1)\n    {\n        const_efidp next = nullptr;\n        int rc = efidp_next_node(dn, &next);\n        if(rc < 0)\n        {\n            errno = EINVAL;\n            return -1;\n        }\n        else if(rc == 0)\n            return 0;\n\n        dn = next;\n        if(efidp_type(dn) == EFIDP_TYPE_END && efidp_subtype(dn) == EFIDP_END_INSTANCE)\n            return 1;\n\n        if(efidp_type(dn) == EFIDP_TYPE_END && efidp_subtype(dn) == EFIDP_END_ENTIRE)\n            return 0;\n    }\n\n    return 0;\n}\n\nstatic inline int\n    ATTR_ARTIFICIAL ATTR_NONNULL(1, 2) ATTR_UNUSED ATTR_WARN_UNUSED_RESULT\n    efidp_get_next_end(const_efidp in, const_efidp *out)\n{\n    while(1)\n    {\n        if(efidp_type(in) == EFIDP_TYPE_END)\n        {\n            *out = in;\n            return 0;\n        }\n\n        ssize_t sz = efidp_node_size(in);\n        if(sz < 0)\n            break;\n\n        const_efidp next = STATIC_CAST(const_efidp)(advance_bytes(in, STATIC_CAST(size_t)(sz)));\n        if(next < in)\n        {\n            errno = EINVAL;\n            return -1;\n        }\n\n        in = next;\n    }\n\n    return -1;\n}\n\nstatic inline ssize_t\n    ATTR_ARTIFICIAL ATTR_NONNULL(1) ATTR_UNUSED ATTR_WARN_UNUSED_RESULT\n    efidp_size(const_efidp dp)\n{\n    ssize_t size = 0;\n    if(ATTR_NONNULL_IS_NULL(dp))\n    {\n        errno = EINVAL;\n        return -1;\n    }\n\n    if(efidp_type(dp) == EFIDP_TYPE_END && efidp_subtype(dp) == EFIDP_END_ENTIRE)\n        return efidp_node_size(dp);\n\n    while(1)\n    {\n        ssize_t sz = efidp_node_size(dp);\n        if(sz < 0)\n            return sz;\n\n        size += sz;\n        const_efidp next = nullptr;\n        int rc = efidp_next_instance(dp, &next);\n        if(rc < 0)\n        {\n            rc = efidp_next_node(dp, &next);\n            if(rc < 0)\n                return rc;\n\n            if(rc == 0)\n                break;\n        }\n\n        dp = next;\n    }\n\n    return size;\n}\n\nstatic inline ssize_t\n    ATTR_ARTIFICIAL ATTR_NONNULL(1) ATTR_UNUSED ATTR_WARN_UNUSED_RESULT\n    efidp_instance_size(const_efidp dpi)\n{\n    ssize_t size = 0;\n    while(1)\n    {\n        ssize_t sz = efidp_node_size(dpi);\n        if(sz < 0)\n            return sz;\n\n        size += sz;\n        if(efidp_type(dpi) == EFIDP_TYPE_END)\n            break;\n\n        const_efidp next = nullptr;\n        int rc = efidp_next_node(dpi, &next);\n        if(rc < 0)\n            return rc;\n\n        dpi = next;\n    }\n\n    return size;\n}\n"
  },
  {
    "path": "include/efivar-lite/device-paths.h.j2",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#pragma once\n\n#include <errno.h>\n#include <limits.h>\n\n#pragma pack(push, 1)\ntypedef struct\n{\n    uint8_t type;\n    uint8_t subtype;\n    uint16_t length;\n} efidp_header;\n\nenum EFIDP_TYPE\n{\n    {% for category in device_paths.values() %}\n    EFIDP_TYPE_{{ category.slug.upper() }} = {{ \"0x%02x\" | format(category.type) }},\n    {% endfor %}\n};\n\n{% for category in device_paths.values() %}\nenum EFIDP_{{ category.slug.upper() }}\n{\n    {% for node in category.nodes %}\n    EFIDP_{{ category.slug.upper() }}_{{ node.slug.upper() }} = {{ \"0x%02x\" | format(node.subtype) }},\n    {% endfor %}\n};\n\n{% endfor %}\n{% for category in device_paths.values() %}\n/*\n   {{ category.name }}\n   {{ category.description }}\n*/\n{% for node in category.nodes %}\n{% for field in node.fields %}{% if field.type == \"enum\" %}\nenum EFIDP_{{ category.slug.upper() }}_{{ node.slug.upper() }}_{{ field.slug.upper() }}\n{\n    {% for enum in field.enum %}\n    EFIDP_{{ category.slug.upper() }}_{{ node.slug.upper() }}_{{ field.slug.upper() }}_{{ enum.slug.upper() }} = {{ \"0x%0x\" | format(enum.value) }},\n    {% endfor %}\n};\n\n{% endif %}{% endfor %}\n/*\n   {{ node.name }}\n   {{ node.description }}\n*/\ntypedef struct\n{\n    efidp_header header;\n    {% for field in node.fields %}\n    {%- if field.type in (\"bool\", \"guid\", \"ip4\", \"ip6\", \"mac\", \"raw_data\", \"string\", \"uri\") %}\n    uint8_t\n    {%- elif field.type == \"wstring\" %}\n    uint16_t\n    {%- elif field.type in (\"int\", \"hex\", \"enum\") %}\n    uint{{ field.size * 8 }}_t\n    {%- else %}\n    {{ field.type }}\n    {%- endif %} {{ field.slug }}\n    {%- if field.type in (\"guid\", \"ip4\", \"ip6\", \"mac\") -%}\n    [{{ field.size }}]\n    {%- elif field.size == \"n\" -%}\n    [ANYSIZE_ARRAY]\n    {%- endif -%}\n    ;\n    {% endfor %}\n} efidp_{{ category.slug }}_{{ node.slug }};\n\n{% endfor %}{% endfor %}\n/* utility functions */\ntypedef union\n{\n    efidp_header header;\n{% for category in device_paths.values() %}{% for node in category.nodes %}\n    efidp_{{ category.slug }}_{{ node.slug }} {{ category.slug }}_{{ node.slug }};\n{% endfor %}{% endfor %}\n} efidp_data;\ntypedef efidp_data *efidp;\ntypedef const efidp_data *const_efidp;\n\n#pragma pack(pop)\n\nstatic inline int16_t\n    ATTR_ARTIFICIAL ATTR_NONNULL(1) ATTR_UNUSED\n    efidp_type(const_efidp dp)\n{\n    if(ATTR_NONNULL_IS_NULL(dp))\n    {\n        errno = EINVAL;\n        return -1;\n    }\n\n    return dp->header.type;\n}\n\nstatic inline int16_t\n    ATTR_ARTIFICIAL ATTR_NONNULL(1) ATTR_UNUSED\n    efidp_subtype(const_efidp dp)\n{\n    if(ATTR_NONNULL_IS_NULL(dp))\n    {\n        errno = EINVAL;\n        return -1;\n    }\n\n    return dp->header.subtype;\n}\n\nstatic inline ssize_t\n    ATTR_ARTIFICIAL ATTR_NONNULL(1) ATTR_WARN_UNUSED_RESULT\n    efidp_node_size(const_efidp dn)\n{\n    if(ATTR_NONNULL_IS_NULL(dn) || dn->header.length < 4)\n    {\n        errno = EINVAL;\n        return -1;\n    }\n\n    return dn->header.length;\n}\n\nstatic inline int\n    ATTR_ARTIFICIAL ATTR_NONNULL(1, 2) ATTR_UNUSED ATTR_WARN_UNUSED_RESULT\n    efidp_next_node(const_efidp in, const_efidp *out)\n{\n    if(efidp_type(in) == EFIDP_TYPE_END && efidp_subtype(in) == EFIDP_END_ENTIRE)\n        return 0;\n\n    ssize_t sz = efidp_node_size(in);\n    if(sz < 0)\n        return -1;\n\n    *out = STATIC_CAST(const_efidp)(advance_bytes(in, STATIC_CAST(size_t)(sz)));\n    if(*out < in)\n    {\n        errno = EINVAL;\n        return -1;\n    }\n\n    return 1;\n}\n\nstatic inline int\n    ATTR_ARTIFICIAL ATTR_NONNULL(1, 2) ATTR_UNUSED ATTR_WARN_UNUSED_RESULT\n    efidp_next_instance(const_efidp in, const_efidp *out)\n{\n    if(efidp_type(in) != EFIDP_TYPE_END || efidp_subtype(in) != EFIDP_END_INSTANCE)\n    {\n        errno = EINVAL;\n        return -1;\n    }\n\n    ssize_t sz = efidp_node_size(in);\n    if(sz < 0)\n        return -1;\n\n    *out = STATIC_CAST(const_efidp)(advance_bytes(in, STATIC_CAST(size_t)(sz)));\n    if(*out < in)\n    {\n        errno = EINVAL;\n        return -1;\n    }\n\n    return 1;\n}\n\nstatic inline int\n    ATTR_ARTIFICIAL ATTR_NONNULL(1) ATTR_UNUSED ATTR_WARN_UNUSED_RESULT\n    efidp_is_multiinstance(const_efidp dn)\n{\n    while(1)\n    {\n        const_efidp next = nullptr;\n        int rc = efidp_next_node(dn, &next);\n        if(rc < 0)\n        {\n            errno = EINVAL;\n            return -1;\n        }\n        else if(rc == 0)\n            return 0;\n\n        dn = next;\n        if(efidp_type(dn) == EFIDP_TYPE_END && efidp_subtype(dn) == EFIDP_END_INSTANCE)\n            return 1;\n\n        if(efidp_type(dn) == EFIDP_TYPE_END && efidp_subtype(dn) == EFIDP_END_ENTIRE)\n            return 0;\n    }\n\n    return 0;\n}\n\nstatic inline int\n    ATTR_ARTIFICIAL ATTR_NONNULL(1, 2) ATTR_UNUSED ATTR_WARN_UNUSED_RESULT\n    efidp_get_next_end(const_efidp in, const_efidp *out)\n{\n    while(1)\n    {\n        if(efidp_type(in) == EFIDP_TYPE_END)\n        {\n            *out = in;\n            return 0;\n        }\n\n        ssize_t sz = efidp_node_size(in);\n        if(sz < 0)\n            break;\n\n        const_efidp next = STATIC_CAST(const_efidp)(advance_bytes(in, STATIC_CAST(size_t)(sz)));\n        if(next < in)\n        {\n            errno = EINVAL;\n            return -1;\n        }\n\n        in = next;\n    }\n\n    return -1;\n}\n\nstatic inline ssize_t\n    ATTR_ARTIFICIAL ATTR_NONNULL(1) ATTR_UNUSED ATTR_WARN_UNUSED_RESULT\n    efidp_size(const_efidp dp)\n{\n    ssize_t size = 0;\n    if(ATTR_NONNULL_IS_NULL(dp))\n    {\n        errno = EINVAL;\n        return -1;\n    }\n\n    if(efidp_type(dp) == EFIDP_TYPE_END && efidp_subtype(dp) == EFIDP_END_ENTIRE)\n        return efidp_node_size(dp);\n\n    while(1)\n    {\n        ssize_t sz = efidp_node_size(dp);\n        if(sz < 0)\n            return sz;\n\n        size += sz;\n        const_efidp next = nullptr;\n        int rc = efidp_next_instance(dp, &next);\n        if(rc < 0)\n        {\n            rc = efidp_next_node(dp, &next);\n            if(rc < 0)\n                return rc;\n\n            if(rc == 0)\n                break;\n        }\n\n        dp = next;\n    }\n\n    return size;\n}\n\nstatic inline ssize_t\n    ATTR_ARTIFICIAL ATTR_NONNULL(1) ATTR_UNUSED ATTR_WARN_UNUSED_RESULT\n    efidp_instance_size(const_efidp dpi)\n{\n    ssize_t size = 0;\n    while(1)\n    {\n        ssize_t sz = efidp_node_size(dpi);\n        if(sz < 0)\n            return sz;\n\n        size += sz;\n        if(efidp_type(dpi) == EFIDP_TYPE_END)\n            break;\n\n        const_efidp next = nullptr;\n        int rc = efidp_next_node(dpi, &next);\n        if(rc < 0)\n            return rc;\n\n        dpi = next;\n    }\n\n    return size;\n}\n\n"
  },
  {
    "path": "include/efivar-lite/device-paths.yml",
    "content": "hardware:\n  name: Hardware\n  slug: hw\n  description: This Device Path defines how a device is attached to the resource\n    domain of a system, where resource domain is simply the shared memory,\n    memory mapped I/O, and I/O space of the system.\n  type: 1\n  nodes:\n    - name: PCI\n      slug: pci\n      description: The Device Path for PCI defines the path to the PCI\n        configuration space address for a PCI device.\n      icon: audio-card\n      type: 1\n      subtype: 1\n      fields:\n        - name: Function\n          slug: function\n          description: PCI Function Number.\n          offset: 4\n          size: 1\n          type: int\n          int:\n            maximum: 7\n        - name: Device\n          slug: device\n          description: PCI Device Number.\n          offset: 5\n          size: 1\n          type: int\n          int:\n            maximum: 31\n    - name: PCCARD\n      slug: pccard\n      description: PCCARD Settings.\n      icon: audio-card\n      type: 1\n      subtype: 2\n      fields:\n        - name: Function\n          slug: function_number\n          description: Function Number (0 = First Function).\n          offset: 4\n          size: 1\n          type: int\n    - name: Memory Mapped\n      slug: memory_mapped\n      description: Memory Mapped Settings.\n      icon: media-flash\n      type: 1\n      subtype: 3\n      fields:\n        - name: Memory Type\n          slug: memory_type\n          description: The type of memory to allocate.\n          offset: 4\n          size: 4\n          type: enum\n          enum:\n            - name: Reserved\n              slug: reserved\n              description: Not usable.\n              value: 0\n            - name: Loader Code\n              slug: loader_code\n              description: The code portions of a loaded UEFI application.\n              value: 1\n            - name: Loader Data\n              slug: loader_data\n              description: The data portions of a loaded UEFI application and the default data allocation type used by a UEFI application to allocate pool memory.\n              value: 2\n            - name: Boot Services Code\n              slug: boot_services_code\n              description: The code portions of a loaded UEFI Boot Service Driver.\n              value: 3\n            - name: Boot Services Data\n              slug: boot_services_data\n              description: The data portions of a loaded UEFI Boot Serve Driver, and the default data allocation type used by a UEFI Boot Service Driver to allocate pool memory.\n              value: 4\n            - name: Runtime Services Code\n              slug: runtime_services_code\n              description: The code portions of a loaded UEFI Runtime Driver.\n              value: 5\n            - name: Runtime Services Data\n              slug: runtime_services_data\n              description: The data portions of a loaded UEFI Runtime Driver and the default data allocation type used by a UEFI Runtime Driver to allocate pool memory.\n              value: 6\n            - name: Conventional\n              slug: conventional\n              description: Free (unallocated) memory.\n              value: 7\n            - name: Unusable\n              slug: unusable\n              description: Memory in which errors have been detected.\n              value: 8\n            - name: ACPI Reclaim\n              slug: acpi_reclaim\n              description: Memory that holds the ACPI tables.\n              value: 9\n            - name: ACPI Memory NVS\n              slug: acpi_memory_nvs\n              description: Address space reserved for use by the firmware.\n              value: 10\n            - name: Memory Mapped IO\n              slug: memory_mapped_io\n              description: Used by system firmware to request that a memory-mapped IO region be mapped by the OS to a virtual address so it can be accessed by EFI runtime services.\n              value: 11\n            - name: Memory Mapped IO Port Space\n              slug: memory_mappd_io_port_space\n              description: System memory-mapped IO region that is used to translate memory cycles to IO cycles by the processor.\n              value: 12\n            - name: Pal Code\n              slug: pal_code\n              description: Address space reserved by the firmware for code that is part of the processor.\n              value: 13\n            - name: Persistent\n              slug: persistent\n              description: A memory region that operates as Conventional. However, it happens to also support byte-addressable non-volatility.\n              value: 14\n            - name: Unaccepted\n              slug: unaccepted\n              description: A memory region that represents unaccepted memory, that must be accepted by the boot target before it can be used. Unless otherwise noted, ll other EFI memory types are accepted. For platforms that support unaccepted memory, all unaccepted valid memory will be reported as unaccepted in the memory map. Unreported physical address ranges must be treated as not-present memory.\n              value: 15\n        - name: Start Address\n          slug: start_address\n          description: Starting Memory Address.\n          offset: 8\n          size: 8\n          type: hex\n        - name: End Address\n          slug: end_address\n          description: Ending Memory Address.\n          offset: 16\n          size: 8\n          type: hex\n    - name: Vendor-Defined Hardware\n      slug: vendor\n      description: The Vendor Device Path allows the creation of vendor-defined\n        Device Paths.\n      icon: audio-card\n      type: 1\n      subtype: 4\n      fields:\n        - name: GUID\n          slug: guid\n          description: Vendor-assigned GUID that defines the data that follows.\n          offset: 4\n          size: 16\n          type: guid\n        - name: Data\n          slug: data\n          description: Vendor-defined variable size data.\n          offset: 20\n          size: n\n          type: raw_data\n    - name: Controller\n      slug: controller\n      description: Controller settings.\n      icon: input-gaming\n      type: 1\n      subtype: 5\n      fields:\n        - name: Controller\n          slug: controller_number\n          description: Controller number.\n          offset: 4\n          size: 4\n          type: int\n    - name: BMC\n      slug: bmc\n      description: The Device Path for a Baseboard Management Controller (BMC) host interface.\n      icon: audio-card\n      type: 1\n      subtype: 6\n      fields:\n        - name: Interface Type\n          slug: interface_type\n          description: |-\n            The Baseboard Management Controller (BMC) host interface type:\n            0x00 - Unknown.\n            0x01 - KCS: Keyboard Controller Style.\n            0x02 - SMIC: Server Management Interface Chip.\n            0x03 - BT: Block Transfer.\n          offset: 4\n          size: 1\n          type: enum\n          enum:\n            - name: Unknown\n              slug: unknown\n              description: Unknown.\n              value: 0\n            - name: Keyboard Controller Style\n              slug: kcs\n              description: 'KCS: Keyboard Controller Style.'\n              value: 1\n            - name: Server Management Interface Chip\n              slug: smic\n              description: 'SMIC: Server Management Interface Chip.'\n              value: 2\n            - name: Block Transfer\n              slug: bt\n              description: 'BT: Block Transfer.'\n              value: 3\n        - name: Base Address\n          slug: base_address\n          description: Base address (either memory-mapped or I/O) of the BMC.\n            If the least-significant bit of the field is a 1, the address is in\n            I/O space; otherwise, the address is memory-mapped. Refer to the\n            IPMI Interface Specification for usage details.\n          offset: 5\n          size: 8\n          type: hex\nacpi:\n  name: ACPI\n  slug: acpi\n  description: This Device Path is used to describe devices whose enumeration\n    is not described in an industry-standard fashion. These devices must be\n    described using ACPI AML in the ACPI name space; this Device Path is\n    a linkage to the ACPI name space.\n  type: 2\n  nodes:\n    - name: ACPI\n      slug: acpi\n      description: This Device Path contains ACPI Device IDs that represent\n        a device’s Plug and Play Hardware ID and its corresponding unique\n        persistent ID.\n      icon: computer\n      type: 2\n      subtype: 1\n      fields:\n        - name: HID\n          slug: hid\n          description: Devices PnP hardware ID stored in a numeric 32-bit\n            compressed EISA-type ID. This value must match the corresponding HID\n            in the ACPI name space.\n          offset: 4\n          size: 4\n          type: hex\n        - name: UID\n          slug: uid\n          description: Unique ID that is required by ACPI if two devices have\n            the same HID. This value must also match the corresponding UID/HID\n            pair in the ACPI name space. Only the 32-bit numeric value type of\n            UID is supported; thus strings must not be used for the UID in the\n            ACPI name space.\n          offset: 8\n          size: 4\n          type: hex\n    - name: Expanded\n      slug: expanded\n      description: This Device Path contains ACPI Device IDs that represent\n        a device’s Plug and Play Hardware ID and its corresponding unique\n        persistent ID.\n      icon: computer\n      type: 2\n      subtype: 2\n      fields:\n        - name: HID\n          slug: hid\n          description: Devices PnP hardware ID stored in a numeric 32-bit\n            compressed EISA-type ID. This value must match the corresponding HID\n            in the ACPI name space.\n          offset: 4\n          size: 4\n          type: hex\n        - name: UID\n          slug: uid\n          description: Unique ID that is required by ACPI if two devices have\n            the same HID. This value must also match the corresponding UID/HID\n            pair in the ACPI name space. Only the 32-bit numeric value type of\n            UID is supported; thus strings must not be used for the UID in the\n            ACPI name space.\n          offset: 8\n          size: 4\n          type: hex\n        - name: CID\n          slug: cid\n          description: Devices compatible PnP hardware ID stored in a numeric\n            32-bit compressed EISA-type ID. This value must match at least one\n            of the compatible device IDs returned by the corresponding CID in\n            the ACPI name space.\n          offset: 12\n          size: 4\n          type: hex\n        - name: HIDSTR\n          slug: hidstr\n          description: Devices PnP hardware ID stored as a string. This value\n            must match the corresponding HID in the ACPI name space. If the\n            length of this string is 0, then the HID field is used. If the\n            length of this string is greater than 0, then this field supersedes\n            the HID field.\n          offset: 16\n          size: n\n          type: string\n        - name: UIDSTR\n          slug: uidstr\n          description: Unique ID that is required by ACPI if two devices have\n            the same HID. This value must also match the corresponding UID/HID\n            pair in the ACPI name space. This value is stored as a string. If\n            the length of this string is 0, then the UID field is used. If the\n            length of this string is greater than 0, then this field supersedes\n            the UID field.\n          offset: varies\n          size: n\n          type: string\n        - name: CIDSTR\n          slug: cidstr\n          description: Devices compatible PnP hardware ID stored as a string.\n            This value must match at least one of the compatible device IDs\n            returned by the corresponding CID in the ACPI namespace. If the\n            length of this string is 0, then the CID field is used. If the\n            length of this string is greater than 0, then this field supersedes\n            the CID field.\n          offset: varies\n          size: n\n          type: string\n    - name: ADR\n      slug: adr\n      description: The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.\n      icon: computer\n      type: 2\n      subtype: 3\n      fields:\n        - name: ADR\n          slug: adr\n          description: ADR value. For video output devices the value of this\n            field comes from Table B-2 ACPI 3.0 specification. At least one ADR\n            value is required\n          offset: 4\n          size: 4\n          type: hex\n        - name: Additional ADR\n          slug: additional_adr\n          description: This device path may optionally contain more than one ADR\n            entry.\n          offset: 8\n          size: n\n          type: raw_data\n    - name: NVDIMM\n      slug: nvdimm\n      description: This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.\n      icon: computer\n      type: 2\n      subtype: 4\n      fields:\n        - name: NFIT Device Handle\n          slug: nfit_device_handle\n          description: NFIT Device Handle - Unique physical identifier. See ACPI\n            Defined Devices and Device Specific Objects section, NVDIMM Devices\n            sub-chapter for the specific definition of the fields utilized for\n            this handle.\n          offset: 4\n          size: 4\n          type: hex\nmessaging:\n  name: Messaging\n  slug: msg\n  description: This Device Path is used to describe the connection of devices\n    outside the resource domain of the system. This Device Path can describe\n    physical messaging information such as a SCSI ID, or abstract information\n    such as networking protocol IP addresses.\n  type: 3\n  nodes:\n    - name: ATAPI\n      slug: atapi\n      description: ATAPI Settings.\n      icon: computer\n      type: 3\n      subtype: 1\n      fields:\n        - name: Primary\n          slug: primary\n          description: Set to zero for primary or one for secondary.\n          offset: 4\n          size: 1\n          type: bool\n        - name: Slave\n          slug: slave\n          description: Set to zero for master or one for slave mode.\n          offset: 5\n          size: 1\n          type: bool\n        - name: LUN\n          slug: lun\n          description: Logical Unit Number.\n          offset: 6\n          size: 2\n          type: int\n    - name: SCSI\n      slug: scsi\n      description: SCSI Settings.\n      icon: network-wired\n      type: 3\n      subtype: 2\n      fields:\n        - name: Target ID\n          slug: pun\n          description: Target ID on the SCSI bus (PUN).\n          offset: 4\n          size: 2\n          type: int\n        - name: LUN\n          slug: lun\n          description: Logical Unit Number (LUN).\n          offset: 6\n          size: 2\n          type: int\n    - name: Fibre Channel\n      slug: fibre_channel\n      description: Fibre Channel Settings\n      icon: network-wired\n      type: 3\n      subtype: 3\n      fields:\n        - name: Reserved\n          slug: reserved\n          description: Reserved.\n          offset: 4\n          size: 4\n          type: hex\n        - name: World Wide Name\n          slug: world_wide_name\n          description: Fibre Channel World Wide Name.\n          offset: 8\n          size: 8\n          type: hex\n        - name: LUN\n          slug: lun\n          description: Fibre Channel Logical Unit Number.\n          offset: 16\n          size: 8\n          type: hex\n    - name: Firewire\n      slug: firewire\n      description: Firewire Settings.\n      icon: network-wired\n      type: 3\n      subtype: 4\n      fields:\n        - name: Reserved\n          slug: reserved\n          description: Reserved.\n          offset: 4\n          size: 4\n          type: hex\n        - name: GUID\n          slug: guid\n          description: 1394 Global Unique ID (GUID)\n          offset: 8\n          size: 8\n          type: hex\n    - name: USB\n      slug: usb\n      description: USB settings.\n      icon: drive-removable-media\n      type: 3\n      subtype: 5\n      fields:\n        - name: Parent Port\n          slug: parent_port_number\n          description: USB Parent Port Number.\n          offset: 4\n          size: 1\n          type: int\n        - name: Interface\n          slug: interface_number\n          description: USB Interface Number.\n          offset: 5\n          size: 1\n          type: int\n    - name: I2O\n      slug: i2o\n      description: I2O Settings\n      icon: computer\n      type: 3\n      subtype: 6\n      fields:\n        - name: Target ID\n          slug: tid\n          description: Target ID (TID) for a device.\n          offset: 4\n          size: 4\n          type: int\n    - name: InfiniBand\n      slug: infiniband\n      description: InfiniBand Settings.\n      icon: network-wireless\n      type: 3\n      subtype: 9\n      fields:\n        - name: Resource Flags\n          slug: resource_flags\n          description: |-\n            Flags to help identify/manage InfiniBand device path elements:\n            Bit 0 - IOC/Service (0b = IOC, 1b = Service).\n            Bit 1 - Extend Boot Environment.\n            Bit 2 - Console Protocol.\n            Bit 3 - Storage Protocol.\n            Bit 4 - Network Protocol.\n            All other bits are reserved.\n          offset: 4\n          size: 4\n          type: hex\n        - name: PORT GID\n          slug: port_gid\n          description: 128-bit Global Identifier for remote fabric port\n          offset: 8\n          size: 16\n          type: guid\n        - name: IOC GUID/Service ID\n          slug: ioc_guid_service_id\n          description: 64-bit unique identifier to remote IOC or server process.\n            Interpretation of field specified by Resource Flags (bit 0)\n          offset: 24\n          size: 8\n          type: hex\n        - name: Target Port ID\n          slug: target_port_id\n          description: 64-bit persistent ID of remote IOC port.\n          offset: 32\n          size: 8\n          type: hex\n        - name: Device ID\n          slug: device_id\n          description: 64-bit persistent ID of remote device.\n          offset: 40\n          size: 8\n          type: hex\n    - name: Vendor-Defined Messaging\n      slug: vendor\n      description: The Vendor Device Path allows the creation of vendor-defined\n        Device Paths.\n      icon: audio-card\n      type: 3\n      subtype: 10\n      fields:\n        - name: GUID\n          slug: guid\n          description: Vendor-assigned GUID that defines the data that follows.\n          offset: 4\n          size: 16\n          type: guid\n        - name: Data\n          slug: data\n          description: Vendor-defined variable size data.\n          offset: 20\n          size: n\n          type: raw_data\n    - name: MAC Address\n      slug: mac_address\n      description: MAC settings.\n      icon: network-wired\n      type: 3\n      subtype: 11\n      fields:\n        - name: MAC\n          slug: address\n          description: The MAC address for a network interface padded with 0s.\n          offset: 4\n          size: 32\n          type: mac\n        - name: Interface Type\n          slug: if_type\n          description: Network interface type (i.e., 802.3, FDDI). See RFC 3232.\n          offset: 36\n          size: 1\n          type: int\n    - name: IPv4\n      slug: ipv4\n      description: IPv4 settings.\n      icon: network-wired\n      type: 3\n      subtype: 12\n      fields:\n        - name: Local IP Address\n          slug: local_ip_address\n          description: The local IPv4 address.\n          offset: 4\n          size: 4\n          type: ip4\n        - name: Remote IP Address\n          slug: remote_ip_address\n          description: The remote IPv4 address.\n          offset: 8\n          size: 4\n          type: ip4\n        - name: Local Port\n          slug: local_port\n          description: The local port number.\n          offset: 12\n          size: 2\n          type: int\n        - name: Remote Port\n          slug: remote_port\n          description: The remote port number.\n          offset: 14\n          size: 2\n          type: int\n        - name: Protocol\n          slug: protocol\n          description: The network protocol (i.e., UDP, TCP). See RFC 3232.\n          offset: 16\n          size: 2\n          type: int\n        - name: Static IP Address\n          slug: static_ip_address\n          description: |-\n            0x00 - The Source IP Address was assigned though DHCP.\n            0x01 - The Source IP Address is statically bound.\n          offset: 18\n          size: 1\n          type: bool\n        - name: Gateway IP Address\n          slug: gateway_ip_address\n          description: The Gateway IP Address.\n          offset: 19\n          size: 4\n          type: ip4\n        - name: Subnet Mask\n          slug: subnet_mask\n          description: Subnet mask.\n          offset: 23\n          size: 4\n          type: ip4\n    - name: IPv6\n      slug: ipv6\n      description: IPv6 settings.\n      icon: network-wired\n      type: 3\n      subtype: 13\n      fields:\n        - name: Local IP Address\n          slug: local_ip_address\n          description: The local IPv6 address.\n          offset: 4\n          size: 16\n          type: ip6\n        - name: Remote IP Address\n          slug: remote_ip_address\n          description: The remote IPv6 address.\n          offset: 20\n          size: 16\n          type: ip6\n        - name: Local Port\n          slug: local_port\n          description: The local port number.\n          offset: 36\n          size: 2\n          type: int\n        - name: Remote Port\n          slug: remote_port\n          description: The remote port number.\n          offset: 38\n          size: 2\n          type: int\n        - name: Protocol\n          slug: protocol\n          description: The network protocol (i.e., UDP, TCP). See RFC 3232.\n          offset: 40\n          size: 2\n          type: int\n        - name: IP Address Origin\n          slug: ip_address_origin\n          description: |-\n            0x00 - The Local IP Address was manually configured.\n            0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n            0x02 - The Local IP Address is assigned through IPv6 stateful configuration.\n          offset: 42\n          size: 1\n          type: enum\n          enum:\n            - name: Static\n              slug: static\n              description: The Local IP Address was manually configured.\n              value: 0\n            - name: Stateless auto-configuration\n              slug: stateless\n              description: The Local IP Address is assigned through IPv6 stateless auto-configuration.\n              value: 1\n            - name: Stateful auto-configuration\n              slug: stateful\n              description: The Local IP Address is assigned through IPv6 stateful configuration.\n              value: 2\n        - name: Prefix Length\n          slug: prefix_length\n          description: The Prefix Length.\n          offset: 43\n          size: 1\n          type: int\n          int:\n            maximum: 128\n        - name: Gateway IP Address\n          slug: gateway_ip_address\n          description: The Gateway IP Address.\n          offset: 44\n          size: 16\n          type: ip6\n    - name: UART\n      slug: uart\n      description: UART Settings.\n      icon: audio-card\n      type: 3\n      subtype: 14\n      fields:\n        - name: Reserved\n          slug: reserved\n          description: Reserved.\n          offset: 4\n          size: 4\n          type: hex\n        - name: Baud Rate\n          slug: baud_rate\n          description: The baud rate setting for the UART style device. A value\n            of 0 means that the devices default baud rate will be used.\n          offset: 8\n          size: 8\n          type: hex\n        - name: Data Bits\n          slug: data_bits\n          description: The number of data bits for the UART style device. A\n            value of 0 means that the devices default number of data bits will\n            be used.\n          offset: 16\n          size: 1\n          type: int\n        - name: Parity\n          slug: parity\n          description: |-\n            The parity setting for the UART style device:\n            0x00 - Default Parity.\n            0x01 - No Parity.\n            0x02 - Even Parity.\n            0x03 - Odd Parity.\n            0x04 - Mark Parity.\n            0x05 - Space Parity.\n          offset: 17\n          size: 1\n          type: enum\n          enum:\n            - name: Default\n              slug: default\n              description: Default Parity.\n              value: 0\n            - name: 'No'\n              slug: 'no'\n              description: No Parity.\n              value: 1\n            - name: Even\n              slug: even\n              description: Even Parity.\n              value: 2\n            - name: Odd\n              slug: odd\n              description: Odd Parity.\n              value: 3\n            - name: Mark\n              slug: mark\n              description: Mark Parity.\n              value: 4\n            - name: Space\n              slug: space\n              description: Space Parity.\n              value: 5\n        - name: Stop Bits\n          slug: stop_bits\n          description: |-\n            The number of stop bits for the UART style device:\n            0x00 - Default Stop Bits.\n            0x01 - 1 Stop Bit.\n            0x02 - 1.5 Stop Bits.\n            0x03 - 2 Stop Bits.\n          offset: 18\n          size: 1\n          type: enum\n          enum:\n            - name: Default\n              slug: default\n              description: Default Stop Bits.\n              value: 0\n            - name: 1\n              slug: one\n              description: 1 Stop Bit.\n              value: 1\n            - name: 1.5\n              slug: one_and_half\n              description: 1.5 Stop Bits.\n              value: 2\n            - name: 2\n              slug: two\n              description: 2 Stop Bits.\n              value: 3\n    - name: USB Class\n      slug: usb_class\n      description: USB Class Settings.\n      icon: drive-removable-media\n      type: 3\n      subtype: 15\n      fields:\n        - name: Vendor ID\n          slug: vendor_id\n          description: Vendor ID assigned by USB-IF. A value of 0xFFFF will\n            match any Vendor ID.\n          offset: 4\n          size: 2\n          type: hex\n        - name: Product ID\n          slug: product_id\n          description: Product ID assigned by USB-IF. A value of 0xFFFF will\n            match any Product ID.\n          offset: 6\n          size: 2\n          type: hex\n        - name: Device Class\n          slug: device_class\n          description: The class code assigned by the USB-IF. A value of 0xFF\n            will match any class code.\n          offset: 8\n          size: 1\n          type: hex\n        - name: Device Subclass\n          slug: device_subclass\n          description: The subclass code assigned by the USB-IF. A value of 0xFF\n            will match any subclass code.\n          offset: 9\n          size: 1\n          type: hex\n        - name: Device Protocol\n          slug: device_protocol\n          description: The protocol code assigned by the USB-IF. A value of 0xFF\n            will match any protocol code.\n          offset: 10\n          size: 1\n          type: hex\n    - name: USB WWID\n      slug: usb_wwid\n      description: This device path describes a USB device using its serial number.\n      icon: drive-removable-media\n      type: 3\n      subtype: 16\n      fields:\n        - name: Interface\n          slug: interface_number\n          description: USB interface Number.\n          offset: 4\n          size: 2\n          type: int\n        - name: Device Vendor Id\n          slug: device_vendor_id\n          description: USB vendor id of the device.\n          offset: 6\n          size: 2\n          type: hex\n        - name: Device Product Id\n          slug: device_product_id\n          description: USB product id of the device.\n          offset: 8\n          size: 2\n          type: hex\n        - name: Serial Number\n          slug: serial_number\n          description: Last 64-or-fewer UTF-16 characters of the USB serial\n            number. The length of the string is determined by the Length field\n            less the offset of the Serial Number field (10).\n          offset: 10\n          size: n\n          type: wstring\n    - name: Device Logical Unit\n      slug: device_logical_unit\n      description: Device Logical Unit Settings.\n      icon: computer\n      type: 3\n      subtype: 17\n      fields:\n        - name: LUN\n          slug: lun\n          description: Logical Unit Number for the interface.\n          offset: 4\n          size: 1\n          type: int\n    - name: SATA\n      slug: sata\n      description: SATA settings.\n      icon: drive-harddisk\n      type: 3\n      subtype: 18\n      fields:\n        - name: HBA Port\n          slug: hba_port_number\n          description: The HBA port number that facilitates the connection to\n            the device or a port multiplier. The value 0xFFFF is reserved.\n          offset: 4\n          size: 2\n          type: int\n          int:\n            maximum: 65534\n        - name: Port Multiplier Port\n          slug: port_multiplier_port_number\n          description: The Port multiplier port number that facilitates the\n            connection to the device. Must be set to 0xFFFF if the device is\n            directly connected to the HBA.\n          offset: 6\n          size: 2\n          type: int\n        - name: LUN\n          slug: lun\n          description: Logical Unit Number.\n          offset: 8\n          size: 2\n          type: int\n    - name: iSCSI\n      slug: iscsi\n      description: iSCSI Settings.\n      icon: computer\n      type: 3\n      subtype: 19\n      fields:\n        - name: Protocol\n          slug: protocol\n          description: Network Protocol (0 = TCP, 1+ = reserved).\n          offset: 4\n          size: 2\n          type: int\n        - name: Options\n          slug: options\n          description: iSCSI Login Options.\n          offset: 6\n          size: 2\n          type: hex\n        - name: LUN\n          slug: lun\n          description: 8 byte array containing the iSCSI Logical Unit Number.\n          offset: 8\n          size: 8\n          type: hex\n        - name: Target Portal Group\n          slug: target_portal_group\n          description: iSCSI Target Portal group tag the initiator intends to\n            establish a session with.\n          offset: 16\n          size: 2\n          type: int\n        - name: Target Name\n          slug: target_name\n          description: iSCSI NodeTarget Name.\n          offset: 18\n          size: n\n          type: string\n    - name: VLAN\n      slug: vlan\n      description: VLAN Settings.\n      icon: network-wired\n      type: 3\n      subtype: 20\n      fields:\n        - name: Vlan ID\n          slug: vlan_id\n          description: VLAN identifier (0-4094).\n          offset: 4\n          size: 2\n          type: int\n          int:\n            maximum: 4094\n    - name: Fibre Channel Ex\n      slug: fibre_channel_ex\n      description: The Fibre Channel Ex device path clarifies the definition of\n        the Logical Unit Number field to conform with the T-10 SCSI Architecture\n        Model 4 specification.\n      icon: network-wired\n      type: 3\n      subtype: 21\n      fields:\n        - name: Reserved\n          slug: reserved\n          description: Reserved.\n          offset: 4\n          size: 4\n          type: hex\n        - name: World Wide Name\n          slug: world_wide_name\n          description: 8 byte array containing Fibre Channel End Device Port\n            Name (a.k.a., World Wide Name).\n          offset: 8\n          size: 8\n          type: hex\n        - name: LUN\n          slug: lun\n          description: 8 byte array containing Fibre Channel Logical Unit Number.\n          offset: 16\n          size: 8\n          type: hex\n    - name: SAS Extended Messaging\n      slug: sas_extended_messaging\n      description: The SAS Ex device path clarifies the definition of the\n        Logical Unit Number field to conform with the T-10 SCSI Architecture\n        Model 4 specification.\n      icon: drive-harddisk\n      type: 3\n      subtype: 22\n      fields:\n        - name: SAS Address\n          slug: sas_address\n          description: 8-byte array of the SAS Address for Serial Attached SCSI\n            Target Port.\n          offset: 4\n          size: 8\n          type: hex\n        - name: LUN\n          slug: lun\n          description: 8-byte array of the SAS Logical Unit Number.\n          offset: 20\n          size: 8\n          type: hex\n        - name: Device and Topology Info\n          slug: device_and_topology_info\n          description: More Information about the device and its interconnect.\n          offset: 28\n          size: 2\n          type: hex\n        - name: Relative Target Port\n          slug: relative_target_port\n          description: Relative Target Port (RTP).\n          offset: 30\n          size: 2\n          type: int\n    - name: NVM Express NS\n      slug: nvm_express_ns\n      description: NVM Express Namespace Settings.\n      icon: drive-harddisk\n      type: 3\n      subtype: 23\n      fields:\n        - name: NSID\n          slug: namespace_identifier\n          description: Namespace identifier (NSID). The values of 0 and\n            0xFFFFFFFF are invalid.\n          offset: 4\n          size: 4\n          type: hex\n        - name: EUI-64\n          slug: ieee_extended_unique_identifier\n          description: This field contains the IEEE Extended Unique Identifier\n            (EUI-64). Devices without an EUI-64 value must initialize this field\n            with a value of 0.\n          offset: 8\n          size: 8\n          type: hex\n    - name: URI\n      slug: uri\n      description: Refer to RFC 3986 for details on the URI contents.\n      icon: text-html\n      type: 3\n      subtype: 24\n      fields:\n        - name: URI\n          slug: uri\n          description: Instance of the URI pursuant to RFC 3986.\n          offset: 4\n          size: n\n          type: uri\n    - name: UFS\n      slug: ufs\n      description: UFS Settings.\n      icon: drive-removable-media\n      type: 3\n      subtype: 25\n      fields:\n        - name: Target ID\n          slug: pun\n          description: Target ID on the UFS interface (PUN).\n          offset: 4\n          size: 1\n          type: hex\n        - name: LUN\n          slug: lun\n          description: Logical Unit Number (LUN).\n          offset: 5\n          size: 1\n          type: hex\n    - name: SD\n      slug: sd\n      description: SD Settings.\n      icon: media-flash\n      type: 3\n      subtype: 26\n      fields:\n        - name: Slot\n          slug: slot_number\n          description: Slot Number\n          offset: 4\n          size: 1\n          type: int\n    - name: Bluetooth\n      slug: bluetooth\n      description: EFI Bluetooth Settings.\n      icon: network-wireless\n      type: 3\n      subtype: 27\n      fields:\n        - name: Device Address\n          slug: device_address\n          description: 48-bit Bluetooth device address.\n          offset: 4\n          size: 6\n          type: mac\n    - name: Wi-Fi\n      slug: wi_fi\n      description: Wi-Fi Settings.\n      icon: network-wireless\n      type: 3\n      subtype: 28\n      fields:\n        - name: SSID\n          slug: ssid\n          description: SSID in octet string.\n          offset: 4\n          size: 32\n          type: string\n    - name: eMMC\n      slug: emmc\n      description: Embedded Multi-Media Card Settings.\n      icon: media-flash\n      type: 3\n      subtype: 29\n      fields:\n        - name: Slot\n          slug: slot_number\n          description: Slot Number\n          offset: 4\n          size: 1\n          type: int\n    - name: BluetoothLE\n      slug: bluetoothle\n      description: EFI BluetoothLE Settings.\n      icon: network-wireless\n      type: 3\n      subtype: 30\n      fields:\n        - name: Device Address\n          slug: device_address\n          description: 48-bit Bluetooth device address.\n          offset: 4\n          size: 6\n          type: mac\n        - name: Address Type\n          slug: address_type\n          description: |-\n            0x00 - Public Device Address.\n            0x01 - Random Device Address.\n          offset: 10\n          size: 1\n          type: enum\n          enum:\n            - name: Public\n              slug: public\n              description: Public Device Address\n              value: 0\n            - name: Random\n              slug: random\n              description: Random Device Address\n              value: 1\n    - name: DNS\n      slug: dns\n      description: DNS Settings.\n      icon: network-wired\n      type: 3\n      subtype: 31\n      fields:\n        - name: IPv6\n          slug: ipv6\n          description: |-\n            0x00 - The DNS server address is IPv4 address.\n            0x01 - The DNS server address is IPv6 address.\n          offset: 4\n          size: 1\n          type: bool\n        - name: Data\n          slug: data\n          description: One or more instances of the DNS server address in\n            EFI_IP_ADDRESS.\n          offset: 5\n          size: n\n          type: raw_data\n    - name: NVDIMM NS\n      slug: nvdimm_ns\n      description: This device path describes a bootable NVDIMM namespace that\n        is defined by a namespace label.\n      icon: drive-harddisk\n      type: 3\n      subtype: 32\n      fields:\n        - name: UUID\n          slug: uuid\n          description: Namespace unique label identifier UUID. See the Uuid\n            description in the NVDIMM Label Protocol - Label definitions section\n            for details on this field.\n          offset: 4\n          size: 16\n          type: guid\n    - name: REST Service\n      slug: rest_service\n      description: REST Service Settings.\n      icon: network-wired\n      type: 3\n      subtype: 33\n      fields:\n        - name: REST Service\n          slug: rest_service\n          description: |-\n            0x01 - Redfish REST Service.\n            0x02 - OData REST Service.\n            0xFF - Vendor specific REST Service.\n          offset: 4\n          size: 1\n          type: enum\n          enum:\n            - name: Redfish\n              slug: redfish\n              description: Redfish REST Service\n              value: 1\n            - name: OData\n              slug: odata\n              description: OData REST Service\n              value: 2\n            - name: Vendor specific\n              slug: vendor\n              description: Vendor specific REST Service\n              value: 255\n        - name: Access Mode\n          slug: access_mode\n          description: |-\n            0x01 - In-Band REST Service.\n            0x02 - Out-of-band REST Service.\n          offset: 5\n          size: 1\n          type: enum\n          enum:\n            - name: In-Band\n              slug: in_band\n              description: In-Band REST Service\n              value: 1\n            - name: Out-of-band\n              slug: out_of_band\n              description: Out-of-band REST Service\n              value: 2\n        - name: GUID\n          slug: guid\n          description: GUID of vendor specific REST service.\n          offset: 6\n          size: 16\n          type: guid\n        - name: Data\n          slug: data\n          description: Vendor-defined data.\n          offset: 22\n          size: n\n          type: raw_data\n    - name: NVMe-oF NS\n      slug: nvme_of_ns\n      description: This device path describes a bootable NVMe over Fiber\n        namespace that is defined by a unique Namespace and Subsystem NQN\n        identity.\n      icon: network-wired\n      type: 3\n      subtype: 34\n      fields:\n        - name: NIDT\n          slug: nidt\n          description: Namespace Identifier Type (NIDT), for globally unique\n            type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the\n            NVM Express Base Specification.\n          offset: 4\n          size: 1\n          type: int\n        - name: NID\n          slug: nid\n          description: Namespace Identifier (NID), a globally unique value\n            defined in the Namespace Identification De-scriptor list (CNS 03h)\n            by the NVM Express Base Specification in big endian format.\n          offset: 5\n          size: 16\n          type: guid\n        - name: Subsystem NQN\n          slug: subsystem_nqn\n          description: Unique identifier of an NVM subsystem stored as UTF-8\n            string of n-bytes in compliance with the NVMe Qualified Name in\n            the NVM Express Base Specification. Subsystem NQN is used for\n            purposes of identification and authentication. Maximum length of 224\n            bytes.\n          offset: 21\n          size: n\n          type: string\n          string:\n            max_length: 224\nmedia:\n  name: Media\n  slug: media\n  description: This Device Path is used to describe the portion of a medium that\n    is being abstracted by a boot service. For example, a Media Device Path\n    could define which partition on a hard drive was being used.\n  type: 4\n  nodes:\n    - name: Hard Drive\n      slug: hd\n      description: The Hard Drive Media Device Path is used to represent a\n        partition on a hard drive.\n      icon: drive-harddisk\n      type: 4\n      subtype: 1\n      fields:\n        - name: Partition\n          slug: partition_number\n          description: Describes the entry in a partition table, starting with\n            entry 1. Partition number zero represents the entire device. Valid\n            partition numbers for a MBR partition are [1, 4]. Valid partition\n            numbers for a GPT partition are [1, NumberOfPartitionEntries].\n          offset: 4\n          size: 4\n          type: int\n          int:\n            minimum: 1\n            maximum: 128\n        - name: Partition Start\n          slug: partition_start\n          description: Starting LBA of the partition on the hard drive.\n          offset: 8\n          size: 8\n          type: hex\n        - name: Partition Size\n          slug: partition_size\n          description: Size of the partition in units of Logical Blocks.\n          offset: 16\n          size: 8\n          type: hex\n        - name: Partition Signature\n          slug: partition_signature\n          description: |-\n            Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.\n          offset: 24\n          size: 16\n          type: guid\n        - name: Partition Format\n          slug: partition_format\n          description: |-\n            Partition Format(Unused values reserved):\n            0x01 - PC-AT compatible legacy MBR (Legacy MBR). Partition Start and Partition Size come from PartitionStartingLBA and PartitionSizeInLBA for the partition.\n            0x02 - GUID Partition Table.\n          offset: 40\n          size: 1\n          type: enum\n          enum:\n            - name: MBR\n              slug: mbr\n              description: PC-AT compatible legacy MBR.\n              value: 1\n            - name: GUID\n              slug: guid\n              description: GUID Partition Table.\n              value: 2\n        - name: Signature Type\n          slug: signature_type\n          description: |-\n            Type of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.\n          offset: 41\n          size: 1\n          type: enum\n          enum:\n            - name: None\n              slug: none\n              description: No Disk Signature.\n              value: 0\n            - name: MBR\n              slug: mbr\n              description: 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n              value: 1\n            - name: GUID\n              slug: guid\n              description: GUID signature.\n              value: 2\n    - name: CD-ROM\n      slug: cd_rom\n      description: The CD-ROM Media Device Path is used to define a system\n        partition that exists on a CD-ROM.\n      icon: drive-optical\n      type: 4\n      subtype: 2\n      fields:\n        - name: Boot Entry\n          slug: boot_entry\n          description: Boot Entry number from the Boot Catalog. The\n            Initial/Default entry is defined as zero.\n          offset: 4\n          size: 4\n          type: int\n        - name: Partition Start\n          slug: partition_start\n          description: Starting RBA of the partition on the medium. CD-ROMs use\n            Relative logical Block Addressing.\n          offset: 8\n          size: 8\n          type: hex\n        - name: Partition Size\n          slug: partition_size\n          description: Size of the partition in units of Blocks, also called\n            Sectors.\n          offset: 16\n          size: 8\n          type: hex\n    - name: Vendor-Defined Media\n      slug: vendor\n      description: The Vendor Device Path allows the creation of vendor-defined\n        Device Paths.\n      icon: computer\n      type: 4\n      subtype: 3\n      fields:\n        - name: GUID\n          slug: guid\n          description: Vendor-assigned GUID that defines the data that follows.\n          offset: 4\n          size: 16\n          type: guid\n        - name: Data\n          slug: data\n          description: Vendor-defined variable size data.\n          offset: 20\n          size: n\n          type: raw_data\n    - name: File Path\n      slug: file_path\n      description: File Path settings.\n      icon: document-properties\n      type: 4\n      subtype: 4\n      fields:\n        - name: Path Name\n          slug: path_name\n          description: Path including directory and file names.\n          offset: 4\n          size: n\n          type: wstring\n    - name: Protocol\n      slug: protocol\n      description: The Media Protocol Device Path is used to denote the protocol\n        that is being used in a device path at the location of the path\n        specified.\n      icon: media-floppy\n      type: 4\n      subtype: 5\n      fields:\n        - name: GUID\n          slug: guid\n          description: The ID of the protocol.\n          offset: 4\n          size: 16\n          type: guid\n    - name: Firmware File\n      slug: firmware_file\n      description: Describes a firmware file in a firmware volume.\n      icon: document-properties\n      type: 4\n      subtype: 6\n      fields:\n        - name: Name\n          slug: name\n          description: Firmware file name GUID.\n          offset: 4\n          size: 16\n          type: guid\n    - name: Firmware Volume\n      slug: firmware_volume\n      description: Describes a firmware volume.\n      icon: document-properties\n      type: 4\n      subtype: 7\n      fields:\n        - name: Name\n          slug: name\n          description: Firmware volume name GUID.\n          offset: 4\n          size: 16\n          type: guid\n    - name: Relative Offset Range\n      slug: relative_offset_range\n      description: This device path node specifies a range of offsets relative\n        to the first byte available on the device.\n      icon: computer\n      type: 4\n      subtype: 8\n      fields:\n        - name: Reserved\n          slug: reserved\n          description: Reserved for future use.\n          offset: 4\n          size: 4\n          type: hex\n        - name: Starting Offset\n          slug: starting_offset\n          description: Offset of the first byte, relative to the parent device\n            node.\n          offset: 8\n          size: 8\n          type: hex\n        - name: Ending Offset\n          slug: ending_offset\n          description: Offset of the last byte, relative to the parent device\n            node.\n          offset: 16\n          size: 8\n          type: hex\n    - name: RAM Disk\n      slug: ram_disk\n      description: RAM Disk Settings.\n      icon: computer\n      type: 4\n      subtype: 9\n      fields:\n        - name: Starting Address\n          slug: starting_address\n          description: Starting Memory Address.\n          offset: 4\n          size: 8\n          type: hex\n        - name: Ending Address\n          slug: ending_address\n          description: Ending Memory Address.\n          offset: 12\n          size: 8\n          type: hex\n        - name: GUID\n          slug: guid\n          description: GUID that defines the type of the RAM Disk.\n          offset: 20\n          size: 16\n          type: guid\n        - name: Disk Instance\n          slug: disk_instance\n          description: RAM Disk instance number, if supported.\n          offset: 36\n          size: 2\n          type: int\nbios:\n  name: BIOS\n  slug: bios\n  description: This Device Path is used to point to boot legacy operating\n    systems. it is based on the BIOS Boot Specification Version 1.01.\n  type: 5\n  nodes:\n    - name: BIOS Boot Specification\n      slug: boot_specification\n      description: This Device Path is used to describe the booting of\n        non-EFI-aware operating systems.\n      icon: computer\n      type: 5\n      subtype: 1\n      fields:\n        - name: Device Type\n          slug: device_type\n          description: |-\n            An identification number that describes what type of device this is:\n              0x00 - Reserved.\n              0x01 - Floppy.\n              0x02 - Hard disk.\n              0x03 - CD-ROM.\n              0x04 - PCMCIA.\n              0x05 - USB device.\n              0x06 - Embedded network.\n              0x07..0x7F - Reserved.\n              0x80 - BEV device.\n              0x81..0xFE - Reserved.\n              0xFF - Unknown.\n          offset: 4\n          size: 2\n          type: hex\n        - name: Status Flag\n          slug: status_flag\n          description: |-\n            Status Flags as defined by the BIOS Boot Specification:\n            |  Bits  |     Field     | Value | Description\n            |========|===============|=======|=============\n            |  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n            |--------|-------------- |-------|-------------\n            |  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n            |--------|-------------- |-------|-------------\n            |   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n            |        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n            |--------|---------------|-------|-------------\n            |    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n            |        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n            |--------|---------------|-------|-------------\n            | 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n            |        |               |       | 1 = Unknown if bootable media present.\n            |        |               |       | 2 = Media present and appears bootable.\n            |        |               |       | 3 = Reserved for future use.\n            |--------|---------------|-------|-------------\n            | 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero\n          offset: 6\n          size: 2\n          type: hex\n        - name: Description\n          slug: description\n          description: String that describes the boot device to a user.\n          offset: 8\n          size: n\n          type: string\nend:\n  name: End\n  slug: end\n  description: Depending on the Sub-Type, this Device Path node is used to\n    indicate the end of the Device Path instance or Device Path structure.\n  type: 127\n  nodes:\n    - name: End This Instance\n      slug: instance\n      description: This type of node terminates one Device Path instance and\n        denotes the start of another. This is only required when an environment\n        variable represents multiple devices.\n      icon: process-stop\n      type: 127\n      subtype: 1\n      fields: []\n    - name: End Entire\n      slug: entire\n      description: This type of node terminates an entire Device Path. Software\n        searches for this sub-type to find the end of a Device Path. All Device\n        Paths must end with this sub-type.\n      icon: process-stop\n      type: 127\n      subtype: 255\n      fields: []\n\n"
  },
  {
    "path": "include/efivar-lite/efivar-lite.h",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n/*\n * Cutdown version of efivar (https://github.com/rhboot/efivar) with only\n * necessary things for boot manager manipulation.\n */\n#pragma once\n\n#include <stdarg.h>\n#include <string.h>\n\n#pragma pack(push, 1)\ntypedef struct ATTR_ALIGN(1)\n{\n#if defined(_WIN32)\n    TCHAR data[39];\n#elif defined(__APPLE__)\n    char data[37];\n#else\n    uint32_t a;\n    uint16_t b;\n    uint16_t c;\n    uint16_t d;\n    uint8_t e[6];\n#endif\n} efi_guid_t;\n#pragma pack(pop)\n\nstatic const uint32_t EFI_VARIABLE_ATTRIBUTE_NON_VOLATILE = 0x00000001;\nstatic const uint32_t EFI_VARIABLE_ATTRIBUTE_BOOTSERVICE_ACCESS = 0x00000002;\nstatic const uint32_t EFI_VARIABLE_ATTRIBUTE_RUNTIME_ACCESS = 0x00000004;\nstatic const uint32_t EFI_VARIABLE_ATTRIBUTE_HARDWARE_ERROR_RECORD = 0x00000008;\nstatic const uint32_t EFI_VARIABLE_ATTRIBUTE_AUTHENTICATED_WRITE_ACCESS = 0x00000010;\nstatic const uint32_t EFI_VARIABLE_ATTRIBUTE_TIME_BASED_AUTHENTICATED_WRITE_ACCESS = 0x00000020;\nstatic const uint32_t EFI_VARIABLE_ATTRIBUTE_APPEND_WRITE = 0x00000040;\nstatic const uint32_t EFI_VARIABLE_ATTRIBUTE_DEFAULTS =\n#if defined(__APPLE__)\n    // macOS doesn't support attributes for variables\n    0\n#else\n    0x00000007 // EFI_VARIABLE_ATTRIBUTE_NON_VOLATILE | EFI_VARIABLE_ATTRIBUTE_BOOTSERVICE_ACCESS | EFI_VARIABLE_ATTRIBUTE_RUNTIME_ACCESS\n#endif\n    ;\n\nstatic const mode_t EFI_VARIABLE_MODE_DEFAULTS =\n#if defined(_WIN32)\n    // Windows doesn't support file mode setting for variables\n    STATIC_CAST(mode_t)(0)\n#else\n    S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH\n#endif\n    ;\n\nstatic const uint64_t EFI_OS_INDICATIONS_BOOT_TO_FW_UI = 0x0000000000000001;\nstatic const uint64_t EFI_OS_INDICATIONS_TIMESTAMP_REVOCATION = 0x0000000000000002;\nstatic const uint64_t EFI_OS_INDICATIONS_FILE_CAPSULE_DELIVERY_SUPPORTED = 0x0000000000000004;\nstatic const uint64_t EFI_OS_INDICATIONS_FMP_CAPSULE_SUPPORTED = 0x0000000000000008;\nstatic const uint64_t EFI_OS_INDICATIONS_CAPSULE_RESULT_VAR_SUPPORTED = 0x0000000000000010;\nstatic const uint64_t EFI_OS_INDICATIONS_START_OS_RECOVERY = 0x0000000000000020;\nstatic const uint64_t EFI_OS_INDICATIONS_START_PLATFORM_RECOVERY = 0x0000000000000040;\nstatic const uint64_t EFI_OS_INDICATIONS_JSON_CONFIG_DATA_REFRESH = 0x0000000000000080;\n\nstatic const uint32_t EFI_BOOT_OPTION_SUPPORT_KEY = 0x00000001;\nstatic const uint32_t EFI_BOOT_OPTION_SUPPORT_APP = 0x00000002;\nstatic const uint32_t EFI_BOOT_OPTION_SUPPORT_SYSPREP = 0x00000010;\nstatic const uint32_t EFI_BOOT_OPTION_SUPPORT_COUNT = 0x00000300;\n\nextern const efi_guid_t efi_guid_global;\nextern const efi_guid_t efi_guid_apple;\n\nint efi_variables_supported(void);\n\nint efi_get_variable(efi_guid_t guid, const TCHAR *name, uint8_t **data, size_t *data_size, uint32_t *attributes) ATTR_NONNULL(2, 3, 4, 5);\nint efi_del_variable(efi_guid_t guid, const TCHAR *name) ATTR_NONNULL(2);\nint efi_set_variable(efi_guid_t guid, const TCHAR *name, uint8_t *data, size_t data_size, uint32_t attributes, mode_t mode) ATTR_NONNULL(2, 3);\nint efi_get_next_variable_name(efi_guid_t **guid, TCHAR **name) ATTR_NONNULL(1, 2);\nvoid efi_set_get_next_variable_name_progress_cb(void (*progress_cb)(size_t, size_t));\n\nint efi_guid_cmp(const efi_guid_t *a, const efi_guid_t *b);\n\nint efi_error_get(unsigned int n, TCHAR **const filename, TCHAR **const function, int *line, TCHAR **const message, int *error) ATTR_NONNULL(2, 3, 4, 5, 6);\nvoid efi_error_clear(void);\n"
  },
  {
    "path": "include/efivar-lite/key-option.h",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#pragma once\n\n#pragma pack(push, 1)\ntypedef struct efi_input_key_s\n{\n    uint16_t scan_code;\n    char16_t unicode_char;\n} efi_input_key;\n\ntypedef union efi_boot_key_data_u\n{\n    struct efi_boot_key_data_options_s\n    {\n        uint32_t revision : 8;\n        uint32_t shift_pressed : 1;\n        uint32_t control_pressed : 1;\n        uint32_t alt_pressed : 1;\n        uint32_t logo_pressed : 1;\n        uint32_t menu_pressed : 1;\n        uint32_t sys_req_pressed : 1;\n        uint32_t reserved : 16;\n        uint32_t input_key_count : 2;\n    } options;\n    uint32_t packed_value;\n} efi_boot_key_data;\n\ntypedef struct efi_key_option_s\n{\n    efi_boot_key_data key_data;\n    uint32_t boot_option_crc;\n    uint16_t boot_option;\n    efi_input_key keys[ANYSIZE_ARRAY];\n    // uint8_t vendor_data[ANYSIZE_ARRAY];\n} efi_key_option;\n#pragma pack(pop)\n"
  },
  {
    "path": "include/efivar-lite/load-option.h",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#pragma once\n\n#pragma pack(push, 1)\ntypedef struct efi_load_option_s\n{\n    uint32_t attributes;\n    uint16_t file_path_list_length;\n    uint16_t description[ANYSIZE_ARRAY];\n    // uint8_t file_path_list[ANYSIZE_ARRAY];\n    // uint8_t optional_data[ANYSIZE_ARRAY];\n} efi_load_option;\n#pragma pack(pop)\n\nefidp efi_loadopt_path(efi_load_option *load_option, ssize_t size_limit) ATTR_NONNULL(1);\nuint16_t efi_loadopt_pathlen(efi_load_option *load_option, ssize_t size_limit) ATTR_NONNULL(1) ATTR_VISIBILITY(\"default\");\nint efi_loadopt_optional_data(efi_load_option *load_option, size_t load_option_size, uint8_t **optional_data, size_t *optional_data_size) ATTR_NONNULL(1, 3) ATTR_VISIBILITY(\"default\");\n"
  },
  {
    "path": "include/filepathdelegate.h",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#pragma once\n\n#include \"bootentry.h\"\n#include \"qwidgetitemdelegate.h\"\n#include <QLabel>\n\nclass FilePathDelegate: public QWidgetItemDelegate<QLabel, const FilePath::ANY *>\n{\npublic:\n    FilePathDelegate() = default;\n    FilePathDelegate(const FilePathDelegate &) = delete;\n    FilePathDelegate &operator=(const FilePathDelegate &) = delete;\n\nprotected:\n    void setupWidgetFromItem(Widget &widget, const Item &item, const QModelIndex &index, int role) const override;\n};\n"
  },
  {
    "path": "include/filepathdialog.h",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#pragma once\n\n#include \"bootentry.h\"\n#include <QDialog>\n#include <memory>\n\n#include <QComboBox>\n#include <QPlainTextEdit>\n#include <QProxyStyle>\n#include <QStyleOptionTab>\n\nnamespace Ui\n{\nclass FilePathDialog;\n}\n\nclass HorizontalTabStyle: public QProxyStyle\n{\npublic:\n    HorizontalTabStyle() = default;\n    HorizontalTabStyle(const HorizontalTabStyle &) = delete;\n    HorizontalTabStyle &operator=(const HorizontalTabStyle &) = delete;\n\n    QSize sizeFromContents(ContentsType type, const QStyleOption *option, const QSize &size, const QWidget *widget) const override;\n    void drawControl(ControlElement element, const QStyleOption *option, QPainter *painter, const QWidget *widget) const override;\n};\n\nclass FilePathDialog: public QDialog\n{\n    Q_OBJECT\n\nprivate:\n    enum class FormIndex : uint8_t\n    {\n        PCI = 0,\n        PCCARD = 1,\n        MEMORY_MAPPED = 2,\n        CONTROLLER = 3,\n        BMC = 4,\n        ACPI = 5,\n        EXPANDED = 6,\n        ADR = 7,\n        NVDIMM = 8,\n        ATAPI = 9,\n        SCSI = 10,\n        FIBRE_CHANNEL = 11,\n        FIREWIRE = 12,\n        USB = 13,\n        I2O = 14,\n        INFINIBAND = 15,\n        MAC_ADDRESS = 16,\n        IPV4 = 17,\n        IPV6 = 18,\n        UART = 19,\n        USB_CLASS = 20,\n        USB_WWID = 21,\n        DEVICE_LOGICAL_UNIT = 22,\n        SATA = 23,\n        ISCSI = 24,\n        VLAN = 25,\n        FIBRE_CHANNEL_EX = 26,\n        SAS_EXTENDED_MESSAGING = 27,\n        NVM_EXPRESS_NS = 28,\n        URI = 29,\n        UFS = 30,\n        SD = 31,\n        BLUETOOTH = 32,\n        WI_FI = 33,\n        EMMC = 34,\n        BLUETOOTHLE = 35,\n        DNS = 36,\n        NVDIMM_NS = 37,\n        REST_SERVICE = 38,\n        NVME_OF_NS = 39,\n        HD = 40,\n        CD_ROM = 41,\n        FILE_PATH = 42,\n        PROTOCOL = 43,\n        FIRMWARE_FILE = 44,\n        FIRMWARE_VOLUME = 45,\n        RELATIVE_OFFSET_RANGE = 46,\n        RAM_DISK = 47,\n        BOOT_SPECIFICATION = 48,\n        VENDOR = 49,\n        END = 50,\n        UNKNOWN = 51,\n    };\n\n    enum class DataFormat : uint8_t\n    {\n        Base64 = 0,\n        Utf16 = 1,\n        Utf8 = 2,\n        Hex = 3,\n    };\n\n    enum class VendorTypeIndex : uint8_t\n    {\n        HW = 0,\n        MSG = 1,\n        MEDIA = 2,\n    };\n\n    HorizontalTabStyle horizontal_tab_style{};\n    std::unique_ptr<Ui::FilePathDialog> ui;\n    int adr_additional_adr_format_index = 0;\n    int dns_data_format_index = 0;\n    int rest_service_data_format_index = 0;\n    int vendor_data_format_index = 0;\n    int unknown_data_format_index = 0;\n\npublic:\n    explicit FilePathDialog(QWidget *parent = nullptr);\n    FilePathDialog(const FilePathDialog &) = delete;\n    FilePathDialog &operator=(const FilePathDialog &) = delete;\n    ~FilePathDialog() override;\n\n    void setReadOnly(bool readonly);\n\n    FilePath::ANY toFilePath() const;\n\n    void setFilePath(const FilePath::ANY *_file_path);\n    void setPciForm(const FilePath::Pci &pci);\n    void setPccardForm(const FilePath::Pccard &pccard);\n    void setMemoryMappedForm(const FilePath::MemoryMapped &memory_mapped);\n    void setControllerForm(const FilePath::Controller &controller);\n    void setBmcForm(const FilePath::Bmc &bmc);\n    void setAcpiForm(const FilePath::Acpi &acpi);\n    void setExpandedForm(const FilePath::Expanded &expanded);\n    void setAdrForm(const FilePath::Adr &adr);\n    void setNvdimmForm(const FilePath::Nvdimm &nvdimm);\n    void setAtapiForm(const FilePath::Atapi &atapi);\n    void setScsiForm(const FilePath::Scsi &scsi);\n    void setFibreChannelForm(const FilePath::FibreChannel &fibre_channel);\n    void setFirewireForm(const FilePath::Firewire &firewire);\n    void setUsbForm(const FilePath::Usb &usb);\n    void setI2oForm(const FilePath::I2o &i2o);\n    void setInfinibandForm(const FilePath::Infiniband &infiniband);\n    void setMacAddressForm(const FilePath::MacAddress &mac_address);\n    void setIpv4Form(const FilePath::Ipv4 &ipv4);\n    void setIpv6Form(const FilePath::Ipv6 &ipv6);\n    void setUartForm(const FilePath::Uart &uart);\n    void setUsbClassForm(const FilePath::UsbClass &usb_class);\n    void setUsbWwidForm(const FilePath::UsbWwid &usb_wwid);\n    void setDeviceLogicalUnitForm(const FilePath::DeviceLogicalUnit &device_logical_unit);\n    void setSataForm(const FilePath::Sata &sata);\n    void setIscsiForm(const FilePath::Iscsi &iscsi);\n    void setVlanForm(const FilePath::Vlan &vlan);\n    void setFibreChannelExForm(const FilePath::FibreChannelEx &fibre_channel_ex);\n    void setSasExtendedMessagingForm(const FilePath::SasExtendedMessaging &sas_extended_messaging);\n    void setNvmExpressNsForm(const FilePath::NvmExpressNs &nvm_express_ns);\n    void setUriForm(const FilePath::Uri &uri);\n    void setUfsForm(const FilePath::Ufs &ufs);\n    void setSdForm(const FilePath::Sd &sd);\n    void setBluetoothForm(const FilePath::Bluetooth &bluetooth);\n    void setWiFiForm(const FilePath::WiFi &wi_fi);\n    void setEmmcForm(const FilePath::Emmc &emmc);\n    void setBluetoothleForm(const FilePath::Bluetoothle &bluetoothle);\n    void setDnsForm(const FilePath::Dns &dns);\n    void setNvdimmNsForm(const FilePath::NvdimmNs &nvdimm_ns);\n    void setRestServiceForm(const FilePath::RestService &rest_service);\n    void setNvmeOfNsForm(const FilePath::NvmeOfNs &nvme_of_ns);\n    void setHdForm(const FilePath::Hd &hd);\n    void setCdRomForm(const FilePath::CdRom &cd_rom);\n    void setFilePathForm(const FilePath::FilePath &file_path);\n    void setProtocolForm(const FilePath::Protocol &protocol);\n    void setFirmwareFileForm(const FilePath::FirmwareFile &firmware_file);\n    void setFirmwareVolumeForm(const FilePath::FirmwareVolume &firmware_volume);\n    void setRelativeOffsetRangeForm(const FilePath::RelativeOffsetRange &relative_offset_range);\n    void setRamDiskForm(const FilePath::RamDisk &ram_disk);\n    void setBootSpecificationForm(const FilePath::BootSpecification &boot_specification);\n    void setVendorForm(const FilePath::Vendor &vendor);\n    void setEndForm(const uint8_t subtype);\n    void setUnknownForm(const FilePath::Unknown &unknown);\n\nprivate:\n    void resetForms();\n    void resetPciForm();\n    void resetPccardForm();\n    void resetMemoryMappedForm();\n    void resetControllerForm();\n    void resetBmcForm();\n    void resetAcpiForm();\n    void resetExpandedForm();\n    void resetAdrForm();\n    void resetNvdimmForm();\n    void resetAtapiForm();\n    void resetScsiForm();\n    void resetFibreChannelForm();\n    void resetFirewireForm();\n    void resetUsbForm();\n    void resetI2oForm();\n    void resetInfinibandForm();\n    void resetMacAddressForm();\n    void resetIpv4Form();\n    void resetIpv6Form();\n    void resetUartForm();\n    void resetUsbClassForm();\n    void resetUsbWwidForm();\n    void resetDeviceLogicalUnitForm();\n    void resetSataForm();\n    void resetIscsiForm();\n    void resetVlanForm();\n    void resetFibreChannelExForm();\n    void resetSasExtendedMessagingForm();\n    void resetNvmExpressNsForm();\n    void resetUriForm();\n    void resetUfsForm();\n    void resetSdForm();\n    void resetBluetoothForm();\n    void resetWiFiForm();\n    void resetEmmcForm();\n    void resetBluetoothleForm();\n    void resetDnsForm();\n    void resetNvdimmNsForm();\n    void resetRestServiceForm();\n    void resetNvmeOfNsForm();\n    void resetHdForm();\n    void resetCdRomForm();\n    void resetFilePathForm();\n    void resetProtocolForm();\n    void resetFirmwareFileForm();\n    void resetFirmwareVolumeForm();\n    void resetRelativeOffsetRangeForm();\n    void resetRamDiskForm();\n    void resetBootSpecificationForm();\n    void resetVendorForm();\n    void resetEndForm();\n    void resetUnknownForm();\n\n    void refreshDiskCombo(bool force);\n    QByteArray getData(const QPlainTextEdit &widget, int index) const;\n    void dataFormatChanged(int &index, int new_index, QPlainTextEdit &data, QComboBox &format);\n\nprivate Q_SLOTS:\n    void resetDiskCombo();\n    void diskChoiceChanged(int index);\n    void signatureTypeChoiceChanged(int index);\n\n    void AdrAdditionalAdrChanged(int index);\n    void DnsDataChanged(int index);\n    void RestServiceDataChanged(int index);\n    void VendorDataFormatChanged(int index);\n    void UnknownDataFormatChanged(int index);\n};\n"
  },
  {
    "path": "include/filepathdialog.h.j2",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#pragma once\n\n#include \"bootentry.h\"\n#include <QDialog>\n#include <memory>\n\n#include <QComboBox>\n#include <QPlainTextEdit>\n#include <QProxyStyle>\n#include <QStyleOptionTab>\n\nnamespace Ui\n{\nclass FilePathDialog;\n}\n\nclass HorizontalTabStyle: public QProxyStyle\n{\npublic:\n    HorizontalTabStyle() = default;\n    HorizontalTabStyle(const HorizontalTabStyle &) = delete;\n    HorizontalTabStyle &operator=(const HorizontalTabStyle &) = delete;\n\n    QSize sizeFromContents(ContentsType type, const QStyleOption *option, const QSize &size, const QWidget *widget) const override;\n    void drawControl(ControlElement element, const QStyleOption *option, QPainter *painter, const QWidget *widget) const override;\n};\n\nclass FilePathDialog: public QDialog\n{\n    Q_OBJECT\n\nprivate:\n    enum class FormIndex : uint8_t\n    {\n{% set form_index = [0] %}\n{% for category in device_paths.values() %}{% for node in category.nodes if node.slug not in (\"vendor\", \"instance\", \"entire\") %}\n        {{ node.slug.upper() }} = {{ form_index.append(form_index.pop() + 1) or form_index[0] - 1 }},\n{% endfor %}{% endfor %}\n        VENDOR = {{ form_index.append(form_index.pop() + 1) or form_index[0] - 1 }},\n        END = {{ form_index.append(form_index.pop() + 1) or form_index[0] - 1}},\n        UNKNOWN = {{ form_index.append(form_index.pop() + 1) or form_index[0] - 1 }},\n    };\n\n    enum class DataFormat : uint8_t\n    {\n        Base64 = 0,\n        Utf16 = 1,\n        Utf8 = 2,\n        Hex = 3,\n    };\n\n    enum class VendorTypeIndex : uint8_t\n    {\n        HW = 0,\n        MSG = 1,\n        MEDIA = 2,\n    };\n\n    HorizontalTabStyle horizontal_tab_style{};\n    std::unique_ptr<Ui::FilePathDialog> ui;\n{% for category in device_paths.values() %}{% for node in category.nodes if node.slug not in (\"vendor\", \"instance\", \"entire\") %}{% for field in node.fields if field.type == \"raw_data\" %}\n    int {{ node.slug }}_{{ field.slug }}_format_index = 0;\n{% endfor %}{% endfor %}{% endfor %}\n    int vendor_data_format_index = 0;\n    int unknown_data_format_index = 0;\n\npublic:\n    explicit FilePathDialog(QWidget *parent = nullptr);\n    FilePathDialog(const FilePathDialog &) = delete;\n    FilePathDialog &operator=(const FilePathDialog &) = delete;\n    ~FilePathDialog() override;\n\n    void setReadOnly(bool readonly);\n\n    FilePath::ANY toFilePath() const;\n\n    void setFilePath(const FilePath::ANY *_file_path);\n{% for category in device_paths.values() %}{% for node in category.nodes if node.slug not in (\"vendor\", \"instance\", \"entire\") %}\n{% set qslug = node.slug.split(\"_\")|map(\"capitalize\")|join %}\n    void set{{ qslug }}Form(const FilePath::{{ qslug }} &{{ node.slug }});\n{% endfor %}{% endfor %}\n    void setVendorForm(const FilePath::Vendor &vendor);\n    void setEndForm(const uint8_t subtype);\n    void setUnknownForm(const FilePath::Unknown &unknown);\n\nprivate:\n    void resetForms();\n{% for category in device_paths.values() %}{% for node in category.nodes if node.slug not in (\"vendor\", \"instance\", \"entire\") %}\n    void reset{{ node.slug.split(\"_\")|map(\"capitalize\")|join }}Form();\n{% endfor %}{% endfor %}\n    void resetVendorForm();\n    void resetEndForm();\n    void resetUnknownForm();\n\n    void refreshDiskCombo(bool force);\n    QByteArray getData(const QPlainTextEdit &widget, int index) const;\n    void dataFormatChanged(int &index, int new_index, QPlainTextEdit &data, QComboBox &format);\n\nprivate Q_SLOTS:\n    void resetDiskCombo();\n    void diskChoiceChanged(int index);\n    void signatureTypeChoiceChanged(int index);\n\n{% for category in device_paths.values() %}{% for node in category.nodes if node.slug not in (\"vendor\", \"instance\", \"entire\") %}{% for field in node.fields if field.type == \"raw_data\" %}\n    void {{ node.slug.split(\"_\")|map(\"capitalize\")|join }}{{ field.slug.split(\"_\")|map(\"capitalize\")|join }}Changed(int index);\n{% endfor %}{% endfor %}{% endfor %}\n    void VendorDataFormatChanged(int index);\n    void UnknownDataFormatChanged(int index);\n};\n\n"
  },
  {
    "path": "include/hotkey.h",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#pragma once\n\n#include <QMetaType>\n\n#include \"efiboot.h\"\n#include \"efikeysequence.h\"\n\nclass HotKey\n{\npublic:\n    int index = -1;\n    uint16_t boot_option = 0;\n    EFIKeySequence keys = {};\n    QByteArray vendor_data = {};\n    uint32_t efi_attributes = EFIBoot::EFI_VARIABLE_ATTRIBUTE_DEFAULTS;\n    QString error = {};\n\n    bool is_error = false;\n\npublic:\n    static HotKey fromEFIBootKeyOption(const EFIBoot::Key_option &key_option);\n    static HotKey fromError(const QString &error);\n    EFIBoot::Key_option toEFIBootKeyOption(const std::unordered_map<uint16_t, uint32_t> &crc32) const;\n\n    static std::optional<HotKey> fromJSON(const QJsonObject &obj, qsizetype maxKeys);\n    QJsonObject toJSON() const;\n};\n"
  },
  {
    "path": "include/hotkeydelegate.h",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#pragma once\n\n#include <QComboBox>\n\n#include \"bootentrylistmodel.h\"\n#include \"efikeysequenceedit.h\"\n#include \"qwidgetitemdelegate.h\"\n\nclass HotKeyBootOptionDelegate: public QWidgetItemDelegate<QComboBox, uint16_t>\n{\npublic:\n    HotKeyBootOptionDelegate() = default;\n    HotKeyBootOptionDelegate(const HotKeyBootOptionDelegate &) = delete;\n    HotKeyBootOptionDelegate &operator=(const HotKeyBootOptionDelegate &) = delete;\n\n    void refreshBootOptions(const BootEntryListModel &model);\n\nprotected:\n    void setupWidgetFromItem(Widget &widget, const Item &item, const QModelIndex &index, int role) const override;\n    bool setupItemFromWidget(const Widget &widget, Item &item, const QModelIndex &index) const override;\n\n    bool eventFilter(QObject *editor, QEvent *event) override;\n};\n\nclass HotKeyKeysDelegate: public QWidgetItemDelegate<EFIKeySequenceEdit, const EFIKeySequence *>\n{\nprivate:\n    qsizetype maximumSequenceLength{3};\n\npublic:\n    HotKeyKeysDelegate() = default;\n    HotKeyKeysDelegate(const HotKeyKeysDelegate &) = delete;\n    HotKeyKeysDelegate &operator=(const HotKeyKeysDelegate &) = delete;\n\n    void setMaximumSequenceLength(qsizetype count);\n\nprotected:\n    void setupWidgetFromItem(Widget &widget, const Item &item, const QModelIndex &index, int role) const override;\n    bool setupItemFromWidget(const Widget &widget, Item &item, const QModelIndex &index) const override;\n};\n"
  },
  {
    "path": "include/hotkeylistmodel.h",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#pragma once\n\n#include <QAbstractItemModel>\n#include <QFlags>\n#include <QList>\n#include <QUndoStack>\n\n#include \"hotkey.h\"\n\nclass HotKeyListModel: public QAbstractItemModel\n{\n    Q_OBJECT\n\n    friend class EFIBootData;\n    friend class InsertRemoveHotKeyCommand;\n    friend class InsertHotKeyCommand;\n    friend class RemoveHotKeyCommand;\n\n    template <class Type>\n    friend class SetHotKeyValueCommand;\n    friend class SetHotKeyKeysCommand;\n\npublic:\n    enum class Column : uint8_t\n    {\n        BootOption = 0,\n        Keys = 1,\n        VendorData = 2,\n        Count = 3,\n    };\n\nprivate:\n    QVector<QString> header{tr(\"Boot option\"), tr(\"Hot key\"), tr(\"Vendor data\")};\n    QVector<HotKey> entries{};\n    QUndoStack *undo_stack{nullptr};\n\npublic:\n    explicit HotKeyListModel(QObject *parent = nullptr);\n    HotKeyListModel(const HotKeyListModel &) = delete;\n    HotKeyListModel &operator=(const HotKeyListModel &) = delete;\n\n    void setUndoStack(QUndoStack *undo_stack_);\n    QUndoStack *getUndoStack() const;\n\n    // Basic functionality:\n    int rowCount(const QModelIndex &parent = QModelIndex()) const override;\n    int columnCount(const QModelIndex & /*parent*/ = QModelIndex()) const override { return static_cast<int>(Column::Count); }\n    QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const override\n    {\n        if(parent.isValid())\n            return {};\n\n        if(0 > row || row >= rowCount())\n            return {};\n\n        if(0 > column || column >= columnCount())\n            return {};\n\n        return createIndex(row, column);\n    }\n\n    QModelIndex parent(const QModelIndex & /*child*/) const override { return {}; }\n\n    QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override;\n    QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;\n    bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole) override;\n\n    Qt::ItemFlags flags(const QModelIndex &index) const override;\n\n    // Add data:\n    bool insertRows(int row, int count, const QModelIndex &parent = QModelIndex()) override;\n\n    // Remove data:\n    bool removeRows(int row, int count, const QModelIndex &parent = QModelIndex()) override;\n\n    void clear();\n\n    const QVector<HotKey> &getEntries() const { return entries; }\n\nprivate:\n    bool appendRow(const HotKey &data, const QModelIndex &parent = QModelIndex());\n};\n"
  },
  {
    "path": "include/hotkeysdialog.h",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#pragma once\n\n#include \"bootentrylistmodel.h\"\n#include \"hotkeylistmodel.h\"\n#include <QDialog>\n\nnamespace Ui\n{\nclass HotKeysDialog;\n}\n\nclass HotKeysDialog: public QDialog\n{\n    Q_OBJECT\n\npublic:\n    explicit HotKeysDialog(HotKeyListModel &model, QWidget *parent = nullptr);\n    HotKeysDialog(const HotKeysDialog &) = delete;\n    HotKeysDialog &operator=(const HotKeysDialog &) = delete;\n    ~HotKeysDialog() override;\n\n    void refreshBootOptions(const BootEntryListModel &model);\n    void setIndexFilter(int index = -1);\n    void setMaxKeyCount(int keys = 3);\n\nprivate:\n    std::unique_ptr<Ui::HotKeysDialog> ui;\n};\n"
  },
  {
    "path": "include/hotkeysview.h",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#pragma once\n\n#include \"bootentrylistmodel.h\"\n#include \"hotkeydelegate.h\"\n#include <QTreeView>\n\nclass HotKeysView: public QTreeView\n{\n    Q_OBJECT\n\nprivate:\n    HotKeyBootOptionDelegate bootOptionDelegate{};\n    HotKeyKeysDelegate keysDelegate{};\n\npublic:\n    explicit HotKeysView(QWidget *parent = nullptr);\n    HotKeysView(const HotKeysView &) = delete;\n    HotKeysView &operator=(const HotKeysView &) = delete;\n\n    void refreshBootOptions(const BootEntryListModel &model);\n    void setMaxKeyCount(qsizetype keys);\n\npublic Q_SLOTS:\n    void insertRow();\n    void removeCurrentRow() const;\n    void setFilter(const QString &filter);\n};\n"
  },
  {
    "path": "include/qindicatorwidget.h",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#pragma once\n\n#include <QRadioButton>\n\nclass QIndicatorWidget: public QRadioButton\n{\n    Q_OBJECT\npublic:\n    explicit QIndicatorWidget(QWidget *parent = nullptr)\n        : QRadioButton{parent}\n    {\n        // setAttribute(Qt::WA_TransparentForMouseEvents);\n        setStyleSheet(\n            \"::indicator:unchecked {background-color: red; border-radius: 7px;}\\n\"\n            \"::indicator:checked {background-color: green; border-radius: 7px;}\");\n        setLayoutDirection(Qt::RightToLeft);\n        setFocusPolicy(Qt::NoFocus);\n        setEnabled(false);\n    }\n\n    QIndicatorWidget(const QIndicatorWidget &) = delete;\n    QIndicatorWidget &operator=(const QIndicatorWidget &) = delete;\n};\n"
  },
  {
    "path": "include/qlabelwrapped.h",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#pragma once\n\n#include <QLabel>\n\nclass QLabelWrapped: public QLabel\n{\n    Q_OBJECT\npublic:\n    explicit QLabelWrapped(QWidget *parent = nullptr)\n        : QLabel{parent}\n    {\n        setWordWrap(true);\n    }\n\n    QLabelWrapped(const QLabelWrapped &) = delete;\n    QLabelWrapped &operator=(const QLabelWrapped &) = delete;\n\n    QSize sizeHint() const override\n    {\n        auto w = width();\n        auto h = heightForWidth(w);\n        return {w, h};\n    }\n};\n"
  },
  {
    "path": "include/qresizabletabwidget.h",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#pragma once\n\n#include <QStyle>\n#include <QStyleOption>\n#include <QTabBar>\n#include <QTabWidget>\n\nclass QResizableTabWidget: public QTabWidget\n{\n    Q_OBJECT\npublic:\n    explicit QResizableTabWidget(QWidget *parent = nullptr)\n        : QTabWidget{parent}\n    {\n    }\n\n    QResizableTabWidget(const QResizableTabWidget &) = delete;\n    QResizableTabWidget &operator=(const QResizableTabWidget &) = delete;\n\n    // Extracted from: qtbase:src/widgets/widgets/qtabwidget.cpp\n    // and replaced expanding to all tabs widgets just to current one\n    QSize sizeHint() const override\n    {\n        QSize lc(0, 0), rc(0, 0);\n        if(cornerWidget(Qt::TopLeftCorner))\n            lc = cornerWidget(Qt::TopLeftCorner)->minimumSizeHint();\n        if(cornerWidget(Qt::TopRightCorner))\n            rc = cornerWidget(Qt::TopRightCorner)->minimumSizeHint();\n\n        QSize s(currentWidget()->sizeHint());\n        QSize t(tabBar()->sizeHint());\n        QSize sz = basicSize(tabPosition() == North || tabPosition() == South, lc, rc, s, t);\n\n        QStyleOptionTabWidgetFrame opt;\n        initStyleOption(&opt);\n        opt.palette = palette();\n        opt.state = QStyle::State_None;\n        return style()->sizeFromContents(QStyle::CT_TabWidget, &opt, sz, this);\n    }\n\n    QSize minimumSizeHint() const override\n    {\n        QSize lc(0, 0), rc(0, 0);\n        if(cornerWidget(Qt::TopLeftCorner))\n            lc = cornerWidget(Qt::TopLeftCorner)->minimumSizeHint();\n        if(cornerWidget(Qt::TopRightCorner))\n            rc = cornerWidget(Qt::TopRightCorner)->minimumSizeHint();\n\n        QSize s(currentWidget()->minimumSizeHint());\n        QSize t(tabBar()->minimumSizeHint());\n        QSize sz = basicSize(tabPosition() == North || tabPosition() == South, lc, rc, s, t);\n\n        QStyleOptionTabWidgetFrame opt;\n        initStyleOption(&opt);\n        opt.palette = palette();\n        opt.state = QStyle::State_None;\n        return style()->sizeFromContents(QStyle::CT_TabWidget, &opt, sz, this);\n    }\n\nprivate:\n    static inline QSize basicSize(\n        bool horizontal, const QSize &lc, const QSize &rc, const QSize &s, const QSize &t)\n    {\n        return horizontal\n            ? QSize(qMax(s.width(), t.width() + rc.width() + lc.width()),\n                  s.height() + (qMax(rc.height(), qMax(lc.height(), t.height()))))\n            : QSize(s.width() + (qMax(rc.width(), qMax(lc.width(), t.width()))),\n                  qMax(s.height(), t.height() + rc.height() + lc.height()));\n    }\n};\n"
  },
  {
    "path": "include/qwidgetitemdelegate.h",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#pragma once\n\n#include <QApplication>\n#include <QLayout>\n#include <QMouseEvent>\n#include <QPainter>\n#include <QStandardItem>\n#include <QStyledItemDelegate>\n\ntemplate <class Widget_, class Item_ = QStandardItem>\nclass QWidgetItemDelegate: public QStyledItemDelegate\n{\npublic:\n    using Widget = Widget_;\n    using Item = Item_;\n\nprotected:\n    mutable Widget renderer{};\n    mutable Widget painter{};\n    Widget event_handler{};\n\npublic:\n    explicit QWidgetItemDelegate(QObject *parent = nullptr);\n    QWidgetItemDelegate(const QWidgetItemDelegate &) = delete;\n    QWidgetItemDelegate &operator=(const QWidgetItemDelegate &) = delete;\n\nprotected:\n    void paint(QPainter *_painter, const QStyleOptionViewItem &option, const QModelIndex &index) const override;\n    QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const override;\n    QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const override;\n\n    void setEditorData(QWidget *editor, const QModelIndex &index) const override;\n    void setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const override;\n\n    virtual void setupWidgetFromItem(Widget &widget, const Item &item, const QModelIndex &index, int role) const = 0;\n    virtual bool setupItemFromWidget(const Widget & /*widget*/, Item & /*item*/, const QModelIndex & /*index*/) const { return false; }\n\nprotected:\n    bool editorEvent(QEvent *event, QAbstractItemModel *model, const QStyleOptionViewItem &option, const QModelIndex &index) override;\n};\n\ntemplate <class Widget, class Item>\nQWidgetItemDelegate<Widget, Item>::QWidgetItemDelegate(QObject *parent)\n    : QStyledItemDelegate(parent)\n{\n}\n\ntemplate <class Widget, class Item>\nvoid QWidgetItemDelegate<Widget, Item>::paint(QPainter *_painter, const QStyleOptionViewItem &option, const QModelIndex &index) const\n{\n    if(!index.isValid() || !index.data().canConvert<Item>())\n        return QStyledItemDelegate::paint(_painter, option, index);\n\n    auto item = index.data().value<Item>();\n    setupWidgetFromItem(painter, item, index, Qt::DisplayRole);\n    painter.setParent(const_cast<QWidget *>(option.widget));\n    painter.setGeometry(option.rect);\n    _painter->save();\n    if(option.state & QStyle::State_Selected)\n        _painter->fillRect(option.rect, option.palette.highlight());\n\n    _painter->translate(option.rect.topLeft());\n    painter.render(_painter, QPoint{}, QRegion{}, QWidget::RenderFlag::DrawChildren);\n    _painter->restore();\n    painter.setParent(nullptr);\n    return;\n}\n\ntemplate <class Widget, class Item>\nQSize QWidgetItemDelegate<Widget, Item>::sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const\n{\n    if(!index.isValid() || !index.data().canConvert<Item>())\n        return QStyledItemDelegate::sizeHint(option, index);\n\n    auto item = index.data().value<Item>();\n    setupWidgetFromItem(renderer, item, index, Qt::SizeHintRole);\n    renderer.grab(); // force layout\n\n    // Take rect into consideration for word wrapping etc.\n    auto rect = option.rect;\n    if(!rect.isValid())\n        return renderer.sizeHint();\n\n    rect.setHeight(renderer.heightForWidth(option.rect.width()));\n    return rect.size();\n}\n\ntemplate <class Widget, class Item>\nQWidget *QWidgetItemDelegate<Widget, Item>::createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const\n{\n    if(!index.isValid() || !index.data().canConvert<Item>())\n        return QStyledItemDelegate::createEditor(parent, option, index);\n\n    return new Widget{parent};\n}\n\ntemplate <class Widget, class Item>\nvoid QWidgetItemDelegate<Widget, Item>::setEditorData(QWidget *editor, const QModelIndex &index) const\n{\n    if(!index.isValid() || !index.data().canConvert<Item>())\n        return QStyledItemDelegate::setEditorData(editor, index);\n\n    const auto item = index.data().value<Item>();\n    setupWidgetFromItem(*dynamic_cast<Widget *>(editor), item, index, Qt::EditRole);\n}\n\ntemplate <class Widget, class Item>\nvoid QWidgetItemDelegate<Widget, Item>::setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const\n{\n    if(!index.isValid() || !index.data().canConvert<Item>() || !model)\n        return QStyledItemDelegate::setModelData(editor, model, index);\n\n    Item item{};\n    if(!setupItemFromWidget(*dynamic_cast<Widget *>(editor), item, index))\n        return;\n\n    QVariant data;\n    data.setValue(item);\n\n    model->setData(index, data);\n}\n\ntemplate <class Widget, class Item>\nbool QWidgetItemDelegate<Widget, Item>::editorEvent(QEvent *event, QAbstractItemModel *model, const QStyleOptionViewItem &option, const QModelIndex &index)\n{\n    // Handle events on delegates with disabled editor\n    if(index.isValid() && index.data().canConvert<Item>() && !(index.flags() & Qt::ItemIsEditable))\n    {\n        auto item = index.data().value<Item>();\n        setupWidgetFromItem(event_handler, item, index, Qt::EditRole);\n        event_handler.setParent(const_cast<QWidget *>(option.widget));\n        event_handler.setGeometry(option.rect);\n        event_handler.grab(); // force layout\n\n        if(const auto passthrough_events = {QEvent::MouseButtonPress, QEvent::MouseButtonRelease, QEvent::MouseButtonDblClick, QEvent::MouseMove}; std::find(std::begin(passthrough_events), std::end(passthrough_events), event->type()) != std::end(passthrough_events))\n        {\n            auto mouse_event = static_cast<QMouseEvent *>(event);\n#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)\n            auto position = event_handler.mapFromParent(mouse_event->position());\n            if(QWidget *child = event_handler.childAt(position.toPoint()); child)\n            {\n                auto child_position = child->mapFromParent(position);\n                // All I need is to set localPosition...\n                QMouseEvent child_event{mouse_event->type(), child_position, mouse_event->scenePosition(), mouse_event->globalPosition(), mouse_event->button(), mouse_event->buttons(), mouse_event->modifiers(), Qt::MouseEventSource::MouseEventSynthesizedByApplication, mouse_event->pointingDevice()};\n                QApplication::sendEvent(child, &child_event);\n                event_handler.setParent(nullptr);\n                return false; // indicate event as not handled to allow for selection etc.\n            }\n#else\n            auto pos = event_handler.mapFromParent(mouse_event->pos());\n            mouse_event->setLocalPos(pos);\n\n            if(QWidget *child = event_handler.childAt(pos); child)\n            {\n                auto child_pos = child->mapFromParent(pos);\n                mouse_event->setLocalPos(child_pos);\n                QApplication::sendEvent(child, event);\n                event_handler.setParent(nullptr);\n                return false; // indicate event as not handled to allow for selection etc.\n            }\n#endif\n#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)\n            // All I need is to set localPosition...\n            QMouseEvent widget_event{mouse_event->type(), position, mouse_event->scenePosition(), mouse_event->globalPosition(), mouse_event->button(), mouse_event->buttons(), mouse_event->modifiers(), Qt::MouseEventSource::MouseEventSynthesizedByApplication, mouse_event->pointingDevice()};\n            QApplication::sendEvent(&event_handler, &widget_event);\n#else\n            QApplication::sendEvent(&event_handler, event);\n#endif\n            event_handler.setParent(nullptr);\n            return false; // indicate event as not handled to allow for selection etc.\n        }\n\n        QApplication::sendEvent(&event_handler, event);\n        event_handler.setParent(nullptr);\n        return false; // indicate event as not handled to allow for selection etc.\n    }\n\n    return QStyledItemDelegate::editorEvent(event, model, option, index);\n}\n"
  },
  {
    "path": "misc/.gitignore",
    "content": "*.egg-info\nPipfile*\n"
  },
  {
    "path": "misc/EFIBootEditor.desktop",
    "content": "[Desktop Entry]\nType=Application\nVersion=1.0\nName=EFI Boot Editor\nComment=Boot Editor for (U)EFI based systems\nExec=run-efibooteditor\nIcon=EFIBootEditor\nStartupNotify=true\nTerminal=false\nCategories=Settings;System;Qt;X-XFCE-SettingsDialog;X-XFCE-SystemSettings;\n"
  },
  {
    "path": "misc/EFIBootEditor.metainfo.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<component type=\"desktop-application\">\n    <id>EFIBootEditor</id>\n    <name>EFI Boot Editor</name>\n    <summary>Boot Editor for (U)EFI based systems</summary>\n    <developer_name>Maciej Szeptuch</developer_name>\n    <metadata_license>CC-BY-4.0</metadata_license>\n    <project_license>LGPL-3.0</project_license>\n    <description>\n        <p>\n            Boot Editor for (U)EFI based systems.\n        </p>\n    </description>\n\n    <url type=\"homepage\">https://github.com/Neverous/efibooteditor</url>\n    <url type=\"bugtracker\">https://github.com/Neverous/efibooteditor/issues</url>\n    <launchable type=\"desktop-id\">EFIBootEditor.desktop</launchable>\n\n    <screenshots>\n        <screenshot type=\"default\">\n            <image>https://github.com/Neverous/efibooteditor/raw/master/doc/efibooteditor.png</image>\n            <caption>EFI Boot Editor</caption>\n        </screenshot>\n    </screenshots>\n</component>\n"
  },
  {
    "path": "misc/WIX.template.in",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n\n<?include \"cpack_variables.wxi\"?>\n\n<Wix xmlns=\"http://schemas.microsoft.com/wix/2006/wi\"@CPACK_WIX_CUSTOM_XMLNS_EXPANDED@\n    RequiredVersion=\"3.6.3303.0\">\n\n    <Product Id=\"$(var.CPACK_WIX_PRODUCT_GUID)\"\n        Name=\"$(var.CPACK_PACKAGE_NAME)\"\n        Language=\"1033\"\n        Version=\"$(var.CPACK_PACKAGE_VERSION)\"\n        Manufacturer=\"$(var.CPACK_PACKAGE_VENDOR)\"\n        UpgradeCode=\"$(var.CPACK_WIX_UPGRADE_GUID)\">\n\n\n        <?if $(var.CPACK_WIX_INSTALL_SCOPE) = \"NONE\" ?>\n        <Package InstallerVersion=\"301\" Compressed=\"yes\"/>\n        <?else?>\n        <Package InstallerVersion=\"301\" Compressed=\"yes\" InstallScope=\"$(var.CPACK_WIX_INSTALL_SCOPE)\"/>\n        <?endif?>\n\n        <Media Id=\"1\" Cabinet=\"media1.cab\" EmbedCab=\"yes\"/>\n\n        <MajorUpgrade\n            Schedule=\"afterInstallInitialize\"\n            AllowDowngrades=\"yes\"/>\n\n        <WixVariable Id=\"WixUILicenseRtf\" Value=\"$(var.CPACK_WIX_LICENSE_RTF)\"/>\n        <Property Id=\"WIXUI_INSTALLDIR\" Value=\"INSTALL_ROOT\"/>\n\n        <?ifdef CPACK_WIX_PRODUCT_ICON?>\n        <Property Id=\"ARPPRODUCTICON\">ProductIcon.ico</Property>\n        <Icon Id=\"ProductIcon.ico\" SourceFile=\"$(var.CPACK_WIX_PRODUCT_ICON)\"/>\n        <?endif?>\n\n        <?ifdef CPACK_WIX_UI_BANNER?>\n        <WixVariable Id=\"WixUIBannerBmp\" Value=\"$(var.CPACK_WIX_UI_BANNER)\"/>\n        <?endif?>\n\n        <?ifdef CPACK_WIX_UI_DIALOG?>\n        <WixVariable Id=\"WixUIDialogBmp\" Value=\"$(var.CPACK_WIX_UI_DIALOG)\"/>\n        <?endif?>\n\n        <FeatureRef Id=\"ProductFeature\"/>\n\n        <UIRef Id=\"$(var.CPACK_WIX_UI_REF)\" />\n        <UIRef Id=\"WixUI_ErrorProgressText\" />\n\n        <?include \"properties.wxi\"?>\n        <?include \"product_fragment.wxi\"?>\n    </Product>\n</Wix>\n\n"
  },
  {
    "path": "misc/codegen/gen_efidp.py",
    "content": "# Generate sources from EFI device-paths.yml and Jinja2 templates\n\nimport logging\nimport sys\n\nimport jinja2\nimport yaml\n\nlog = logging.getLogger(\"gen_efidp\")\n\n\nif __name__ == \"__main__\":\n    logging.basicConfig(level=logging.INFO)\n    env = jinja2.Environment(trim_blocks=True, lstrip_blocks=True, autoescape=True)\n    device_paths = yaml.safe_load(open(sys.argv[1]).read())\n    for category in device_paths.values():\n        for node in category[\"nodes\"]:\n            node[\"fields_by_slug\"] = {field[\"slug\"]: field for field in node[\"fields\"]}\n\n    for file in sys.argv[2:]:\n        log.info(\"Processing %s file\", file)\n        template = env.from_string(open(file).read())\n        with open(file.removesuffix(\".j2\"), \"w\") as fd:\n            fd.write(template.render({\"device_paths\": device_paths}))\n"
  },
  {
    "path": "misc/codegen/pyproject.toml",
    "content": "[project]\nname = \"codegen\"\nversion = \"1.0.0\"\ndescription = \"Scripts for generating Device Path Nodes related code for EFI Boot Editor\"\n\nrequires-python = \">=3.14\"\ndependencies = [\n    \"beautifulsoup4>=4.13.4\",\n    \"jinja2>=3.1.6\",\n    \"pyyaml>=6.0.2\",\n]\n\n[project.optional-dependencies]\ndev = [\n    \"ruff>=0.12.3\",\n    \"ty>=0.0.1a14\",\n    \"types-beautifulsoup4>=4.12.0.20250516\",\n    \"types-pyyaml>=6.0.12.20250516\",\n]\n\n[tool.setuptools.packages.find]\nwhere = [\".\"]\n\n[tool.ruff]\nlint.select = [\n    \"B\",\n    \"C\",\n    \"E\",\n    \"F\",\n    \"I\",\n    \"W\",\n]\n\nline-length = 120\n\n[tool.black]\nline-length = 120\n\n[tool.mypy]\nstrict = true\ncheck_untyped_defs = true\ndisallow_any_generics = true\nstrict_optional = true\nwarn_no_return = true\nwarn_redundant_casts = true\nwarn_return_any = true\nwarn_unreachable = true\nwarn_unused_configs = true\nwarn_unused_ignores = true\n\nplugins = []\n"
  },
  {
    "path": "misc/codegen/spec_parse.py",
    "content": "# Parse Device Path nodes from UEFI specification HTML site into yaml\n\nimport dataclasses\nimport logging\nimport re\nimport sys\nimport urllib.request\nfrom typing import Any\n\nimport bs4\nimport yaml\n\n\n@dataclasses.dataclass\nclass DevicePathNodeField:\n    name: str\n    description: str\n    offset: int | str\n    size: int | str\n    # For CodeGen\n    type: str = \"int\"\n    slug: str = dataclasses.field(init=False)\n\n    def __post_init__(self) -> None:\n        self.slug = slugify(self.name)\n\n\n@dataclasses.dataclass\nclass DevicePathNode:\n    name: str\n    description: str\n    type: int\n    subtype: int\n    slug: str = dataclasses.field(init=False)\n    fields: list[DevicePathNodeField] = dataclasses.field(default_factory=list)\n\n    def __post_init__(self) -> None:\n        self.slug = slugify(self.name)\n\n\n@dataclasses.dataclass\nclass DevicePathCategory:\n    name: str\n    description: str\n    type: int\n    nodes: list[DevicePathNode] = dataclasses.field(default_factory=list)\n    slug: str = dataclasses.field(init=False)\n\n    def __post_init__(self) -> None:\n        self.slug = slugify(self.name)\n\n\n@dataclasses.dataclass\nclass DevicePaths:\n    hardware: DevicePathCategory\n    acpi: DevicePathCategory\n    messaging: DevicePathCategory\n    media: DevicePathCategory\n    bios: DevicePathCategory\n    end: DevicePathCategory\n\n    def __init__(self) -> None:\n        super().__init__()\n        self.hardware = DevicePathCategory(\"Hardware\", \"\", 0x01)\n        self.acpi = DevicePathCategory(\"ACPI\", \"\", 0x02)\n        self.messaging = DevicePathCategory(\"Messaging\", \"\", 0x03)\n        self.media = DevicePathCategory(\"Media\", \"\", 0x04)\n        self.bios = DevicePathCategory(\"BIOS\", \"\", 0x05)\n        self.end = DevicePathCategory(\n            \"End\",\n            \"\",\n            0x7F,\n            [\n                DevicePathNode(\"End This Instance\", \"\", 0x7F, 0x01),\n                DevicePathNode(\"End Entire\", \"\", 0x7F, 0xFF),\n            ],\n        )\n\n    def verify(self) -> bool:\n        success = True\n        for field in dataclasses.fields(self)[:-1]:\n            category = getattr(self, field.name)\n            category.nodes.sort(key=lambda node: node.subtype)\n            id_ = 1\n            for node in category.nodes:\n                while node.subtype > id_:\n                    log.warning(\"%s is missing subtype %d!\", category.name, id_)\n                    success = False\n                    id_ += 1\n\n                if node.subtype < id_:\n                    log.warning(\"%s has duplicated subtype %d!\", category.name, node.subtype)\n                    continue\n\n                id_ += 1\n\n        return success\n\n\nre_device_path = re.compile(r\"^.*device-path.*$\", re.IGNORECASE)\nre_type = re.compile(r\"^type -?0?x?\\d+ (-? )?(.*)$\", re.IGNORECASE)\nre_subtype = re.compile(r\"^(sub.type)? ?(\\d+)[ -].*$\", re.IGNORECASE)\nre_node_name = re.compile(r\" device paths?.*$\", re.IGNORECASE)\nre_slug = re.compile(r\"\\W+\")\nre_description = re.compile(r\"\\n\\W+\")\n\nSPEC_URL = \"https://uefi.org/specs/UEFI/2.11/10_Protocols_Device_Path_Protocol.html\"\n\nlog = logging.getLogger(\"spec_parse\")\n\n\nclass ListIndent(yaml.SafeDumper):\n    def __init__(self, *args: Any, **kwargs: Any):\n        super().__init__(*args, **kwargs)\n\n        def str_presenter(dumper: ListIndent, data: str) -> yaml.Node:\n            if \"\\n\" in data:\n                return dumper.represent_scalar(\"tag:yaml.org,2002:str\", data, style=\"|\")\n            return dumper.represent_scalar(\"tag:yaml.org,2002:str\", data)\n\n        self.add_representer(str, str_presenter)\n\n    def increase_indent(self, flow: bool = False, indentless: bool = False) -> None:\n        return super().increase_indent(flow, False)\n\n\ndef slugify(text: str) -> str:\n    return re_slug.sub(\"_\", text).lower()\n\n\ndef maybe_int(text: str) -> int | str:\n    try:\n        return int(text)\n    except ValueError:\n        return text\n\n\nif __name__ == \"__main__\":\n    logging.basicConfig(level=logging.INFO)\n    if len(sys.argv) > 1:\n        SPEC_URL = sys.argv[1]\n\n    log.info(\"Parsing Device Path nodes from %s into yaml\", SPEC_URL)\n    req = urllib.request.Request(\n        SPEC_URL,\n        headers={\n            \"User-Agent\": \"Mozilla/5.0 (X11; Linux x86_64; rv:136.0) Gecko/20100101 Firefox/136.0\",\n        },\n    )\n    soup = bs4.BeautifulSoup(\n        urllib.request.urlopen(req).read().decode(\"utf-8\").encode(\"ascii\", \"ignore\"), features=\"html.parser\"\n    )\n\n    device_paths = DevicePaths()\n    nodes_tag = soup.find(\"div\", id=\"device-path-nodes\")\n    if not nodes_tag:\n        nodes_tag = soup.find(\"section\", id=\"device-path-nodes\")\n\n    assert isinstance(nodes_tag, bs4.Tag)\n    for table in nodes_tag.find_all(\"table\")[2:]:\n        caption = table.caption(\"span\")[1].text.strip()\n        if (header := slugify(table.tr.text.strip())) != \"mnemonic_byte_offset_byte_length_description\":\n            log.warning('Skipping \"%s\" table: invalid header \"%s\"', caption, header)\n            continue\n\n        fields = table(\"tr\")\n        if not (match := re_type.match(fields[1](\"td\")[3].text.strip())):\n            log.warning('Skipping \"%s\" table: type didn\\'t match', caption)\n            continue\n\n        category = getattr(device_paths, match.group(2).split(\" \", 1)[0].lower())\n        type = category.type\n        if not (match := re_subtype.match(fields[2](\"td\")[3].text.strip())):\n            log.warning('Skipping \"%s\" table: subtype didn\\'t match', caption)\n            continue\n\n        node_name = re_node_name.sub(\"\", caption)\n        subtype = int(match.group(2))\n        node = DevicePathNode(node_name, \"\", type, subtype)\n\n        for field in fields[4:]:\n            field_name = (field(\"td\")[0].p.contents or \" \")[0].strip().strip(\"_\") or \"Data\"\n            node_field = DevicePathNodeField(\n                field_name,\n                re_description.sub(\"\\n\", field(\"td\")[3].text.strip()),\n                maybe_int(field(\"td\")[1].text.strip().lower()),\n                maybe_int(field(\"td\")[2].text.strip().lower()),\n            )\n\n            if isinstance(node_field.size, str):\n                node_field.type = \"raw_data\"\n\n            node.fields.append(node_field)\n\n        category.nodes.append(node)\n        log.info('Parsed \"%s\" table', caption)\n\n    # Verify\n    device_paths.verify()\n\n    print(yaml.dump(dataclasses.asdict(device_paths), Dumper=ListIndent, sort_keys=False, indent=2))\n"
  },
  {
    "path": "misc/efibooteditor.spec",
    "content": "Name:           efibooteditor\nVersion:        1.4.0\nRelease:        1%{?dist}\nSummary:        Boot Editor for (U)EFI based systems\n\nLicense:        GPLv3-or-later\nURL:            https://github.com/Neverous/efibooteditor\nSource0:        https://github.com/Neverous/efibooteditor/archive/refs/tags/v%{version}.tar.gz\n\nBuildRequires:  cmake\nBuildRequires:  cmake(Qt5Core)\nBuildRequires:\tcmake(Qt5Tools)\nBuildRequires:  pkgconfig(efivar)\n\nRequires:       efivar\n\n%description\n%{summary}.\n\n%prep\n%autosetup -n %{name}-%{version}\n\n\n%build\n%cmake\n%cmake_build\n\n\n%install\n%cmake_install\n\n\n%files\n%doc doc/*\n%license LICENSE.txt\n%{_bindir}/%{name}\n%{_datadir}/applications/EFIBootEditor.desktop\n%{_datadir}/polkit-1/actions/org.x.%{name}.policy\n%{_metainfodir}/EFIBootEditor.metainfo.xml\n\n\n\n%changelog\n* Tue Mar 28 2023 - 1.2.0-beta.2-1\n- Updated version\n* Sun Jan 22 2023 Justin Zobel <justin@1707.io> - 1.1.5-1\n- Initial Version\n"
  },
  {
    "path": "misc/org.x.efibooteditor.policy",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE policyconfig PUBLIC \"-//freedesktop//DTD PolicyKit Policy Configuration 1.0//EN\" \"http://www.freedesktop.org/standards/PolicyKit/1/policyconfig.dtd\">\n<policyconfig>\n    <vendor>EFI Boot Editor</vendor>\n    <vendor_url>https://github.com/Neverous/efibooteditor</vendor_url>\n\n    <action id=\"org.x.efibooteditor\">\n        <message>EFI Boot Editor</message>\n        <icon_name>preferences-system</icon_name>\n        <defaults>\n            <allow_any>no</allow_any>\n            <allow_inactive>no</allow_inactive>\n            <allow_active>auth_admin_keep</allow_active>\n        </defaults>\n        <annotate key=\"org.freedesktop.policykit.exec.path\">/usr/bin/efibooteditor</annotate>\n        <annotate key=\"org.freedesktop.policykit.exec.allow_gui\">true</annotate>\n    </action>\n\n</policyconfig>\n"
  },
  {
    "path": "misc/qt-updater/main.py",
    "content": "# Fetch latest qt versions and update CI config\n\nimport logging\nimport re\nimport sys\nfrom dataclasses import dataclass\nfrom datetime import date\nfrom typing import Any\n\nimport requests\nimport ruamel.yaml\n\n\n@dataclass\nclass Version:\n    major: int\n    minor: int\n    patch: int | None = None\n\n    def nopatch(self) -> \"Version\":\n        return Version(self.major, self.minor)\n\n    def __hash__(self) -> int:\n        return hash((self.major, self.minor, self.patch))\n\n    def __str__(self) -> str:\n        return f\"{self.major}.{self.minor}\" + (f\".{self.patch}\" if self.patch is not None else \"\")\n\n    def __repr__(self) -> str:\n        return str(self)\n\n    def __lt__(self, obj: \"Version\") -> bool:\n        return (self.major, self.minor, self.patch or 0) < (\n            obj.major,\n            obj.minor,\n            obj.patch or 0,\n        )\n\n\n@dataclass\nclass QtVersion:\n    version: Version\n    eol: date\n    source: str = \"\"\n\n    def __hash__(self) -> int:\n        return hash(self.version)\n\n    def comment(self) -> str:\n        return \"Supported\" + (\" in \" + self.source if self.source else \"\") + f\" until {self.eol}\"\n\n    def __str__(self) -> str:\n        return f\"{self.version} ({self.comment()})\"\n\n    def __repr__(self) -> str:\n        return str(self)\n\n    def __lt__(self, obj: \"QtVersion\") -> bool:\n        return self.version < obj.version\n\n\nlog = logging.getLogger(\"qt-update\")\napi = requests.session()\n\n\ndef fetch_eoldate_info(name: str) -> Any:\n    log.debug(\"Fetching %s info from endoflife.date\", name)\n    return api.get(f\"https://endoflife.date/api/{name}.json\").json()\n\n\ndef fetch_ubuntu_package_versions(series_slug: str, name: str) -> set[Version]:\n    log.debug(\"Fetching %s packages info from Ubuntu %s\", name, series_slug)\n    packages = api.get(\n        \"https://api.launchpad.net/1.0/ubuntu/+archive/primary\",\n        params={\n            \"ws.op\": \"getPublishedBinaries\",\n            \"binary_name\": name,\n            \"exact_match\": \"true\",\n            \"distro_arch_series\": f\"https://api.launchpad.net/1.0/ubuntu/{series_slug}/amd64\",\n            \"pocket\": \"Release\",\n            \"status\": \"Published\",\n        },\n    ).json()[\"entries\"]\n    versions = set()\n    for package in packages:\n        major, minor = map(int, package[\"binary_package_version\"].split(\".\")[:2])\n        versions.add(Version(major, minor))\n\n    return versions\n\n\ndef fetch_installable_qt_versions() -> set[Version]:\n    log.debug(\"Fetching installable Qt versions\")\n    listing = api.get(\"https://download.qt.io/online/qtsdkrepository/linux_x64/desktop/\").text\n    versions = set()\n    for version in re.findall(r'href=\"qt(\\d)_\\1(\\d{0,2})(\\d+)/\"', listing):\n        major, minor, *patch = map(int, filter(None, version))\n        versions.add(Version(major, minor, *patch))\n\n    return versions\n\n\ndef get_supported_qt_versions(supported_date: date) -> tuple[dict[Version, QtVersion], set[Version]]:\n    log.debug(\"Getting supported Qt versions\")\n    versions = {}\n    lts_releases = set()\n\n    for cycle in fetch_eoldate_info(\"qt\"):\n        eol = date.fromisoformat(cycle[\"eol\"])\n        major, minor, *patch = map(int, cycle[\"cycle\"].split(\".\"))\n        version = Version(major, minor, *patch)\n        if cycle[\"lts\"]:\n            log.debug(\"Adding %s to LTS versions\", version)\n            lts_releases.add(version)\n\n        if eol < supported_date:\n            continue\n\n        log.info(\"Adding %s to supported versions (until %s)\", version, eol)\n        versions[version] = QtVersion(version, eol, \"\")\n\n    return versions, lts_releases\n\n\ndef find_used_qt_versions(supported_date: date) -> set[QtVersion]:\n    log.debug(\"Finding used Qt versions\")\n\n    versions, lts_releases = get_supported_qt_versions(supported_date)\n\n    # Check for latest versions in supported Ubuntu LTS\n    for cycle in fetch_eoldate_info(\"ubuntu\"):\n        eol = date.fromisoformat(cycle[\"eol\"])\n        if eol < supported_date:\n            continue\n\n        series = cycle[\"codename\"]\n        log.debug(\"Checking Qt packages in Ubuntu %s (supported until %s)\", series, eol)\n\n        series_slug = cycle[\"codename\"].split()[0].lower()\n        for package in (\"qtbase5-dev\", \"qt6-base-dev\"):\n            for version in fetch_ubuntu_package_versions(series_slug, package):\n                if version not in lts_releases:\n                    log.debug(\"Skipping non-LTS version: %s (from Ubuntu %s)\", version, series)\n                    continue\n\n                log.info(\"Adding %s to supported versions (from Ubuntu %s)\", version, series)\n                if version not in versions or versions[version].eol < eol:\n                    versions[version] = QtVersion(version, eol, f\"Ubuntu {series}\")\n\n    return set(versions.values())\n\n\nif __name__ == \"__main__\":\n    logging.basicConfig(level=logging.INFO)\n\n    log.info(\"Compiling target Qt versions\")\n    now = date.today()\n    latest: dict[Version, Version] = {}\n    for version in fetch_installable_qt_versions():\n        minor = version.nopatch()\n        if latest.get(minor, Version(0, 0)) < version:\n            latest[minor] = version\n\n    target_versions = sorted(find_used_qt_versions(now))\n    for qt_version in target_versions:\n        qt_version.version = latest[qt_version.version]\n\n    log.info(\"Compiled target Qt versions: %s\", target_versions)\n    log.info(\"Processing input workflow files...\")\n\n    yaml = ruamel.yaml.YAML()\n    yaml.width = 1024\n    yaml.indent(mapping=2, sequence=4, offset=2)\n    for file in sys.argv[1:]:\n        log.info(\"Processing %s file\", file)\n        with open(file, \"rb\") as fr:\n            workflow = yaml.load(fr)\n\n        for key, job in workflow.get(\"jobs\", {}).items():\n            if not job.get(\"strategy\", {}).get(\"matrix\", {}).get(\"qt-version\"):\n                continue\n\n            job_versions = job[\"strategy\"][\"matrix\"][\"qt-version\"]\n            # Only set latest version for winget-update job\n            if key == \"winget-update\":\n                target = target_versions[-1]\n                job_versions[0] = str(target.version)\n                job_versions.yaml_add_eol_comment(target.comment(), 0)\n                continue\n\n            job_versions.clear()\n            for t, target in enumerate(target_versions):\n                job_versions.append(str(target.version))\n                job_versions.yaml_add_eol_comment(target.comment(), t)\n\n        with open(file, \"wb\") as fw:\n            yaml.dump(workflow, fw)\n"
  },
  {
    "path": "misc/qt-updater/pyproject.toml",
    "content": "[project]\nname = \"qt-updater\"\nversion = \"1.0.0\"\ndescription = \"Script for updating EFI Boot Editor CI with latest Qt versions\"\n\nrequires-python = \">=3.14\"\ndependencies = [\n    \"requests>=2.32.4\",\n    \"ruamel-yaml>=0.18.14\",\n]\n\n[project.optional-dependencies]\ndev = [\n    \"ruff>=0.12.3\",\n    \"ty>=0.0.1a14\",\n    \"types-requests>=2.32.4.20250611\",\n]\n\n[tool.ruff]\nlint.select = [\n    \"B\",\n    \"C\",\n    \"E\",\n    \"F\",\n    \"I\",\n    \"W\",\n]\n\nline-length = 120\n\n[tool.black]\nline-length = 120\n\n[tool.mypy]\nstrict = true\ncheck_untyped_defs = true\ndisallow_any_generics = true\nstrict_optional = true\nwarn_no_return = true\nwarn_redundant_casts = true\nwarn_return_any = true\nwarn_unreachable = true\nwarn_unused_configs = true\nwarn_unused_ignores = true\n\nplugins = []\n"
  },
  {
    "path": "misc/run-efibooteditor",
    "content": "#!/usr/bin/env bash\n# SPDX-License-Identifier: LGPL-3.0-or-later\n\nSCRIPT_DIR=\"$(readlink -f \"$(dirname \"$0\")\")\"\n\nif [ -f \"${SCRIPT_DIR}/efibooteditor\" ]; then\n    BINARY_DIR=${SCRIPT_DIR}/efibooteditor\nelif [ -f \"${SCRIPT_DIR}/bin/efibooteditor\" ]; then\n    BINARY_DIR=${SCRIPT_DIR}/bin/efibooteditor\nelse\n    BINARY_DIR=efibooteditor\nfi\n\n# For non-root users try to get authorisation to run as root.\nif [ \"$(id -u)\" != \"0\" ]; then\n    # Wayland workaround\n    if xhost 1> /dev/null 2>&1 && ! xhost | grep -qi 'SI:localuser:root$'; then\n        xhost +SI:localuser:root\n        trap \"xhost -SI:localuser:root\" EXIT\n    fi\n\n    # No exec so trap works\n    if [ -n \"${APPIMAGE}\" ]; then\n        pkexec env DISPLAY=\"$DISPLAY\" XAUTHORITY=\"$XAUTHORITY\" XDG_DATA_DIRS=\"$XDG_DATA_DIRS\" QT_QPA_PLATFORMTHEME=\"$QT_QPA_PLATFORMTHEME\" QT_STYLE_OVERRIDE=\"$QT_STYLE_OVERRIDE\" XDG_CURRENT_DESKTOP=\"$XDG_CURRENT_DESKTOP\" APPIMAGE_EXTRACT_AND_RUN=1 \"$APPIMAGE\" \"$@\"\n        exit $?\n\n    else\n        pkexec env DISPLAY=\"$DISPLAY\" XAUTHORITY=\"$XAUTHORITY\" XDG_DATA_DIRS=\"$XDG_DATA_DIRS\" QT_QPA_PLATFORMTHEME=\"$QT_QPA_PLATFORMTHEME\" QT_STYLE_OVERRIDE=\"$QT_STYLE_OVERRIDE\" XDG_CURRENT_DESKTOP=\"$XDG_CURRENT_DESKTOP\" \"${BINARY_DIR}\" \"$@\"\n        exit $?\n    fi\nfi\n\nexec \"${BINARY_DIR}\" \"$@\"\n"
  },
  {
    "path": "src/bootentry.cpp",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#include \"compat.h\"\n\n#include \"bootentry.h\"\n\n#include <QJsonArray>\n#include <QJsonObject>\n\n#include \"efiboot.h\"\n\nEFIBoot::Progress_fn EFIBoot::_get_variables_progress_fn = nullptr;\n\n#define check_obj()                                      \\\n    if(obj[\"type\"] != TYPE || obj[\"subtype\"] != SUBTYPE) \\\n    return std::nullopt\n#define check_type(field, typecheck)                          \\\n    if(!obj.contains(#field) || !obj[#field].is##typecheck()) \\\n    return std::nullopt\n#define try_read(field, typecheck) try_read_3(field, typecheck, typecheck)\n#define try_read_3(field, typecheck, typecast) \\\n    check_type(field, typecheck);              \\\n    value.field = static_cast<decltype(value.field)>(obj[#field].to##typecast())\n#define try_read_4(field, old_name, typecheck, typecast)                                \\\n    if(obj.contains(old_name) && obj[old_name].is##typecheck())                         \\\n        value.field = static_cast<decltype(value.field)>(obj[old_name].to##typecast()); \\\n    else if(obj.contains(#field) && obj[#field].is##typecheck())                        \\\n        value.field = static_cast<decltype(value.field)>(obj[#field].to##typecast());   \\\n    else                                                                                \\\n        return std::nullopt\n\n// Hardware\n\nFilePath::Pci::Pci(const EFIBoot::File_path::HW::Pci &_pci)\n    : _string{}\n    , function{_pci.function}\n    , device{_pci.device}\n{\n}\n\nauto FilePath::Pci::toEFIBootFilePath() const -> EFIBoot::File_path::HW::Pci\n{\n    EFIBoot::File_path::HW::Pci value{};\n    value.function = function;\n    value.device = device;\n    return value;\n}\n\nauto FilePath::Pci::fromJSON(const QJsonObject &obj) -> std::optional<Pci>\n{\n    Pci value{};\n    check_obj();\n    try_read_3(function, Double, Int);\n    try_read_3(device, Double, Int);\n    return {value};\n}\n\nauto FilePath::Pci::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"function\"] = static_cast<int>(function);\n    value[\"device\"] = static_cast<int>(device);\n    return value;\n}\n\nauto FilePath::Pci::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"Pci(%1,%2)\").arg(device).arg(function);\n}\n\nFilePath::Pccard::Pccard(const EFIBoot::File_path::HW::Pccard &_pccard)\n    : _string{}\n    , function_number{_pccard.function_number}\n{\n}\n\nauto FilePath::Pccard::toEFIBootFilePath() const -> EFIBoot::File_path::HW::Pccard\n{\n    EFIBoot::File_path::HW::Pccard value{};\n    value.function_number = function_number;\n    return value;\n}\n\nauto FilePath::Pccard::fromJSON(const QJsonObject &obj) -> std::optional<Pccard>\n{\n    Pccard value{};\n    check_obj();\n    try_read_3(function_number, Double, Int);\n    return {value};\n}\n\nauto FilePath::Pccard::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"function_number\"] = static_cast<int>(function_number);\n    return value;\n}\n\nauto FilePath::Pccard::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"PcCard(%1)\").arg(function_number);\n}\n\nFilePath::MemoryMapped::MemoryMapped(const EFIBoot::File_path::HW::Memory_mapped &_memory_mapped)\n    : _string{}\n    , memory_type{_memory_mapped.memory_type}\n    , start_address{_memory_mapped.start_address}\n    , end_address{_memory_mapped.end_address}\n{\n}\n\nauto FilePath::MemoryMapped::toEFIBootFilePath() const -> EFIBoot::File_path::HW::Memory_mapped\n{\n    EFIBoot::File_path::HW::Memory_mapped value{};\n    value.memory_type = memory_type;\n    value.start_address = start_address;\n    value.end_address = end_address;\n    return value;\n}\n\nauto FilePath::MemoryMapped::fromJSON(const QJsonObject &obj) -> std::optional<MemoryMapped>\n{\n    MemoryMapped value{};\n    check_obj();\n    try_read_3(memory_type, Double, Int);\n    check_type(start_address, String);\n    value.start_address = obj[\"start_address\"].toString().toULongLong(nullptr, HEX_BASE);\n    check_type(end_address, String);\n    value.end_address = obj[\"end_address\"].toString().toULongLong(nullptr, HEX_BASE);\n    return {value};\n}\n\nauto FilePath::MemoryMapped::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"memory_type\"] = static_cast<int>(memory_type);\n    value[\"start_address\"] = toHex(start_address);\n    value[\"end_address\"] = toHex(end_address);\n    return value;\n}\n\nauto FilePath::MemoryMapped::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"MemoryMapped(%1,%2,%3)\").arg(static_cast<int>(memory_type)).arg(start_address).arg(end_address);\n}\n\nFilePath::Controller::Controller(const EFIBoot::File_path::HW::Controller &_controller)\n    : _string{}\n    , controller_number{_controller.controller_number}\n{\n}\n\nauto FilePath::Controller::toEFIBootFilePath() const -> EFIBoot::File_path::HW::Controller\n{\n    EFIBoot::File_path::HW::Controller value{};\n    value.controller_number = controller_number;\n    return value;\n}\n\nauto FilePath::Controller::fromJSON(const QJsonObject &obj) -> std::optional<Controller>\n{\n    Controller value{};\n    check_obj();\n    try_read_3(controller_number, Double, Int);\n    return {value};\n}\n\nauto FilePath::Controller::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"controller_number\"] = static_cast<int>(controller_number);\n    return value;\n}\n\nauto FilePath::Controller::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"Ctrl(%1)\").arg(controller_number);\n}\n\nFilePath::Bmc::Bmc(const EFIBoot::File_path::HW::Bmc &_bmc)\n    : _string{}\n    , interface_type{_bmc.interface_type}\n    , base_address{_bmc.base_address}\n{\n}\n\nauto FilePath::Bmc::toEFIBootFilePath() const -> EFIBoot::File_path::HW::Bmc\n{\n    EFIBoot::File_path::HW::Bmc value{};\n    value.interface_type = interface_type;\n    value.base_address = base_address;\n    return value;\n}\n\nauto FilePath::Bmc::fromJSON(const QJsonObject &obj) -> std::optional<Bmc>\n{\n    Bmc value{};\n    check_obj();\n    try_read_3(interface_type, Double, Int);\n    check_type(base_address, String);\n    value.base_address = obj[\"base_address\"].toString().toULongLong(nullptr, HEX_BASE);\n    return {value};\n}\n\nauto FilePath::Bmc::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"interface_type\"] = static_cast<int>(interface_type);\n    value[\"base_address\"] = toHex(base_address);\n    return value;\n}\n\nauto FilePath::Bmc::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"BMC(%1,%2)\").arg(static_cast<int>(interface_type)).arg(base_address);\n}\n\n// ACPI\n\nFilePath::Acpi::Acpi(const EFIBoot::File_path::ACPI::Acpi &_acpi)\n    : _string{}\n    , hid{_acpi.hid}\n    , uid{_acpi.uid}\n{\n}\n\nauto FilePath::Acpi::toEFIBootFilePath() const -> EFIBoot::File_path::ACPI::Acpi\n{\n    EFIBoot::File_path::ACPI::Acpi value{};\n    value.hid = hid;\n    value.uid = uid;\n    return value;\n}\n\nauto FilePath::Acpi::fromJSON(const QJsonObject &obj) -> std::optional<Acpi>\n{\n    Acpi value{};\n    if(obj[\"type\"] != TYPE)\n        return std::nullopt;\n\n    // Support for old names\n    if(obj[\"subtype\"] != SUBTYPE && obj[\"subtype\"] != \"HID\")\n        return std::nullopt;\n\n    // check_obj();\n    try_read_3(hid, Double, Int);\n    try_read_3(uid, Double, Int);\n    return {value};\n}\n\nauto FilePath::Acpi::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"hid\"] = static_cast<int>(hid);\n    value[\"uid\"] = static_cast<int>(uid);\n    return value;\n}\n\nauto FilePath::Acpi::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"Acpi(%1,%2)\").arg(toHex(hid), toHex(uid));\n}\n\nFilePath::Expanded::Expanded(const EFIBoot::File_path::ACPI::Expanded &_expanded)\n    : _string{}\n    , hid{_expanded.hid}\n    , uid{_expanded.uid}\n    , cid{_expanded.cid}\n    , hidstr{QByteArray::fromRawData(_expanded.hidstr.data(), static_cast<int>(_expanded.hidstr.size() * sizeof(decltype(_expanded.hidstr)::value_type)))}\n    , uidstr{QByteArray::fromRawData(_expanded.uidstr.data(), static_cast<int>(_expanded.uidstr.size() * sizeof(decltype(_expanded.uidstr)::value_type)))}\n    , cidstr{QByteArray::fromRawData(_expanded.cidstr.data(), static_cast<int>(_expanded.cidstr.size() * sizeof(decltype(_expanded.cidstr)::value_type)))}\n{\n}\n\nauto FilePath::Expanded::toEFIBootFilePath() const -> EFIBoot::File_path::ACPI::Expanded\n{\n    EFIBoot::File_path::ACPI::Expanded value{};\n    value.hid = hid;\n    value.uid = uid;\n    value.cid = cid;\n    value.hidstr = hidstr.toStdString();\n    value.uidstr = uidstr.toStdString();\n    value.cidstr = cidstr.toStdString();\n    return value;\n}\n\nauto FilePath::Expanded::fromJSON(const QJsonObject &obj) -> std::optional<Expanded>\n{\n    Expanded value{};\n    check_obj();\n    try_read_3(hid, Double, Int);\n    try_read_3(uid, Double, Int);\n    try_read_3(cid, Double, Int);\n    try_read(hidstr, String);\n    try_read(uidstr, String);\n    try_read(cidstr, String);\n    return {value};\n}\n\nauto FilePath::Expanded::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"hid\"] = static_cast<int>(hid);\n    value[\"uid\"] = static_cast<int>(uid);\n    value[\"cid\"] = static_cast<int>(cid);\n    value[\"hidstr\"] = hidstr;\n    value[\"uidstr\"] = uidstr;\n    value[\"cidstr\"] = cidstr;\n    return value;\n}\n\nauto FilePath::Expanded::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"AcpiEx(%1,%2,%3,%4,%5,%6)\").arg(hid).arg(cid).arg(uid).arg(hidstr).arg(cidstr).arg(uidstr);\n}\n\nFilePath::Adr::Adr(const EFIBoot::File_path::ACPI::Adr &_adr)\n    : _string{}\n    , adr{_adr.adr}\n    , additional_adr{QByteArray::fromRawData(reinterpret_cast<const char *>(_adr.additional_adr.data()), static_cast<int>(_adr.additional_adr.size() * sizeof(decltype(_adr.additional_adr)::value_type)))}\n{\n    additional_adr.detach();\n}\n\nauto FilePath::Adr::toEFIBootFilePath() const -> EFIBoot::File_path::ACPI::Adr\n{\n    EFIBoot::File_path::ACPI::Adr value{};\n    value.adr = adr;\n    value.additional_adr = {additional_adr.begin(), additional_adr.end()};\n    return value;\n}\n\nauto FilePath::Adr::fromJSON(const QJsonObject &obj) -> std::optional<Adr>\n{\n    Adr value{};\n    check_obj();\n    try_read_3(adr, Double, Int);\n    check_type(additional_adr, String);\n    value.additional_adr = QByteArray::fromBase64(obj[\"additional_adr\"].toString().toUtf8());\n    return {value};\n}\n\nauto FilePath::Adr::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"adr\"] = static_cast<int>(adr);\n    value[\"additional_adr\"] = static_cast<QString>(additional_adr.toBase64());\n    return value;\n}\n\nauto FilePath::Adr::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"AcpiAdr(%1,[%2B])\").arg(adr).arg(additional_adr.size());\n}\n\nFilePath::Nvdimm::Nvdimm(const EFIBoot::File_path::ACPI::Nvdimm &_nvdimm)\n    : _string{}\n    , nfit_device_handle{_nvdimm.nfit_device_handle}\n{\n}\n\nauto FilePath::Nvdimm::toEFIBootFilePath() const -> EFIBoot::File_path::ACPI::Nvdimm\n{\n    EFIBoot::File_path::ACPI::Nvdimm value{};\n    value.nfit_device_handle = nfit_device_handle;\n    return value;\n}\n\nauto FilePath::Nvdimm::fromJSON(const QJsonObject &obj) -> std::optional<Nvdimm>\n{\n    Nvdimm value{};\n    check_obj();\n    try_read_3(nfit_device_handle, Double, Int);\n    return {value};\n}\n\nauto FilePath::Nvdimm::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"nfit_device_handle\"] = static_cast<int>(nfit_device_handle);\n    return value;\n}\n\nauto FilePath::Nvdimm::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"Nvdimm(%1)\").arg(nfit_device_handle);\n}\n\n// Messaging\n\nFilePath::Atapi::Atapi(const EFIBoot::File_path::MSG::Atapi &_atapi)\n    : _string{}\n    , primary{_atapi.primary}\n    , slave{_atapi.slave}\n    , lun{_atapi.lun}\n{\n}\n\nauto FilePath::Atapi::toEFIBootFilePath() const -> EFIBoot::File_path::MSG::Atapi\n{\n    EFIBoot::File_path::MSG::Atapi value{};\n    value.primary = primary;\n    value.slave = slave;\n    value.lun = lun;\n    return value;\n}\n\nauto FilePath::Atapi::fromJSON(const QJsonObject &obj) -> std::optional<Atapi>\n{\n    Atapi value{};\n    check_obj();\n    try_read(primary, Bool);\n    try_read(slave, Bool);\n    try_read_3(lun, Double, Int);\n    return {value};\n}\n\nauto FilePath::Atapi::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"primary\"] = primary;\n    value[\"slave\"] = slave;\n    value[\"lun\"] = static_cast<int>(lun);\n    return value;\n}\n\nauto FilePath::Atapi::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"Ata(%1,%2,%3)\").arg(primary).arg(slave).arg(lun);\n}\n\nFilePath::Scsi::Scsi(const EFIBoot::File_path::MSG::Scsi &_scsi)\n    : _string{}\n    , pun{_scsi.pun}\n    , lun{_scsi.lun}\n{\n}\n\nauto FilePath::Scsi::toEFIBootFilePath() const -> EFIBoot::File_path::MSG::Scsi\n{\n    EFIBoot::File_path::MSG::Scsi value{};\n    value.pun = pun;\n    value.lun = lun;\n    return value;\n}\n\nauto FilePath::Scsi::fromJSON(const QJsonObject &obj) -> std::optional<Scsi>\n{\n    Scsi value{};\n    check_obj();\n    try_read_3(pun, Double, Int);\n    try_read_3(lun, Double, Int);\n    return {value};\n}\n\nauto FilePath::Scsi::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"pun\"] = static_cast<int>(pun);\n    value[\"lun\"] = static_cast<int>(lun);\n    return value;\n}\n\nauto FilePath::Scsi::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"Scsi(%1,%2)\").arg(pun).arg(lun);\n}\n\nFilePath::FibreChannel::FibreChannel(const EFIBoot::File_path::MSG::Fibre_channel &_fibre_channel)\n    : _string{}\n    , reserved{_fibre_channel.reserved}\n    , world_wide_name{_fibre_channel.world_wide_name}\n    , lun{_fibre_channel.lun}\n{\n}\n\nauto FilePath::FibreChannel::toEFIBootFilePath() const -> EFIBoot::File_path::MSG::Fibre_channel\n{\n    EFIBoot::File_path::MSG::Fibre_channel value{};\n    value.reserved = reserved;\n    value.world_wide_name = world_wide_name;\n    value.lun = lun;\n    return value;\n}\n\nauto FilePath::FibreChannel::fromJSON(const QJsonObject &obj) -> std::optional<FibreChannel>\n{\n    FibreChannel value{};\n    check_obj();\n    try_read_3(reserved, Double, Int);\n    check_type(world_wide_name, String);\n    value.world_wide_name = obj[\"world_wide_name\"].toString().toULongLong(nullptr, HEX_BASE);\n    check_type(lun, String);\n    value.lun = obj[\"lun\"].toString().toULongLong(nullptr, HEX_BASE);\n    return {value};\n}\n\nauto FilePath::FibreChannel::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"reserved\"] = static_cast<int>(reserved);\n    value[\"world_wide_name\"] = toHex(world_wide_name);\n    value[\"lun\"] = toHex(lun);\n    return value;\n}\n\nauto FilePath::FibreChannel::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"Fibre(%1,%2)\").arg(world_wide_name).arg(lun);\n}\n\nFilePath::Firewire::Firewire(const EFIBoot::File_path::MSG::Firewire &_firewire)\n    : _string{}\n    , reserved{_firewire.reserved}\n    , guid{_firewire.guid}\n{\n}\n\nauto FilePath::Firewire::toEFIBootFilePath() const -> EFIBoot::File_path::MSG::Firewire\n{\n    EFIBoot::File_path::MSG::Firewire value{};\n    value.reserved = reserved;\n    value.guid = guid;\n    return value;\n}\n\nauto FilePath::Firewire::fromJSON(const QJsonObject &obj) -> std::optional<Firewire>\n{\n    Firewire value{};\n    check_obj();\n    try_read_3(reserved, Double, Int);\n    check_type(guid, String);\n    value.guid = obj[\"guid\"].toString().toULongLong(nullptr, HEX_BASE);\n    return {value};\n}\n\nauto FilePath::Firewire::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"reserved\"] = static_cast<int>(reserved);\n    value[\"guid\"] = toHex(guid);\n    return value;\n}\n\nauto FilePath::Firewire::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"I1394(%1)\").arg(guid);\n}\n\nFilePath::Usb::Usb(const EFIBoot::File_path::MSG::Usb &_usb)\n    : _string{}\n    , parent_port_number{_usb.parent_port_number}\n    , interface_number{_usb.interface_number}\n{\n}\n\nauto FilePath::Usb::toEFIBootFilePath() const -> EFIBoot::File_path::MSG::Usb\n{\n    EFIBoot::File_path::MSG::Usb value{};\n    value.parent_port_number = parent_port_number;\n    value.interface_number = interface_number;\n    return value;\n}\n\nauto FilePath::Usb::fromJSON(const QJsonObject &obj) -> std::optional<Usb>\n{\n    Usb value{};\n    check_obj();\n    try_read_3(parent_port_number, Double, Int);\n    // Support for old names\n    try_read_4(interface_number, \"interface\", Double, Int);\n    return {value};\n}\n\nauto FilePath::Usb::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"parent_port_number\"] = static_cast<int>(parent_port_number);\n    value[\"interface_number\"] = static_cast<int>(interface_number);\n    return value;\n}\n\nauto FilePath::Usb::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"USB(%1,%2)\").arg(parent_port_number).arg(interface_number);\n}\n\nFilePath::I2o::I2o(const EFIBoot::File_path::MSG::I2o &_i2o)\n    : _string{}\n    , tid{_i2o.tid}\n{\n}\n\nauto FilePath::I2o::toEFIBootFilePath() const -> EFIBoot::File_path::MSG::I2o\n{\n    EFIBoot::File_path::MSG::I2o value{};\n    value.tid = tid;\n    return value;\n}\n\nauto FilePath::I2o::fromJSON(const QJsonObject &obj) -> std::optional<I2o>\n{\n    I2o value{};\n    check_obj();\n    try_read_3(tid, Double, Int);\n    return {value};\n}\n\nauto FilePath::I2o::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"tid\"] = static_cast<int>(tid);\n    return value;\n}\n\nauto FilePath::I2o::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"I2O(%1)\").arg(tid);\n}\n\nFilePath::Infiniband::Infiniband(const EFIBoot::File_path::MSG::Infiniband &_infiniband)\n    : _string{}\n    , resource_flags{_infiniband.resource_flags}\n    , port_gid{}\n    , ioc_guid_service_id{_infiniband.ioc_guid_service_id}\n    , target_port_id{_infiniband.target_port_id}\n    , device_id{_infiniband.device_id}\n{\n    static_assert(sizeof(port_gid) == sizeof(_infiniband.port_gid));\n    memcpy(reinterpret_cast<void *>(&port_gid), &_infiniband.port_gid, sizeof(port_gid));\n}\n\nauto FilePath::Infiniband::toEFIBootFilePath() const -> EFIBoot::File_path::MSG::Infiniband\n{\n    EFIBoot::File_path::MSG::Infiniband value{};\n    value.resource_flags = resource_flags;\n    static_assert(sizeof(port_gid) == sizeof(value.port_gid));\n    memcpy(value.port_gid.data(), &port_gid, sizeof(value.port_gid));\n    value.ioc_guid_service_id = ioc_guid_service_id;\n    value.target_port_id = target_port_id;\n    value.device_id = device_id;\n    return value;\n}\n\nauto FilePath::Infiniband::fromJSON(const QJsonObject &obj) -> std::optional<Infiniband>\n{\n    Infiniband value{};\n    check_obj();\n    try_read_3(resource_flags, Double, Int);\n    check_type(port_gid, String);\n    value.port_gid = QUuid::fromString(obj[\"port_gid\"].toString());\n    check_type(ioc_guid_service_id, String);\n    value.ioc_guid_service_id = obj[\"ioc_guid_service_id\"].toString().toULongLong(nullptr, HEX_BASE);\n    check_type(target_port_id, String);\n    value.target_port_id = obj[\"target_port_id\"].toString().toULongLong(nullptr, HEX_BASE);\n    check_type(device_id, String);\n    value.device_id = obj[\"device_id\"].toString().toULongLong(nullptr, HEX_BASE);\n    return {value};\n}\n\nauto FilePath::Infiniband::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"resource_flags\"] = static_cast<int>(resource_flags);\n    value[\"port_gid\"] = port_gid.toString();\n    value[\"ioc_guid_service_id\"] = toHex(ioc_guid_service_id);\n    value[\"target_port_id\"] = toHex(target_port_id);\n    value[\"device_id\"] = toHex(device_id);\n    return value;\n}\n\nauto FilePath::Infiniband::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"Infiniband(%1,%2,%3,%4,%5)\").arg(resource_flags).arg(port_gid.toString(QUuid::WithoutBraces)).arg(ioc_guid_service_id).arg(target_port_id).arg(device_id);\n}\n\nFilePath::MacAddress::MacAddress(const EFIBoot::File_path::MSG::Mac_address &_mac_address)\n    : _string{}\n    , address{QByteArray::fromRawData(reinterpret_cast<const char *>(_mac_address.address.data()), static_cast<int>(_mac_address.address.size() * sizeof(decltype(_mac_address.address)::value_type)))}\n    , if_type{_mac_address.if_type}\n{\n}\n\nauto FilePath::MacAddress::toEFIBootFilePath() const -> EFIBoot::File_path::MSG::Mac_address\n{\n    EFIBoot::File_path::MSG::Mac_address value{};\n    {\n        auto bytes = QByteArray::fromHex(address.toUtf8());\n        memcpy(value.address.data(), bytes.data(), qMin(static_cast<size_t>(bytes.size()), sizeof(value.address)));\n    }\n    value.if_type = if_type;\n    return value;\n}\n\nauto FilePath::MacAddress::fromJSON(const QJsonObject &obj) -> std::optional<MacAddress>\n{\n    MacAddress value{};\n    check_obj();\n    try_read(address, String);\n    try_read_3(if_type, Double, Int);\n    return {value};\n}\n\nauto FilePath::MacAddress::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"address\"] = address;\n    value[\"if_type\"] = static_cast<int>(if_type);\n    return value;\n}\n\nauto FilePath::MacAddress::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"MAC(%1,%2)\").arg(address.left(12)).arg(if_type);\n}\n\nFilePath::Ipv4::Ipv4(const EFIBoot::File_path::MSG::Ipv4 &_ipv4)\n    : _string{}\n    , local_ip_address{*reinterpret_cast<const uint32_t *>(_ipv4.local_ip_address.data())}\n    , remote_ip_address{*reinterpret_cast<const uint32_t *>(_ipv4.remote_ip_address.data())}\n    , local_port{_ipv4.local_port}\n    , remote_port{_ipv4.remote_port}\n    , protocol{_ipv4.protocol}\n    , static_ip_address{_ipv4.static_ip_address}\n    , gateway_ip_address{*reinterpret_cast<const uint32_t *>(_ipv4.gateway_ip_address.data())}\n    , subnet_mask{*reinterpret_cast<const uint32_t *>(_ipv4.subnet_mask.data())}\n{\n    static_assert(sizeof(local_ip_address.toIPv4Address()) == sizeof(_ipv4.local_ip_address));\n    static_assert(sizeof(remote_ip_address.toIPv4Address()) == sizeof(_ipv4.remote_ip_address));\n    static_assert(sizeof(gateway_ip_address.toIPv4Address()) == sizeof(_ipv4.gateway_ip_address));\n    static_assert(sizeof(subnet_mask.toIPv4Address()) == sizeof(_ipv4.subnet_mask));\n}\n\nauto FilePath::Ipv4::toEFIBootFilePath() const -> EFIBoot::File_path::MSG::Ipv4\n{\n    EFIBoot::File_path::MSG::Ipv4 value{};\n    {\n        auto ip_address = local_ip_address.toIPv4Address();\n        static_assert(sizeof(ip_address) == sizeof(value.local_ip_address));\n        memcpy(value.local_ip_address.data(), &ip_address, sizeof(value.local_ip_address));\n    }\n    {\n        auto ip_address = remote_ip_address.toIPv4Address();\n        static_assert(sizeof(ip_address) == sizeof(value.remote_ip_address));\n        memcpy(value.remote_ip_address.data(), &ip_address, sizeof(value.remote_ip_address));\n    }\n    value.local_port = local_port;\n    value.remote_port = remote_port;\n    value.protocol = protocol;\n    value.static_ip_address = static_ip_address;\n    {\n        auto ip_address = gateway_ip_address.toIPv4Address();\n        static_assert(sizeof(ip_address) == sizeof(value.gateway_ip_address));\n        memcpy(value.gateway_ip_address.data(), &ip_address, sizeof(value.gateway_ip_address));\n    }\n    {\n        auto ip_address = subnet_mask.toIPv4Address();\n        static_assert(sizeof(ip_address) == sizeof(value.subnet_mask));\n        memcpy(value.subnet_mask.data(), &ip_address, sizeof(value.subnet_mask));\n    }\n    return value;\n}\n\nauto FilePath::Ipv4::fromJSON(const QJsonObject &obj) -> std::optional<Ipv4>\n{\n    Ipv4 value{};\n    check_obj();\n    try_read(local_ip_address, String);\n    try_read(remote_ip_address, String);\n    try_read_3(local_port, Double, Int);\n    try_read_3(remote_port, Double, Int);\n    try_read_3(protocol, Double, Int);\n    try_read(static_ip_address, Bool);\n    try_read(gateway_ip_address, String);\n    try_read(subnet_mask, String);\n    return {value};\n}\n\nauto FilePath::Ipv4::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"local_ip_address\"] = local_ip_address.toString();\n    value[\"remote_ip_address\"] = remote_ip_address.toString();\n    value[\"local_port\"] = static_cast<int>(local_port);\n    value[\"remote_port\"] = static_cast<int>(remote_port);\n    value[\"protocol\"] = static_cast<int>(protocol);\n    value[\"static_ip_address\"] = static_ip_address;\n    value[\"gateway_ip_address\"] = gateway_ip_address.toString();\n    value[\"subnet_mask\"] = subnet_mask.toString();\n    return value;\n}\n\nauto FilePath::Ipv4::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"IPv4(%1:%2,%3,%4,%5:%6,%7,%8)\")\n                         .arg(remote_ip_address.toString())\n                         .arg(remote_port)\n                         .arg(protocol == 17 ? \"UDP\" : (protocol == 6 ? \"TCP\" : QString::number(protocol)))\n                         .arg(static_ip_address ? \"Static\" : \"DHCP\")\n                         .arg(local_ip_address.toString())\n                         .arg(local_port)\n                         .arg(gateway_ip_address.toString())\n                         .arg(subnet_mask.toString());\n}\n\nFilePath::Ipv6::Ipv6(const EFIBoot::File_path::MSG::Ipv6 &_ipv6)\n    : _string{}\n    , local_ip_address{_ipv6.local_ip_address.data()}\n    , remote_ip_address{_ipv6.remote_ip_address.data()}\n    , local_port{_ipv6.local_port}\n    , remote_port{_ipv6.remote_port}\n    , protocol{_ipv6.protocol}\n    , ip_address_origin{_ipv6.ip_address_origin}\n    , prefix_length{_ipv6.prefix_length}\n    , gateway_ip_address{_ipv6.gateway_ip_address.data()}\n{\n    static_assert(sizeof(local_ip_address.toIPv6Address()) == sizeof(_ipv6.local_ip_address));\n    static_assert(sizeof(remote_ip_address.toIPv6Address()) == sizeof(_ipv6.remote_ip_address));\n    static_assert(sizeof(gateway_ip_address.toIPv6Address()) == sizeof(_ipv6.gateway_ip_address));\n}\n\nauto FilePath::Ipv6::toEFIBootFilePath() const -> EFIBoot::File_path::MSG::Ipv6\n{\n    EFIBoot::File_path::MSG::Ipv6 value{};\n    {\n        auto ip_address = local_ip_address.toIPv6Address();\n        static_assert(sizeof(ip_address) == sizeof(value.local_ip_address));\n        memcpy(value.local_ip_address.data(), &ip_address, sizeof(value.local_ip_address));\n    }\n    {\n        auto ip_address = remote_ip_address.toIPv6Address();\n        static_assert(sizeof(ip_address) == sizeof(value.remote_ip_address));\n        memcpy(value.remote_ip_address.data(), &ip_address, sizeof(value.remote_ip_address));\n    }\n    value.local_port = local_port;\n    value.remote_port = remote_port;\n    value.protocol = protocol;\n    value.ip_address_origin = ip_address_origin;\n    value.prefix_length = prefix_length;\n    {\n        auto ip_address = gateway_ip_address.toIPv6Address();\n        static_assert(sizeof(ip_address) == sizeof(value.gateway_ip_address));\n        memcpy(value.gateway_ip_address.data(), &ip_address, sizeof(value.gateway_ip_address));\n    }\n    return value;\n}\n\nauto FilePath::Ipv6::fromJSON(const QJsonObject &obj) -> std::optional<Ipv6>\n{\n    Ipv6 value{};\n    check_obj();\n    try_read(local_ip_address, String);\n    try_read(remote_ip_address, String);\n    try_read_3(local_port, Double, Int);\n    try_read_3(remote_port, Double, Int);\n    try_read_3(protocol, Double, Int);\n    try_read_3(ip_address_origin, Double, Int);\n    try_read_3(prefix_length, Double, Int);\n    try_read(gateway_ip_address, String);\n    return {value};\n}\n\nauto FilePath::Ipv6::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"local_ip_address\"] = local_ip_address.toString();\n    value[\"remote_ip_address\"] = remote_ip_address.toString();\n    value[\"local_port\"] = static_cast<int>(local_port);\n    value[\"remote_port\"] = static_cast<int>(remote_port);\n    value[\"protocol\"] = static_cast<int>(protocol);\n    value[\"ip_address_origin\"] = static_cast<int>(ip_address_origin);\n    value[\"prefix_length\"] = static_cast<int>(prefix_length);\n    value[\"gateway_ip_address\"] = gateway_ip_address.toString();\n    return value;\n}\n\nauto FilePath::Ipv6::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"IPv6(%1:%2,%3,%4,%5:%6,%7,%8)\")\n                         .arg(remote_ip_address.toString())\n                         .arg(remote_port)\n                         .arg(protocol == 17 ? \"UDP\" : (protocol == 6 ? \"TCP\" : QString::number(protocol)))\n                         .arg(ip_address_origin == EFIBoot::File_path::MSG::Ipv6::IP_ADDRESS_ORIGIN::STATIC ? \"Static\" : (ip_address_origin == EFIBoot::File_path::MSG::Ipv6::IP_ADDRESS_ORIGIN::STATELESS ? \"StatelessAutoConfigure\" : (ip_address_origin == EFIBoot::File_path::MSG::Ipv6::IP_ADDRESS_ORIGIN::STATEFUL ? \"StatefulAutoConfigure\" : QString::number(static_cast<int>(ip_address_origin)))))\n                         .arg(local_ip_address.toString())\n                         .arg(local_port)\n                         .arg(gateway_ip_address.toString())\n                         .arg(prefix_length);\n}\n\nFilePath::Uart::Uart(const EFIBoot::File_path::MSG::Uart &_uart)\n    : _string{}\n    , reserved{_uart.reserved}\n    , baud_rate{_uart.baud_rate}\n    , data_bits{_uart.data_bits}\n    , parity{_uart.parity}\n    , stop_bits{_uart.stop_bits}\n{\n}\n\nauto FilePath::Uart::toEFIBootFilePath() const -> EFIBoot::File_path::MSG::Uart\n{\n    EFIBoot::File_path::MSG::Uart value{};\n    value.reserved = reserved;\n    value.baud_rate = baud_rate;\n    value.data_bits = data_bits;\n    value.parity = parity;\n    value.stop_bits = stop_bits;\n    return value;\n}\n\nauto FilePath::Uart::fromJSON(const QJsonObject &obj) -> std::optional<Uart>\n{\n    Uart value{};\n    check_obj();\n    try_read_3(reserved, Double, Int);\n    check_type(baud_rate, String);\n    value.baud_rate = obj[\"baud_rate\"].toString().toULongLong(nullptr, HEX_BASE);\n    try_read_3(data_bits, Double, Int);\n    try_read_3(parity, Double, Int);\n    try_read_3(stop_bits, Double, Int);\n    return {value};\n}\n\nauto FilePath::Uart::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"reserved\"] = static_cast<int>(reserved);\n    value[\"baud_rate\"] = toHex(baud_rate);\n    value[\"data_bits\"] = static_cast<int>(data_bits);\n    value[\"parity\"] = static_cast<int>(parity);\n    value[\"stop_bits\"] = static_cast<int>(stop_bits);\n    return value;\n}\n\nauto FilePath::Uart::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"Uart(%1,%2,%3,%4)\").arg(baud_rate).arg(data_bits).arg(static_cast<int>(parity)).arg(static_cast<int>(stop_bits));\n}\n\nFilePath::UsbClass::UsbClass(const EFIBoot::File_path::MSG::Usb_class &_usb_class)\n    : _string{}\n    , vendor_id{_usb_class.vendor_id}\n    , product_id{_usb_class.product_id}\n    , device_class{_usb_class.device_class}\n    , device_subclass{_usb_class.device_subclass}\n    , device_protocol{_usb_class.device_protocol}\n{\n}\n\nauto FilePath::UsbClass::toEFIBootFilePath() const -> EFIBoot::File_path::MSG::Usb_class\n{\n    EFIBoot::File_path::MSG::Usb_class value{};\n    value.vendor_id = vendor_id;\n    value.product_id = product_id;\n    value.device_class = device_class;\n    value.device_subclass = device_subclass;\n    value.device_protocol = device_protocol;\n    return value;\n}\n\nauto FilePath::UsbClass::fromJSON(const QJsonObject &obj) -> std::optional<UsbClass>\n{\n    UsbClass value{};\n    check_obj();\n    try_read_3(vendor_id, Double, Int);\n    try_read_3(product_id, Double, Int);\n    try_read_3(device_class, Double, Int);\n    try_read_3(device_subclass, Double, Int);\n    try_read_3(device_protocol, Double, Int);\n    return {value};\n}\n\nauto FilePath::UsbClass::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"vendor_id\"] = static_cast<int>(vendor_id);\n    value[\"product_id\"] = static_cast<int>(product_id);\n    value[\"device_class\"] = static_cast<int>(device_class);\n    value[\"device_subclass\"] = static_cast<int>(device_subclass);\n    value[\"device_protocol\"] = static_cast<int>(device_protocol);\n    return value;\n}\n\nauto FilePath::UsbClass::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"UsbClass(%1,%2,%3,%4,%5)\").arg(vendor_id).arg(product_id).arg(device_class).arg(device_subclass).arg(device_protocol);\n}\n\nFilePath::UsbWwid::UsbWwid(const EFIBoot::File_path::MSG::Usb_wwid &_usb_wwid)\n    : _string{}\n    , interface_number{_usb_wwid.interface_number}\n    , device_vendor_id{_usb_wwid.device_vendor_id}\n    , device_product_id{_usb_wwid.device_product_id}\n    , serial_number{QString::fromStdU16String(_usb_wwid.serial_number)}\n{\n}\n\nauto FilePath::UsbWwid::toEFIBootFilePath() const -> EFIBoot::File_path::MSG::Usb_wwid\n{\n    EFIBoot::File_path::MSG::Usb_wwid value{};\n    value.interface_number = interface_number;\n    value.device_vendor_id = device_vendor_id;\n    value.device_product_id = device_product_id;\n    value.serial_number = serial_number.toStdU16String();\n    return value;\n}\n\nauto FilePath::UsbWwid::fromJSON(const QJsonObject &obj) -> std::optional<UsbWwid>\n{\n    UsbWwid value{};\n    check_obj();\n    try_read_3(interface_number, Double, Int);\n    try_read_3(device_vendor_id, Double, Int);\n    try_read_3(device_product_id, Double, Int);\n    try_read(serial_number, String);\n    return {value};\n}\n\nauto FilePath::UsbWwid::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"interface_number\"] = static_cast<int>(interface_number);\n    value[\"device_vendor_id\"] = static_cast<int>(device_vendor_id);\n    value[\"device_product_id\"] = static_cast<int>(device_product_id);\n    value[\"serial_number\"] = serial_number;\n    return value;\n}\n\nauto FilePath::UsbWwid::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"UsbWwid(%1,%2,%3)\").arg(device_vendor_id).arg(device_product_id).arg(interface_number);\n}\n\nFilePath::DeviceLogicalUnit::DeviceLogicalUnit(const EFIBoot::File_path::MSG::Device_logical_unit &_device_logical_unit)\n    : _string{}\n    , lun{_device_logical_unit.lun}\n{\n}\n\nauto FilePath::DeviceLogicalUnit::toEFIBootFilePath() const -> EFIBoot::File_path::MSG::Device_logical_unit\n{\n    EFIBoot::File_path::MSG::Device_logical_unit value{};\n    value.lun = lun;\n    return value;\n}\n\nauto FilePath::DeviceLogicalUnit::fromJSON(const QJsonObject &obj) -> std::optional<DeviceLogicalUnit>\n{\n    DeviceLogicalUnit value{};\n    check_obj();\n    try_read_3(lun, Double, Int);\n    return {value};\n}\n\nauto FilePath::DeviceLogicalUnit::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"lun\"] = static_cast<int>(lun);\n    return value;\n}\n\nauto FilePath::DeviceLogicalUnit::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"Unit(%1)\").arg(lun);\n}\n\nFilePath::Sata::Sata(const EFIBoot::File_path::MSG::Sata &_sata)\n    : _string{}\n    , hba_port_number{_sata.hba_port_number}\n    , port_multiplier_port_number{_sata.port_multiplier_port_number}\n    , lun{_sata.lun}\n{\n}\n\nauto FilePath::Sata::toEFIBootFilePath() const -> EFIBoot::File_path::MSG::Sata\n{\n    EFIBoot::File_path::MSG::Sata value{};\n    value.hba_port_number = hba_port_number;\n    value.port_multiplier_port_number = port_multiplier_port_number;\n    value.lun = lun;\n    return value;\n}\n\nauto FilePath::Sata::fromJSON(const QJsonObject &obj) -> std::optional<Sata>\n{\n    Sata value{};\n    check_obj();\n    // Support for old names\n    try_read_4(hba_port_number, \"hba_port\", Double, Int);\n    try_read_4(port_multiplier_port_number, \"port_multiplier_port\", Double, Int);\n    try_read_3(lun, Double, Int);\n    return {value};\n}\n\nauto FilePath::Sata::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"hba_port_number\"] = static_cast<int>(hba_port_number);\n    value[\"port_multiplier_port_number\"] = static_cast<int>(port_multiplier_port_number);\n    value[\"lun\"] = static_cast<int>(lun);\n    return value;\n}\n\nauto FilePath::Sata::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"Sata(%1,%2,%3)\").arg(hba_port_number).arg(port_multiplier_port_number).arg(lun);\n}\n\nFilePath::Iscsi::Iscsi(const EFIBoot::File_path::MSG::Iscsi &_iscsi)\n    : _string{}\n    , protocol{_iscsi.protocol}\n    , options{_iscsi.options}\n    , lun{_iscsi.lun}\n    , target_portal_group{_iscsi.target_portal_group}\n    , target_name{QByteArray::fromRawData(_iscsi.target_name.data(), static_cast<int>(_iscsi.target_name.size() * sizeof(decltype(_iscsi.target_name)::value_type)))}\n{\n}\n\nauto FilePath::Iscsi::toEFIBootFilePath() const -> EFIBoot::File_path::MSG::Iscsi\n{\n    EFIBoot::File_path::MSG::Iscsi value{};\n    value.protocol = protocol;\n    value.options = options;\n    value.lun = lun;\n    value.target_portal_group = target_portal_group;\n    value.target_name = target_name.toStdString();\n    return value;\n}\n\nauto FilePath::Iscsi::fromJSON(const QJsonObject &obj) -> std::optional<Iscsi>\n{\n    Iscsi value{};\n    check_obj();\n    try_read_3(protocol, Double, Int);\n    try_read_3(options, Double, Int);\n    check_type(lun, String);\n    value.lun = obj[\"lun\"].toString().toULongLong(nullptr, HEX_BASE);\n    try_read_3(target_portal_group, Double, Int);\n    try_read(target_name, String);\n    return {value};\n}\n\nauto FilePath::Iscsi::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"protocol\"] = static_cast<int>(protocol);\n    value[\"options\"] = static_cast<int>(options);\n    value[\"lun\"] = toHex(lun);\n    value[\"target_portal_group\"] = static_cast<int>(target_portal_group);\n    value[\"target_name\"] = target_name;\n    return value;\n}\n\nauto FilePath::Iscsi::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"iSCSI(%1,%2,%3,%4,%5)\")\n                         .arg(target_name)\n                         .arg(toHex(target_portal_group))\n                         .arg(toHex(lun))\n                         .arg(toHex(options))\n                         .arg(protocol == 0 ? \"TCP\" : QString::number(protocol));\n}\n\nFilePath::Vlan::Vlan(const EFIBoot::File_path::MSG::Vlan &_vlan)\n    : _string{}\n    , vlan_id{_vlan.vlan_id}\n{\n}\n\nauto FilePath::Vlan::toEFIBootFilePath() const -> EFIBoot::File_path::MSG::Vlan\n{\n    EFIBoot::File_path::MSG::Vlan value{};\n    value.vlan_id = vlan_id;\n    return value;\n}\n\nauto FilePath::Vlan::fromJSON(const QJsonObject &obj) -> std::optional<Vlan>\n{\n    Vlan value{};\n    check_obj();\n    try_read_3(vlan_id, Double, Int);\n    return {value};\n}\n\nauto FilePath::Vlan::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"vlan_id\"] = static_cast<int>(vlan_id);\n    return value;\n}\n\nauto FilePath::Vlan::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"Vlan(%1)\").arg(vlan_id);\n}\n\nFilePath::FibreChannelEx::FibreChannelEx(const EFIBoot::File_path::MSG::Fibre_channel_ex &_fibre_channel_ex)\n    : _string{}\n    , reserved{_fibre_channel_ex.reserved}\n    , world_wide_name{_fibre_channel_ex.world_wide_name}\n    , lun{_fibre_channel_ex.lun}\n{\n}\n\nauto FilePath::FibreChannelEx::toEFIBootFilePath() const -> EFIBoot::File_path::MSG::Fibre_channel_ex\n{\n    EFIBoot::File_path::MSG::Fibre_channel_ex value{};\n    value.reserved = reserved;\n    value.world_wide_name = world_wide_name;\n    value.lun = lun;\n    return value;\n}\n\nauto FilePath::FibreChannelEx::fromJSON(const QJsonObject &obj) -> std::optional<FibreChannelEx>\n{\n    FibreChannelEx value{};\n    check_obj();\n    try_read_3(reserved, Double, Int);\n    check_type(world_wide_name, String);\n    value.world_wide_name = obj[\"world_wide_name\"].toString().toULongLong(nullptr, HEX_BASE);\n    check_type(lun, String);\n    value.lun = obj[\"lun\"].toString().toULongLong(nullptr, HEX_BASE);\n    return {value};\n}\n\nauto FilePath::FibreChannelEx::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"reserved\"] = static_cast<int>(reserved);\n    value[\"world_wide_name\"] = toHex(world_wide_name);\n    value[\"lun\"] = toHex(lun);\n    return value;\n}\n\nauto FilePath::FibreChannelEx::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"FibreEx(%1,%2)\").arg(world_wide_name).arg(lun);\n}\n\nFilePath::SasExtendedMessaging::SasExtendedMessaging(const EFIBoot::File_path::MSG::Sas_extended_messaging &_sas_extended_messaging)\n    : _string{}\n    , sas_address{_sas_extended_messaging.sas_address}\n    , lun{_sas_extended_messaging.lun}\n    , device_and_topology_info{_sas_extended_messaging.device_and_topology_info}\n    , relative_target_port{_sas_extended_messaging.relative_target_port}\n{\n}\n\nauto FilePath::SasExtendedMessaging::toEFIBootFilePath() const -> EFIBoot::File_path::MSG::Sas_extended_messaging\n{\n    EFIBoot::File_path::MSG::Sas_extended_messaging value{};\n    value.sas_address = sas_address;\n    value.lun = lun;\n    value.device_and_topology_info = device_and_topology_info;\n    value.relative_target_port = relative_target_port;\n    return value;\n}\n\nauto FilePath::SasExtendedMessaging::fromJSON(const QJsonObject &obj) -> std::optional<SasExtendedMessaging>\n{\n    SasExtendedMessaging value{};\n    check_obj();\n    check_type(sas_address, String);\n    value.sas_address = obj[\"sas_address\"].toString().toULongLong(nullptr, HEX_BASE);\n    check_type(lun, String);\n    value.lun = obj[\"lun\"].toString().toULongLong(nullptr, HEX_BASE);\n    try_read_3(device_and_topology_info, Double, Int);\n    try_read_3(relative_target_port, Double, Int);\n    return {value};\n}\n\nauto FilePath::SasExtendedMessaging::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"sas_address\"] = toHex(sas_address);\n    value[\"lun\"] = toHex(lun);\n    value[\"device_and_topology_info\"] = static_cast<int>(device_and_topology_info);\n    value[\"relative_target_port\"] = static_cast<int>(relative_target_port);\n    return value;\n}\n\nauto FilePath::SasExtendedMessaging::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"SasEx(%1,%2,%3,%4)\").arg(sas_address).arg(lun).arg(relative_target_port).arg(device_and_topology_info);\n}\n\nFilePath::NvmExpressNs::NvmExpressNs(const EFIBoot::File_path::MSG::Nvm_express_ns &_nvm_express_ns)\n    : _string{}\n    , namespace_identifier{_nvm_express_ns.namespace_identifier}\n    , ieee_extended_unique_identifier{_nvm_express_ns.ieee_extended_unique_identifier}\n{\n}\n\nauto FilePath::NvmExpressNs::toEFIBootFilePath() const -> EFIBoot::File_path::MSG::Nvm_express_ns\n{\n    EFIBoot::File_path::MSG::Nvm_express_ns value{};\n    value.namespace_identifier = namespace_identifier;\n    value.ieee_extended_unique_identifier = ieee_extended_unique_identifier;\n    return value;\n}\n\nauto FilePath::NvmExpressNs::fromJSON(const QJsonObject &obj) -> std::optional<NvmExpressNs>\n{\n    NvmExpressNs value{};\n    check_obj();\n    try_read_3(namespace_identifier, Double, Int);\n    check_type(ieee_extended_unique_identifier, String);\n    value.ieee_extended_unique_identifier = obj[\"ieee_extended_unique_identifier\"].toString().toULongLong(nullptr, HEX_BASE);\n    return {value};\n}\n\nauto FilePath::NvmExpressNs::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"namespace_identifier\"] = static_cast<int>(namespace_identifier);\n    value[\"ieee_extended_unique_identifier\"] = toHex(ieee_extended_unique_identifier);\n    return value;\n}\n\nauto FilePath::NvmExpressNs::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"NVMe(%1,%2)\").arg(toHex(namespace_identifier)).arg(toHex(ieee_extended_unique_identifier));\n}\n\nFilePath::Uri::Uri(const EFIBoot::File_path::MSG::Uri &_uri)\n    : _string{}\n    , uri{QUrl::fromEncoded(QByteArray::fromRawData(reinterpret_cast<const char *>(_uri.uri.data()), static_cast<int>(_uri.uri.size() * sizeof(decltype(_uri.uri)::value_type))))}\n{\n}\n\nauto FilePath::Uri::toEFIBootFilePath() const -> EFIBoot::File_path::MSG::Uri\n{\n    EFIBoot::File_path::MSG::Uri value{};\n    {\n        auto encoded = uri.toEncoded();\n        value.uri = {encoded.begin(), encoded.end()};\n    }\n    return value;\n}\n\nauto FilePath::Uri::fromJSON(const QJsonObject &obj) -> std::optional<Uri>\n{\n    Uri value{};\n    check_obj();\n    check_type(uri, String);\n    value.uri = QUrl::fromEncoded(obj[\"uri\"].toString().toUtf8());\n    return {value};\n}\n\nauto FilePath::Uri::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"uri\"] = static_cast<QString>(uri.toEncoded());\n    return value;\n}\n\nauto FilePath::Uri::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"Uri(%1)\").arg(uri.toDisplayString());\n}\n\nFilePath::Ufs::Ufs(const EFIBoot::File_path::MSG::Ufs &_ufs)\n    : _string{}\n    , pun{_ufs.pun}\n    , lun{_ufs.lun}\n{\n}\n\nauto FilePath::Ufs::toEFIBootFilePath() const -> EFIBoot::File_path::MSG::Ufs\n{\n    EFIBoot::File_path::MSG::Ufs value{};\n    value.pun = pun;\n    value.lun = lun;\n    return value;\n}\n\nauto FilePath::Ufs::fromJSON(const QJsonObject &obj) -> std::optional<Ufs>\n{\n    Ufs value{};\n    check_obj();\n    try_read_3(pun, Double, Int);\n    try_read_3(lun, Double, Int);\n    return {value};\n}\n\nauto FilePath::Ufs::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"pun\"] = static_cast<int>(pun);\n    value[\"lun\"] = static_cast<int>(lun);\n    return value;\n}\n\nauto FilePath::Ufs::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"UFS(%1,%2)\").arg(pun).arg(lun);\n}\n\nFilePath::Sd::Sd(const EFIBoot::File_path::MSG::Sd &_sd)\n    : _string{}\n    , slot_number{_sd.slot_number}\n{\n}\n\nauto FilePath::Sd::toEFIBootFilePath() const -> EFIBoot::File_path::MSG::Sd\n{\n    EFIBoot::File_path::MSG::Sd value{};\n    value.slot_number = slot_number;\n    return value;\n}\n\nauto FilePath::Sd::fromJSON(const QJsonObject &obj) -> std::optional<Sd>\n{\n    Sd value{};\n    check_obj();\n    try_read_3(slot_number, Double, Int);\n    return {value};\n}\n\nauto FilePath::Sd::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"slot_number\"] = static_cast<int>(slot_number);\n    return value;\n}\n\nauto FilePath::Sd::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"SD(%1)\").arg(slot_number);\n}\n\nFilePath::Bluetooth::Bluetooth(const EFIBoot::File_path::MSG::Bluetooth &_bluetooth)\n    : _string{}\n    , device_address{QByteArray::fromRawData(reinterpret_cast<const char *>(_bluetooth.device_address.data()), static_cast<int>(_bluetooth.device_address.size() * sizeof(decltype(_bluetooth.device_address)::value_type)))}\n{\n}\n\nauto FilePath::Bluetooth::toEFIBootFilePath() const -> EFIBoot::File_path::MSG::Bluetooth\n{\n    EFIBoot::File_path::MSG::Bluetooth value{};\n    {\n        auto bytes = QByteArray::fromHex(device_address.toUtf8());\n        memcpy(value.device_address.data(), bytes.data(), qMin(static_cast<size_t>(bytes.size()), sizeof(value.device_address)));\n    }\n    return value;\n}\n\nauto FilePath::Bluetooth::fromJSON(const QJsonObject &obj) -> std::optional<Bluetooth>\n{\n    Bluetooth value{};\n    check_obj();\n    try_read(device_address, String);\n    return {value};\n}\n\nauto FilePath::Bluetooth::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"device_address\"] = device_address;\n    return value;\n}\n\nauto FilePath::Bluetooth::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"Bluetooth(%1)\").arg(device_address);\n}\n\nFilePath::WiFi::WiFi(const EFIBoot::File_path::MSG::Wi_fi &_wi_fi)\n    : _string{}\n    , ssid{QByteArray::fromRawData(_wi_fi.ssid.data(), static_cast<int>(_wi_fi.ssid.size() * sizeof(decltype(_wi_fi.ssid)::value_type)))}\n{\n}\n\nauto FilePath::WiFi::toEFIBootFilePath() const -> EFIBoot::File_path::MSG::Wi_fi\n{\n    EFIBoot::File_path::MSG::Wi_fi value{};\n    value.ssid = ssid.toStdString();\n    return value;\n}\n\nauto FilePath::WiFi::fromJSON(const QJsonObject &obj) -> std::optional<WiFi>\n{\n    WiFi value{};\n    check_obj();\n    try_read(ssid, String);\n    return {value};\n}\n\nauto FilePath::WiFi::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"ssid\"] = ssid;\n    return value;\n}\n\nauto FilePath::WiFi::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"Wi-Fi(%1)\").arg(ssid);\n}\n\nFilePath::Emmc::Emmc(const EFIBoot::File_path::MSG::Emmc &_emmc)\n    : _string{}\n    , slot_number{_emmc.slot_number}\n{\n}\n\nauto FilePath::Emmc::toEFIBootFilePath() const -> EFIBoot::File_path::MSG::Emmc\n{\n    EFIBoot::File_path::MSG::Emmc value{};\n    value.slot_number = slot_number;\n    return value;\n}\n\nauto FilePath::Emmc::fromJSON(const QJsonObject &obj) -> std::optional<Emmc>\n{\n    Emmc value{};\n    check_obj();\n    try_read_3(slot_number, Double, Int);\n    return {value};\n}\n\nauto FilePath::Emmc::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"slot_number\"] = static_cast<int>(slot_number);\n    return value;\n}\n\nauto FilePath::Emmc::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"eMMC(%1)\").arg(slot_number);\n}\n\nFilePath::Bluetoothle::Bluetoothle(const EFIBoot::File_path::MSG::Bluetoothle &_bluetoothle)\n    : _string{}\n    , device_address{QByteArray::fromRawData(reinterpret_cast<const char *>(_bluetoothle.device_address.data()), static_cast<int>(_bluetoothle.device_address.size() * sizeof(decltype(_bluetoothle.device_address)::value_type)))}\n    , address_type{_bluetoothle.address_type}\n{\n}\n\nauto FilePath::Bluetoothle::toEFIBootFilePath() const -> EFIBoot::File_path::MSG::Bluetoothle\n{\n    EFIBoot::File_path::MSG::Bluetoothle value{};\n    {\n        auto bytes = QByteArray::fromHex(device_address.toUtf8());\n        memcpy(value.device_address.data(), bytes.data(), qMin(static_cast<size_t>(bytes.size()), sizeof(value.device_address)));\n    }\n    value.address_type = address_type;\n    return value;\n}\n\nauto FilePath::Bluetoothle::fromJSON(const QJsonObject &obj) -> std::optional<Bluetoothle>\n{\n    Bluetoothle value{};\n    check_obj();\n    try_read(device_address, String);\n    try_read_3(address_type, Double, Int);\n    return {value};\n}\n\nauto FilePath::Bluetoothle::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"device_address\"] = device_address;\n    value[\"address_type\"] = static_cast<int>(address_type);\n    return value;\n}\n\nauto FilePath::Bluetoothle::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"BluetoothLE(%1,%2)\").arg(device_address).arg(static_cast<int>(address_type));\n}\n\nFilePath::Dns::Dns(const EFIBoot::File_path::MSG::Dns &_dns)\n    : _string{}\n    , ipv6{_dns.ipv6}\n    , data{QByteArray::fromRawData(reinterpret_cast<const char *>(_dns.data.data()), static_cast<int>(_dns.data.size() * sizeof(decltype(_dns.data)::value_type)))}\n{\n    data.detach();\n}\n\nauto FilePath::Dns::toEFIBootFilePath() const -> EFIBoot::File_path::MSG::Dns\n{\n    EFIBoot::File_path::MSG::Dns value{};\n    value.ipv6 = ipv6;\n    value.data = {data.begin(), data.end()};\n    return value;\n}\n\nauto FilePath::Dns::fromJSON(const QJsonObject &obj) -> std::optional<Dns>\n{\n    Dns value{};\n    check_obj();\n    try_read(ipv6, Bool);\n    check_type(data, String);\n    value.data = QByteArray::fromBase64(obj[\"data\"].toString().toUtf8());\n    return {value};\n}\n\nauto FilePath::Dns::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"ipv6\"] = ipv6;\n    value[\"data\"] = static_cast<QString>(data.toBase64());\n    return value;\n}\n\nauto FilePath::Dns::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"DNS([%1B])\").arg(data.size());\n}\n\nFilePath::NvdimmNs::NvdimmNs(const EFIBoot::File_path::MSG::Nvdimm_ns &_nvdimm_ns)\n    : _string{}\n    , uuid{}\n{\n    static_assert(sizeof(uuid) == sizeof(_nvdimm_ns.uuid));\n    memcpy(reinterpret_cast<void *>(&uuid), &_nvdimm_ns.uuid, sizeof(uuid));\n}\n\nauto FilePath::NvdimmNs::toEFIBootFilePath() const -> EFIBoot::File_path::MSG::Nvdimm_ns\n{\n    EFIBoot::File_path::MSG::Nvdimm_ns value{};\n    static_assert(sizeof(uuid) == sizeof(value.uuid));\n    memcpy(value.uuid.data(), &uuid, sizeof(value.uuid));\n    return value;\n}\n\nauto FilePath::NvdimmNs::fromJSON(const QJsonObject &obj) -> std::optional<NvdimmNs>\n{\n    NvdimmNs value{};\n    check_obj();\n    check_type(uuid, String);\n    value.uuid = QUuid::fromString(obj[\"uuid\"].toString());\n    return {value};\n}\n\nauto FilePath::NvdimmNs::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"uuid\"] = uuid.toString();\n    return value;\n}\n\nauto FilePath::NvdimmNs::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"Nvdimm(%1)\").arg(uuid.toString(QUuid::WithoutBraces));\n}\n\nFilePath::RestService::RestService(const EFIBoot::File_path::MSG::Rest_service &_rest_service)\n    : _string{}\n    , rest_service{_rest_service.rest_service}\n    , access_mode{_rest_service.access_mode}\n    , guid{}\n    , data{QByteArray::fromRawData(reinterpret_cast<const char *>(_rest_service.data.data()), static_cast<int>(_rest_service.data.size() * sizeof(decltype(_rest_service.data)::value_type)))}\n{\n    static_assert(sizeof(guid) == sizeof(_rest_service.guid));\n    memcpy(reinterpret_cast<void *>(&guid), &_rest_service.guid, sizeof(guid));\n    data.detach();\n}\n\nauto FilePath::RestService::toEFIBootFilePath() const -> EFIBoot::File_path::MSG::Rest_service\n{\n    EFIBoot::File_path::MSG::Rest_service value{};\n    value.rest_service = rest_service;\n    value.access_mode = access_mode;\n    static_assert(sizeof(guid) == sizeof(value.guid));\n    memcpy(value.guid.data(), &guid, sizeof(value.guid));\n    value.data = {data.begin(), data.end()};\n    return value;\n}\n\nauto FilePath::RestService::fromJSON(const QJsonObject &obj) -> std::optional<RestService>\n{\n    RestService value{};\n    check_obj();\n    try_read_3(rest_service, Double, Int);\n    try_read_3(access_mode, Double, Int);\n    check_type(guid, String);\n    value.guid = QUuid::fromString(obj[\"guid\"].toString());\n    check_type(data, String);\n    value.data = QByteArray::fromBase64(obj[\"data\"].toString().toUtf8());\n    return {value};\n}\n\nauto FilePath::RestService::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"rest_service\"] = static_cast<int>(rest_service);\n    value[\"access_mode\"] = static_cast<int>(access_mode);\n    value[\"guid\"] = guid.toString();\n    value[\"data\"] = static_cast<QString>(data.toBase64());\n    return value;\n}\n\nauto FilePath::RestService::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"RestService(%1,%2,%3,[%4B])\").arg(static_cast<int>(rest_service)).arg(static_cast<int>(access_mode)).arg(guid.toString(QUuid::WithoutBraces)).arg(data.size());\n}\n\nFilePath::NvmeOfNs::NvmeOfNs(const EFIBoot::File_path::MSG::Nvme_of_ns &_nvme_of_ns)\n    : _string{}\n    , nidt{_nvme_of_ns.nidt}\n    , nid{}\n    , subsystem_nqn{QByteArray::fromRawData(_nvme_of_ns.subsystem_nqn.data(), static_cast<int>(_nvme_of_ns.subsystem_nqn.size() * sizeof(decltype(_nvme_of_ns.subsystem_nqn)::value_type)))}\n{\n    static_assert(sizeof(nid) == sizeof(_nvme_of_ns.nid));\n    memcpy(reinterpret_cast<void *>(&nid), &_nvme_of_ns.nid, sizeof(nid));\n}\n\nauto FilePath::NvmeOfNs::toEFIBootFilePath() const -> EFIBoot::File_path::MSG::Nvme_of_ns\n{\n    EFIBoot::File_path::MSG::Nvme_of_ns value{};\n    value.nidt = nidt;\n    static_assert(sizeof(nid) == sizeof(value.nid));\n    memcpy(value.nid.data(), &nid, sizeof(value.nid));\n    value.subsystem_nqn = subsystem_nqn.toStdString();\n    return value;\n}\n\nauto FilePath::NvmeOfNs::fromJSON(const QJsonObject &obj) -> std::optional<NvmeOfNs>\n{\n    NvmeOfNs value{};\n    check_obj();\n    try_read_3(nidt, Double, Int);\n    check_type(nid, String);\n    value.nid = QUuid::fromString(obj[\"nid\"].toString());\n    try_read(subsystem_nqn, String);\n    return {value};\n}\n\nauto FilePath::NvmeOfNs::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"nidt\"] = static_cast<int>(nidt);\n    value[\"nid\"] = nid.toString();\n    value[\"subsystem_nqn\"] = subsystem_nqn;\n    return value;\n}\n\nauto FilePath::NvmeOfNs::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"NVMeoF([%1B],%2)\").arg(subsystem_nqn.size()).arg(nid.toString(QUuid::WithoutBraces));\n}\n\n// Media\n\nFilePath::Hd::Hd(const EFIBoot::File_path::MEDIA::Hd &_hd)\n    : _string{}\n    , partition_number{_hd.partition_number}\n    , partition_start{_hd.partition_start}\n    , partition_size{_hd.partition_size}\n    , partition_signature{}\n    , partition_format{_hd.partition_format}\n    , signature_type{_hd.signature_type}\n{\n    static_assert(sizeof(partition_signature) == sizeof(_hd.partition_signature));\n    memcpy(reinterpret_cast<void *>(&partition_signature), &_hd.partition_signature, sizeof(partition_signature));\n}\n\nauto FilePath::Hd::toEFIBootFilePath() const -> EFIBoot::File_path::MEDIA::Hd\n{\n    EFIBoot::File_path::MEDIA::Hd value{};\n    value.partition_number = partition_number;\n    value.partition_start = partition_start;\n    value.partition_size = partition_size;\n    static_assert(sizeof(partition_signature) == sizeof(value.partition_signature));\n    memcpy(value.partition_signature.data(), &partition_signature, sizeof(value.partition_signature));\n    value.partition_format = partition_format;\n    value.signature_type = signature_type;\n    return value;\n}\n\nauto FilePath::Hd::fromJSON(const QJsonObject &obj) -> std::optional<Hd>\n{\n    Hd value{};\n    check_obj();\n    try_read_3(partition_number, Double, Int);\n    check_type(partition_start, String);\n    value.partition_start = obj[\"partition_start\"].toString().toULongLong(nullptr, HEX_BASE);\n    check_type(partition_size, String);\n    value.partition_size = obj[\"partition_size\"].toString().toULongLong(nullptr, HEX_BASE);\n    check_type(partition_signature, String);\n    value.partition_signature = QUuid::fromString(obj[\"partition_signature\"].toString());\n    try_read_3(partition_format, Double, Int);\n    try_read_3(signature_type, Double, Int);\n    return {value};\n}\n\nauto FilePath::Hd::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"partition_number\"] = static_cast<int>(partition_number);\n    value[\"partition_start\"] = toHex(partition_start);\n    value[\"partition_size\"] = toHex(partition_size);\n    value[\"partition_signature\"] = partition_signature.toString();\n    value[\"partition_format\"] = static_cast<int>(partition_format);\n    value[\"signature_type\"] = static_cast<int>(signature_type);\n    return value;\n}\n\nauto FilePath::Hd::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"HD(%1,%2,%3,%4,%5)\")\n                         .arg(partition_number)\n                         .arg(signature_type == EFIBoot::File_path::MEDIA::Hd::SIGNATURE_TYPE::MBR ? \"MBR\" : (signature_type == EFIBoot::File_path::MEDIA::Hd::SIGNATURE_TYPE::GUID ? \"GPT\" : QString::number(static_cast<int>(signature_type))))\n                         .arg(signature_type == EFIBoot::File_path::MEDIA::Hd::SIGNATURE_TYPE::MBR ? toHex(partition_signature.data1) : (signature_type == EFIBoot::File_path::MEDIA::Hd::SIGNATURE_TYPE::GUID ? partition_signature.toString(QUuid::WithoutBraces) : \"N/A\"))\n                         .arg(toHex(partition_start))\n                         .arg(toHex(partition_size));\n}\n\nFilePath::CdRom::CdRom(const EFIBoot::File_path::MEDIA::Cd_rom &_cd_rom)\n    : _string{}\n    , boot_entry{_cd_rom.boot_entry}\n    , partition_start{_cd_rom.partition_start}\n    , partition_size{_cd_rom.partition_size}\n{\n}\n\nauto FilePath::CdRom::toEFIBootFilePath() const -> EFIBoot::File_path::MEDIA::Cd_rom\n{\n    EFIBoot::File_path::MEDIA::Cd_rom value{};\n    value.boot_entry = boot_entry;\n    value.partition_start = partition_start;\n    value.partition_size = partition_size;\n    return value;\n}\n\nauto FilePath::CdRom::fromJSON(const QJsonObject &obj) -> std::optional<CdRom>\n{\n    CdRom value{};\n    check_obj();\n    try_read_3(boot_entry, Double, Int);\n    check_type(partition_start, String);\n    value.partition_start = obj[\"partition_start\"].toString().toULongLong(nullptr, HEX_BASE);\n    check_type(partition_size, String);\n    value.partition_size = obj[\"partition_size\"].toString().toULongLong(nullptr, HEX_BASE);\n    return {value};\n}\n\nauto FilePath::CdRom::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"boot_entry\"] = static_cast<int>(boot_entry);\n    value[\"partition_start\"] = toHex(partition_start);\n    value[\"partition_size\"] = toHex(partition_size);\n    return value;\n}\n\nauto FilePath::CdRom::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"CDROM(%1,%2,%3)\").arg(boot_entry).arg(partition_start).arg(partition_size);\n}\n\nFilePath::FilePath::FilePath(const EFIBoot::File_path::MEDIA::File_path &_file_path)\n    : _string{}\n    , path_name{QString::fromStdU16String(_file_path.path_name)}\n{\n}\n\nauto FilePath::FilePath::toEFIBootFilePath() const -> EFIBoot::File_path::MEDIA::File_path\n{\n    EFIBoot::File_path::MEDIA::File_path value{};\n    value.path_name = path_name.toStdU16String();\n    return value;\n}\n\nauto FilePath::FilePath::fromJSON(const QJsonObject &obj) -> std::optional<FilePath>\n{\n    FilePath value{};\n    if(obj[\"type\"] != TYPE)\n        return std::nullopt;\n\n    // Support for old names\n    if(obj[\"subtype\"] != SUBTYPE && obj[\"subtype\"] != \"FILE\")\n        return std::nullopt;\n\n    // check_obj();\n    try_read_4(path_name, \"name\", String, String);\n    return {value};\n}\n\nauto FilePath::FilePath::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"path_name\"] = path_name;\n    return value;\n}\n\nauto FilePath::FilePath::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = path_name;\n}\n\nFilePath::Protocol::Protocol(const EFIBoot::File_path::MEDIA::Protocol &_protocol)\n    : _string{}\n    , guid{}\n{\n    static_assert(sizeof(guid) == sizeof(_protocol.guid));\n    memcpy(reinterpret_cast<void *>(&guid), &_protocol.guid, sizeof(guid));\n}\n\nauto FilePath::Protocol::toEFIBootFilePath() const -> EFIBoot::File_path::MEDIA::Protocol\n{\n    EFIBoot::File_path::MEDIA::Protocol value{};\n    static_assert(sizeof(guid) == sizeof(value.guid));\n    memcpy(value.guid.data(), &guid, sizeof(value.guid));\n    return value;\n}\n\nauto FilePath::Protocol::fromJSON(const QJsonObject &obj) -> std::optional<Protocol>\n{\n    Protocol value{};\n    check_obj();\n    check_type(guid, String);\n    value.guid = QUuid::fromString(obj[\"guid\"].toString());\n    return {value};\n}\n\nauto FilePath::Protocol::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"guid\"] = guid.toString();\n    return value;\n}\n\nauto FilePath::Protocol::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"Media(%1)\").arg(guid.toString(QUuid::WithoutBraces));\n}\n\nFilePath::FirmwareFile::FirmwareFile(const EFIBoot::File_path::MEDIA::Firmware_file &_firmware_file)\n    : _string{}\n    , name{}\n{\n    static_assert(sizeof(name) == sizeof(_firmware_file.name));\n    memcpy(reinterpret_cast<void *>(&name), &_firmware_file.name, sizeof(name));\n}\n\nauto FilePath::FirmwareFile::toEFIBootFilePath() const -> EFIBoot::File_path::MEDIA::Firmware_file\n{\n    EFIBoot::File_path::MEDIA::Firmware_file value{};\n    static_assert(sizeof(name) == sizeof(value.name));\n    memcpy(value.name.data(), &name, sizeof(value.name));\n    return value;\n}\n\nauto FilePath::FirmwareFile::fromJSON(const QJsonObject &obj) -> std::optional<FirmwareFile>\n{\n    FirmwareFile value{};\n    check_obj();\n    check_type(name, String);\n    value.name = QUuid::fromString(obj[\"name\"].toString());\n    return {value};\n}\n\nauto FilePath::FirmwareFile::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"name\"] = name.toString();\n    return value;\n}\n\nauto FilePath::FirmwareFile::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"FvFile(%1)\").arg(name.toString(QUuid::WithoutBraces));\n}\n\nFilePath::FirmwareVolume::FirmwareVolume(const EFIBoot::File_path::MEDIA::Firmware_volume &_firmware_volume)\n    : _string{}\n    , name{}\n{\n    static_assert(sizeof(name) == sizeof(_firmware_volume.name));\n    memcpy(reinterpret_cast<void *>(&name), &_firmware_volume.name, sizeof(name));\n}\n\nauto FilePath::FirmwareVolume::toEFIBootFilePath() const -> EFIBoot::File_path::MEDIA::Firmware_volume\n{\n    EFIBoot::File_path::MEDIA::Firmware_volume value{};\n    static_assert(sizeof(name) == sizeof(value.name));\n    memcpy(value.name.data(), &name, sizeof(value.name));\n    return value;\n}\n\nauto FilePath::FirmwareVolume::fromJSON(const QJsonObject &obj) -> std::optional<FirmwareVolume>\n{\n    FirmwareVolume value{};\n    check_obj();\n    check_type(name, String);\n    value.name = QUuid::fromString(obj[\"name\"].toString());\n    return {value};\n}\n\nauto FilePath::FirmwareVolume::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"name\"] = name.toString();\n    return value;\n}\n\nauto FilePath::FirmwareVolume::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"Fv(%1)\").arg(name.toString(QUuid::WithoutBraces));\n}\n\nFilePath::RelativeOffsetRange::RelativeOffsetRange(const EFIBoot::File_path::MEDIA::Relative_offset_range &_relative_offset_range)\n    : _string{}\n    , reserved{_relative_offset_range.reserved}\n    , starting_offset{_relative_offset_range.starting_offset}\n    , ending_offset{_relative_offset_range.ending_offset}\n{\n}\n\nauto FilePath::RelativeOffsetRange::toEFIBootFilePath() const -> EFIBoot::File_path::MEDIA::Relative_offset_range\n{\n    EFIBoot::File_path::MEDIA::Relative_offset_range value{};\n    value.reserved = reserved;\n    value.starting_offset = starting_offset;\n    value.ending_offset = ending_offset;\n    return value;\n}\n\nauto FilePath::RelativeOffsetRange::fromJSON(const QJsonObject &obj) -> std::optional<RelativeOffsetRange>\n{\n    RelativeOffsetRange value{};\n    check_obj();\n    try_read_3(reserved, Double, Int);\n    check_type(starting_offset, String);\n    value.starting_offset = obj[\"starting_offset\"].toString().toULongLong(nullptr, HEX_BASE);\n    check_type(ending_offset, String);\n    value.ending_offset = obj[\"ending_offset\"].toString().toULongLong(nullptr, HEX_BASE);\n    return {value};\n}\n\nauto FilePath::RelativeOffsetRange::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"reserved\"] = static_cast<int>(reserved);\n    value[\"starting_offset\"] = toHex(starting_offset);\n    value[\"ending_offset\"] = toHex(ending_offset);\n    return value;\n}\n\nauto FilePath::RelativeOffsetRange::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"Offset(%1,%2)\").arg(starting_offset).arg(ending_offset);\n}\n\nFilePath::RamDisk::RamDisk(const EFIBoot::File_path::MEDIA::Ram_disk &_ram_disk)\n    : _string{}\n    , starting_address{_ram_disk.starting_address}\n    , ending_address{_ram_disk.ending_address}\n    , guid{}\n    , disk_instance{_ram_disk.disk_instance}\n{\n    static_assert(sizeof(guid) == sizeof(_ram_disk.guid));\n    memcpy(reinterpret_cast<void *>(&guid), &_ram_disk.guid, sizeof(guid));\n}\n\nauto FilePath::RamDisk::toEFIBootFilePath() const -> EFIBoot::File_path::MEDIA::Ram_disk\n{\n    EFIBoot::File_path::MEDIA::Ram_disk value{};\n    value.starting_address = starting_address;\n    value.ending_address = ending_address;\n    static_assert(sizeof(guid) == sizeof(value.guid));\n    memcpy(value.guid.data(), &guid, sizeof(value.guid));\n    value.disk_instance = disk_instance;\n    return value;\n}\n\nauto FilePath::RamDisk::fromJSON(const QJsonObject &obj) -> std::optional<RamDisk>\n{\n    RamDisk value{};\n    check_obj();\n    check_type(starting_address, String);\n    value.starting_address = obj[\"starting_address\"].toString().toULongLong(nullptr, HEX_BASE);\n    check_type(ending_address, String);\n    value.ending_address = obj[\"ending_address\"].toString().toULongLong(nullptr, HEX_BASE);\n    check_type(guid, String);\n    value.guid = QUuid::fromString(obj[\"guid\"].toString());\n    try_read_3(disk_instance, Double, Int);\n    return {value};\n}\n\nauto FilePath::RamDisk::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"starting_address\"] = toHex(starting_address);\n    value[\"ending_address\"] = toHex(ending_address);\n    value[\"guid\"] = guid.toString();\n    value[\"disk_instance\"] = static_cast<int>(disk_instance);\n    return value;\n}\n\nauto FilePath::RamDisk::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"RamDisk(%1,%2,%3,%4)\").arg(starting_address).arg(ending_address).arg(disk_instance).arg(guid.toString(QUuid::WithoutBraces));\n}\n\n// BIOS\n\nFilePath::BootSpecification::BootSpecification(const EFIBoot::File_path::BIOS::Boot_specification &_boot_specification)\n    : _string{}\n    , device_type{_boot_specification.device_type}\n    , status_flag{_boot_specification.status_flag}\n    , description{QByteArray::fromRawData(_boot_specification.description.data(), static_cast<int>(_boot_specification.description.size() * sizeof(decltype(_boot_specification.description)::value_type)))}\n{\n}\n\nauto FilePath::BootSpecification::toEFIBootFilePath() const -> EFIBoot::File_path::BIOS::Boot_specification\n{\n    EFIBoot::File_path::BIOS::Boot_specification value{};\n    value.device_type = device_type;\n    value.status_flag = status_flag;\n    value.description = description.toStdString();\n    return value;\n}\n\nauto FilePath::BootSpecification::fromJSON(const QJsonObject &obj) -> std::optional<BootSpecification>\n{\n    BootSpecification value{};\n    if(obj[\"type\"] != TYPE)\n        return std::nullopt;\n\n    // Support for old names\n    if(obj[\"subtype\"] != SUBTYPE && obj[\"subtype\"] != \"BIOS_BOOT_SPECIFICATION\")\n        return std::nullopt;\n\n    // check_obj();\n    try_read_3(device_type, Double, Int);\n    try_read_3(status_flag, Double, Int);\n    try_read(description, String);\n    return {value};\n}\n\nauto FilePath::BootSpecification::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"device_type\"] = static_cast<int>(device_type);\n    value[\"status_flag\"] = static_cast<int>(status_flag);\n    value[\"description\"] = description;\n    return value;\n}\n\nauto FilePath::BootSpecification::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"BBS(%1,%2,%3)\").arg(toHex(device_type), description, toHex(status_flag));\n}\n\nFilePath::Vendor::Vendor(const EFIBoot::File_path::HW::Vendor &vendor)\n    : data{QByteArray::fromRawData(reinterpret_cast<const char *>(vendor.data.data()), static_cast<int>(vendor.data.size() * sizeof(decltype(vendor.data)::value_type)))}\n    , _type{EFIBoot::File_path::HW::Vendor::TYPE}\n{\n    data.detach();\n    static_assert(sizeof(guid) == sizeof(vendor.guid));\n    memcpy(reinterpret_cast<void *>(&guid), &vendor.guid, sizeof(vendor.guid));\n}\n\nFilePath::Vendor::Vendor(const EFIBoot::File_path::MSG::Vendor &vendor)\n    : data{QByteArray::fromRawData(reinterpret_cast<const char *>(vendor.data.data()), static_cast<int>(vendor.data.size() * sizeof(decltype(vendor.data)::value_type)))}\n    , _type{EFIBoot::File_path::MSG::Vendor::TYPE}\n{\n    data.detach();\n    static_assert(sizeof(guid) == sizeof(vendor.guid));\n    memcpy(reinterpret_cast<void *>(&guid), &vendor.guid, sizeof(vendor.guid));\n}\n\nFilePath::Vendor::Vendor(const EFIBoot::File_path::MEDIA::Vendor &vendor)\n    : data{QByteArray::fromRawData(reinterpret_cast<const char *>(vendor.data.data()), static_cast<int>(vendor.data.size() * sizeof(decltype(vendor.data)::value_type)))}\n    , _type{EFIBoot::File_path::MEDIA::Vendor::TYPE}\n{\n    data.detach();\n    static_assert(sizeof(guid) == sizeof(vendor.guid));\n    memcpy(reinterpret_cast<void *>(&guid), &vendor.guid, sizeof(vendor.guid));\n}\n\nauto FilePath::Vendor::toEFIBootFilePath() const -> EFIBoot::File_path::ANY\n{\n    switch(_type)\n    {\n    case EFIBoot::File_path::HW::Vendor::TYPE:\n    {\n        EFIBoot::File_path::HW::Vendor value = {};\n        static_assert(sizeof(guid) == sizeof(value.guid));\n        memcpy(value.guid.data(), &guid, sizeof(guid));\n        value.data.resize(static_cast<size_t>(data.size()));\n        std::copy(std::begin(data), std::end(data), std::begin(value.data));\n        return value;\n    }\n\n    case EFIBoot::File_path::MSG::Vendor::TYPE:\n    {\n        EFIBoot::File_path::MSG::Vendor value = {};\n        static_assert(sizeof(guid) == sizeof(value.guid));\n        memcpy(value.guid.data(), &guid, sizeof(guid));\n        value.data.resize(static_cast<size_t>(data.size()));\n        std::copy(std::begin(data), std::end(data), std::begin(value.data));\n        return value;\n    }\n\n    case EFIBoot::File_path::MEDIA::Vendor::TYPE:\n    {\n        EFIBoot::File_path::MEDIA::Vendor value = {};\n        static_assert(sizeof(guid) == sizeof(value.guid));\n        memcpy(value.guid.data(), &guid, sizeof(guid));\n        value.data.resize(static_cast<size_t>(data.size()));\n        std::copy(std::begin(data), std::end(data), std::begin(value.data));\n        return value;\n    }\n\n    default:\n        return {};\n    }\n}\n\nauto FilePath::Vendor::fromJSON(const QJsonObject &obj) -> std::optional<Vendor>\n{\n    Vendor value{};\n    check_obj();\n    try_read_3(_type, Double, Int);\n    check_type(guid, String);\n    value.guid = QUuid::fromString(obj[\"guid\"].toString());\n    check_type(data, String);\n    value.data = QByteArray::fromBase64(obj[\"data\"].toString().toUtf8());\n    return {value};\n}\n\nauto FilePath::Vendor::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"_type\"] = _type;\n    value[\"guid\"] = guid.toString();\n    value[\"data\"] = static_cast<QString>(data.toBase64());\n    return value;\n}\n\nauto FilePath::Vendor::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    const char *type_string = nullptr;\n    switch(_type)\n    {\n    case EFIBoot::File_path::HW::Vendor::TYPE:\n        type_string = \"Hw\";\n        break;\n\n    case EFIBoot::File_path::MSG::Vendor::TYPE:\n        type_string = \"Msg\";\n        break;\n\n    case EFIBoot::File_path::MEDIA::Vendor::TYPE:\n        type_string = \"Media\";\n        break;\n\n    default:\n        type_string = \"Unk\";\n        break;\n    }\n\n    return _string = QString(\"Ven%1(%2,[%3B])\").arg(type_string, guid.toString(QUuid::WithoutBraces)).arg(data.size());\n}\n\nauto FilePath::End::fromJSON(const QJsonObject &obj) -> std::optional<End>\n{\n    End value{};\n    check_obj();\n    try_read_3(_subtype, Double, Int);\n    return {value};\n}\n\nauto FilePath::End::toJSON() const -> QJsonObject\n{\n    QJsonObject end_instance;\n    end_instance[\"type\"] = TYPE;\n    end_instance[\"subtype\"] = SUBTYPE;\n    end_instance[\"_subtype\"] = _subtype;\n    return end_instance;\n}\n\nauto FilePath::End::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    const char *subtype_string = \"Unknown\";\n    switch(_subtype)\n    {\n    case EFIBoot::File_path::END::Instance::SUBTYPE:\n        subtype_string = \"Instance\";\n        break;\n\n    case EFIBoot::File_path::END::Entire::SUBTYPE:\n        subtype_string = \"Entire\";\n        break;\n\n    default:\n        break;\n    }\n\n    return _string = QString(\"End(%1)\").arg(subtype_string);\n}\n\nFilePath::Unknown::Unknown(const EFIBoot::File_path::Unknown &unknown)\n    : data{QByteArray::fromRawData(reinterpret_cast<const char *>(unknown.data.data()), static_cast<int>(unknown.data.size() * sizeof(decltype(unknown.data)::value_type)))}\n    , _type{unknown.TYPE}\n    , _subtype{unknown.SUBTYPE}\n{\n    data.detach();\n}\n\nauto FilePath::Unknown::toEFIBootFilePath() const -> EFIBoot::File_path::Unknown\n{\n    EFIBoot::File_path::Unknown value = {};\n    value.TYPE = _type;\n    value.SUBTYPE = _subtype;\n    value.data.resize(static_cast<size_t>(data.size()));\n    std::copy(std::begin(data), std::end(data), std::begin(value.data));\n    return value;\n}\n\nauto FilePath::Unknown::fromJSON(const QJsonObject &obj) -> std::optional<Unknown>\n{\n    Unknown value{};\n    check_obj();\n    try_read_3(_type, Double, Int);\n    try_read_3(_subtype, Double, Int);\n    check_type(data, String);\n    value.data = QByteArray::fromBase64(obj[\"data\"].toString().toUtf8());\n    return {value};\n}\n\nauto FilePath::Unknown::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"_type\"] = _type;\n    value[\"_subtype\"] = _subtype;\n    value[\"data\"] = static_cast<QString>(data.toBase64());\n    return value;\n}\n\nauto FilePath::Unknown::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"Path(%1,%2,[%3B])\").arg(toHex(_type), toHex(_subtype)).arg(data.size());\n}\n\nauto BootEntry::fromEFIBootLoadOption(\n    const EFIBoot::Load_option &load_option) -> BootEntry\n{\n    BootEntry value{};\n    value.description = QString::fromStdU16String(load_option.description);\n\n    value.optional_data_format = OptionalDataFormat::Base64;\n    if(toUnicode(value.optional_data, load_option.optional_data, \"UTF-8\") && !value.optional_data.contains(QChar(0)))\n        value.optional_data_format = OptionalDataFormat::Utf8;\n\n    if(value.optional_data_format == OptionalDataFormat::Base64 && load_option.optional_data.size() % sizeof(char16_t) == 0 && toUnicode(value.optional_data, load_option.optional_data, \"UTF-16\") && !value.optional_data.contains(QChar(0)))\n        value.optional_data_format = OptionalDataFormat::Utf16;\n\n    if(value.optional_data_format == OptionalDataFormat::Base64)\n        value.optional_data = QByteArray::fromRawData(reinterpret_cast<const char *>(load_option.optional_data.data()), static_cast<int>(load_option.optional_data.size() * sizeof(decltype(load_option.optional_data)::value_type))).toBase64();\n\n    value.attributes = load_option.attributes;\n\n    for(const auto &file_path: load_option.device_path)\n        value.device_path.push_back(std::visit([](const auto &path) -> FilePath::ANY\n            { return path; },\n            file_path));\n\n    return value;\n}\n\nauto BootEntry::fromError(const QString &error) -> BootEntry\n{\n    BootEntry value{};\n    value.is_error = true;\n    value.description = \"Error\";\n    value.error = error;\n    return value;\n}\n\nauto BootEntry::toEFIBootLoadOption() const -> EFIBoot::Load_option\n{\n    if(is_error)\n        return {};\n\n    EFIBoot::Load_option load_option{};\n    load_option.description = description.toStdU16String();\n    {\n        auto bytes = getRawOptionalData();\n        auto begin = reinterpret_cast<const EFIBoot::Raw_data::value_type *>(bytes.constData());\n        std::copy(begin, std::next(begin, bytes.size()), std::back_inserter(load_option.optional_data));\n    }\n\n    load_option.attributes = attributes;\n    for(const auto &file_path: device_path)\n        load_option.device_path.push_back(std::visit([](const auto &obj) -> EFIBoot::File_path::ANY\n            { return obj.toEFIBootFilePath(); },\n            file_path));\n\n    return load_option;\n}\n\nauto BootEntry::fromJSON(const QJsonObject &obj) -> std::optional<BootEntry>\n{\n    BootEntry value{};\n    try_read(description, String);\n    try_read_3(optional_data_format, Double, Int);\n    try_read(optional_data, String);\n    try_read_3(attributes, Double, Int);\n    try_read_3(efi_attributes, Double, Int);\n    check_type(file_path, Array);\n    const auto device_path = obj[\"file_path\"].toArray();\n    for(const auto file_path: device_path)\n    {\n        auto dp = file_path.toObject();\n        auto path = get_default(FilePath::JSON_readers(), QString(\"%1/%2\").arg(dp[\"type\"].toString(), dp[\"subtype\"].toString()), [](const auto &)\n            { return std::nullopt; })(dp);\n        if(!path)\n            return std::nullopt;\n\n        value.device_path.push_back(*path);\n    }\n\n    return {value};\n}\n\nauto BootEntry::toJSON() const -> QJsonObject\n{\n    if(is_error)\n        return {};\n\n    QJsonObject load_option;\n    load_option[\"description\"] = description;\n    load_option[\"optional_data_format\"] = static_cast<int>(optional_data_format);\n    load_option[\"optional_data\"] = optional_data;\n    load_option[\"attributes\"] = static_cast<int>(attributes);\n    load_option[\"efi_attributes\"] = static_cast<int>(efi_attributes);\n    QJsonArray file_path_json;\n    for(const auto &file_path: device_path)\n        file_path_json.push_back(std::visit([](const auto &obj) -> QJsonObject\n            { return obj.toJSON(); },\n            file_path));\n\n    load_option[\"file_path\"] = file_path_json;\n    return load_option;\n}\n\nauto BootEntry::formatDevicePath(bool refresh) const -> QString\n{\n    if(device_path.empty())\n        return {};\n\n    if(device_path_str.size() && !refresh)\n        return device_path_str;\n\n    device_path_str.clear();\n    for(const auto &file_path: device_path)\n    {\n        if(!device_path_str.isEmpty())\n            device_path_str += \"/\";\n\n        device_path_str += std::visit([refresh](const auto &obj)\n            { return obj.toString(refresh); },\n            file_path);\n    }\n\n    return device_path_str;\n}\n\nQString BootEntry::getTitle() const\n{\n    return QString(\"%1 (%2)\").arg(description, toHex(index, 4));\n}\n\nauto BootEntry::changeOptionalDataFormat(BootEntry::OptionalDataFormat format, bool test) -> bool\n{\n    if(format == optional_data_format)\n        return true;\n\n    auto bytes = getRawOptionalData();\n    QString temp_optional_data;\n    switch(format)\n    {\n    case OptionalDataFormat::Base64:\n        temp_optional_data = bytes.toBase64();\n        break;\n\n    case OptionalDataFormat::Utf16:\n        if(static_cast<uint>(bytes.size()) % sizeof(char16_t) != 0)\n            return false;\n\n        if(!toUnicode(temp_optional_data, bytes, \"UTF-16\"))\n            return false;\n\n        break;\n\n    case OptionalDataFormat::Utf8:\n        if(!toUnicode(temp_optional_data, bytes, \"UTF-8\"))\n            return false;\n\n        break;\n\n    case OptionalDataFormat::Hex:\n        temp_optional_data = bytes.toHex();\n        break;\n    }\n\n    if(temp_optional_data.contains(QChar(0)))\n        return false;\n\n    if(!test)\n    {\n        optional_data_format = format;\n        optional_data = temp_optional_data;\n    }\n    return true;\n}\n\nauto BootEntry::getRawOptionalData() const -> QByteArray\n{\n    QByteArray bytes;\n    switch(optional_data_format)\n    {\n    case OptionalDataFormat::Base64:\n        bytes = QByteArray::fromBase64(optional_data.toUtf8());\n        break;\n\n    case OptionalDataFormat::Utf16:\n        bytes = fromUnicode(optional_data, \"UTF-16\");\n        break;\n\n    case OptionalDataFormat::Utf8:\n        bytes = fromUnicode(optional_data, \"UTF-8\");\n        break;\n\n    case OptionalDataFormat::Hex:\n        bytes = QByteArray::fromHex(optional_data.toUtf8());\n        break;\n    }\n\n    return bytes;\n}\n\n#undef try_read_4\n#undef try_read_3\n#undef try_read\n#undef check_type\n#undef check_obj\n"
  },
  {
    "path": "src/bootentry.cpp.j2",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#include \"compat.h\"\n\n#include \"bootentry.h\"\n\n#include <QJsonArray>\n#include <QJsonObject>\n\n#include \"efiboot.h\"\n\nEFIBoot::Progress_fn EFIBoot::_get_variables_progress_fn = nullptr;\n\n#define check_obj()                                      \\\n    if(obj[\"type\"] != TYPE || obj[\"subtype\"] != SUBTYPE) \\\n    return std::nullopt\n#define check_type(field, typecheck)                          \\\n    if(!obj.contains(#field) || !obj[#field].is##typecheck()) \\\n    return std::nullopt\n#define try_read(field, typecheck) try_read_3(field, typecheck, typecheck)\n#define try_read_3(field, typecheck, typecast) \\\n    check_type(field, typecheck);              \\\n    value.field = static_cast<decltype(value.field)>(obj[#field].to##typecast())\n#define try_read_4(field, old_name, typecheck, typecast)                                \\\n    if(obj.contains(old_name) && obj[old_name].is##typecheck())                         \\\n        value.field = static_cast<decltype(value.field)>(obj[old_name].to##typecast()); \\\n    else if(obj.contains(#field) && obj[#field].is##typecheck())                        \\\n        value.field = static_cast<decltype(value.field)>(obj[#field].to##typecast());   \\\n    else                                                                                \\\n        return std::nullopt\n\n{% for category in device_paths.values() %}\n// {{ category.name }}\n\n{% for node in category.nodes if node.slug not in (\"vendor\", \"instance\", \"entire\") %}\n{% set qslug = node.slug.split(\"_\")|map(\"capitalize\")|join %}\nFilePath::{{ qslug }}::{{ qslug }}(const EFIBoot::File_path::{{ category.slug.upper() }}::{{ node.slug.capitalize() }} &_{{ node.slug }})\n    : _string{}\n    {% for field in node.fields %}\n    {% set node_field = \"_\" + node.slug + \".\" + field.slug %}\n    {% if field.type in (\"mac\", \"raw_data\", \"string\", \"wstring\") %}\n    {% if field.type == \"wstring\" %}\n    , {{ field.slug }}{QString::fromStdU16String({{ node_field }})}\n    {% elif field.type == \"string\" %}\n    , {{ field.slug }}{QByteArray::fromRawData({{ node_field }}.data(), static_cast<int>({{ node_field }}.size() * sizeof(decltype({{ node_field }})::value_type)))}\n    {% else %}\n    , {{ field.slug }}{QByteArray::fromRawData(reinterpret_cast<const char *>({{ node_field }}.data()), static_cast<int>({{ node_field }}.size() * sizeof(decltype({{ node_field }})::value_type)))}\n    {% endif %}\n    {% elif field.type == \"ip4\" %}\n    , {{ field.slug }}{*reinterpret_cast<const uint32_t *>({{ node_field }}.data())}\n    {% elif field.type == \"ip6\" %}\n    , {{ field.slug + \"{\" + node_field + \".data()}\" }}\n    {% elif field.type == \"guid\" %}\n    , {{ field.slug }}{}\n    {% elif field.type == \"uri\" %}\n    , {{ field.slug }}{QUrl::fromEncoded(QByteArray::fromRawData(reinterpret_cast<const char *>({{ node_field }}.data()), static_cast<int>({{ node_field }}.size() * sizeof(decltype({{ node_field }})::value_type))))}\n    {% else %}\n    , {{ field.slug + \"{\" + node_field + \"}\" }}\n    {% endif %}\n    {% endfor %}\n{\n    {% for field in node.fields %}\n    {% set node_field = \"_\" + node.slug + \".\" + field.slug %}\n    {% if field.type == \"raw_data\" %}\n    {{ field.slug }}.detach();\n    {% elif field.type == \"ip4\" %}\n    static_assert(sizeof({{ field.slug }}.toIPv4Address()) == sizeof({{ node_field }}));\n    {% elif field.type == \"ip6\" %}\n    static_assert(sizeof({{ field.slug }}.toIPv6Address()) == sizeof({{ node_field }}));\n    {% elif field.type == \"guid\" %}\n    static_assert(sizeof({{ field.slug }}) == sizeof({{ node_field }}));\n    memcpy(reinterpret_cast<void *>(&{{ field.slug }}), &{{ node_field }}, sizeof({{ field.slug }}));\n    {% endif %}\n    {% endfor %}\n}\n\nauto FilePath::{{ qslug }}::toEFIBootFilePath() const -> EFIBoot::File_path::{{ category.slug.upper() }}::{{ node.slug.capitalize() }}\n{\n    EFIBoot::File_path::{{ category.slug.upper() }}::{{ node.slug.capitalize() }} value{};\n    {% for field in node.fields %}\n    {% if field.type in (\"ip4\", \"ip6\") %}\n    {\n    {% if field.size == 4 %}\n        auto ip_address = {{ field.slug }}.toIPv4Address();\n    {% else %}\n        auto ip_address = {{ field.slug }}.toIPv6Address();\n    {% endif %}\n        static_assert(sizeof(ip_address) == sizeof(value.{{ field.slug }}));\n        memcpy(value.{{ field.slug }}.data(), &ip_address, sizeof(value.{{ field.slug }}));\n    }\n    {% elif field.type == \"guid\" %}\n    static_assert(sizeof({{ field.slug }}) == sizeof(value.{{ field.slug }}));\n    memcpy(value.{{ field.slug }}.data(), &{{ field.slug }}, sizeof(value.{{ field.slug }}));\n    {% elif field.type == \"string\" %}\n    value.{{ field.slug }} = {{ field.slug }}.toStdString();\n    {% elif field.type == \"wstring\" %}\n    value.{{ field.slug }} = {{ field.slug }}.toStdU16String();\n    {% elif field.type == \"raw_data\" %}\n    value.{{ field.slug }} = {{ \"{\" + field.slug + \".begin(), \" + field.slug + \".end()}\" }};\n    {% elif field.type == \"uri\" %}\n    {\n        auto encoded = {{ field.slug }}.toEncoded();\n        value.{{ field.slug }} = {encoded.begin(), encoded.end()};\n    }\n    {% elif field.type == \"mac\" %}\n    {\n        auto bytes = QByteArray::fromHex({{ field.slug }}.toUtf8());\n        memcpy(value.{{ field.slug }}.data(), bytes.data(), qMin(static_cast<size_t>(bytes.size()), sizeof(value.{{ field.slug }})));\n    }\n    {#% else %}\n    memcpy(value.{{ field.slug }}.data(), {{ field.slug }}.data(), qMin(static_cast<size_t>({{ field.slug }}.size()), sizeof(value.{{ field.slug }})));\n    {% endif %#}\n    {% else %}\n    value.{{ field.slug }} = {{ field.slug }};\n    {% endif %}\n    {% endfor %}\n    return value;\n}\n\nauto FilePath::{{ qslug }}::fromJSON(const QJsonObject &obj) -> std::optional<{{ qslug }}>\n{\n    {{ qslug }} value{};\n    check_obj();\n    {% for field in node.fields %}\n    {% if field.type == \"bool\" %}\n    try_read({{ field.slug }}, Bool);\n    {% elif field.type in (\"ip4\", \"ip6\", \"mac\", \"string\", \"wstring\") %}\n    try_read({{ field.slug }}, String);\n    {% elif field.type == \"raw_data\" %}\n    check_type({{ field.slug }}, String);\n    value.{{ field.slug }} = QByteArray::fromBase64(obj[\"{{ field.slug }}\"].toString().toUtf8());\n    {% elif field.type == \"guid\" %}\n    check_type({{ field.slug }}, String);\n    value.{{ field.slug }} = QUuid::fromString(obj[\"{{ field.slug }}\"].toString());\n    {% elif field.type == \"uri\" %}\n    check_type({{ field.slug }}, String);\n    value.{{ field.slug }} = QUrl::fromEncoded(obj[\"{{ field.slug }}\"].toString().toUtf8());\n    {% elif field.size > 4 %}\n    check_type({{ field.slug }}, String);\n    value.{{ field.slug }} = obj[\"{{ field.slug }}\"].toString().toULongLong(nullptr, HEX_BASE);\n    {% else %}\n    try_read_3({{ field.slug }}, Double, Int);\n    {% endif %}\n    {% endfor %}\n    return {value};\n}\n\nauto FilePath::{{ qslug }}::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    {% for field in node.fields %}\n    {% if field.type in (\"bool\", \"mac\", \"string\", \"wstring\") %}\n    value[\"{{ field.slug }}\"] = {{ field.slug }};\n    {% elif field.type == \"raw_data\" %}\n    value[\"{{ field.slug }}\"] = static_cast<QString>({{ field.slug }}.toBase64());\n    {% elif field.type in (\"guid\", \"ip4\", \"ip6\") %}\n    value[\"{{ field.slug }}\"] = {{ field.slug }}.toString();\n    {% elif field.type == \"uri\" %}\n    value[\"{{ field.slug }}\"] = static_cast<QString>({{ field.slug }}.toEncoded());\n    {% elif field.size > 4 %}\n    value[\"{{ field.slug }}\"] = toHex({{ field.slug }});\n    {% else %}\n    value[\"{{ field.slug }}\"] = static_cast<int>({{ field.slug }});\n    {% endif %}\n    {% endfor %}\n    return value;\n}\n\nauto FilePath::{{ qslug }}::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return {};\n}\n\n{% endfor %}{% endfor %}\nFilePath::Vendor::Vendor(const EFIBoot::File_path::HW::Vendor &vendor)\n    : data{QByteArray::fromRawData(reinterpret_cast<const char *>(vendor.data.data()), static_cast<int>(vendor.data.size() * sizeof(decltype(vendor.data)::value_type)))}\n    , _type{EFIBoot::File_path::HW::Vendor::TYPE}\n{\n    data.detach();\n    static_assert(sizeof(guid) == sizeof(vendor.guid));\n    memcpy(reinterpret_cast<void *>(&guid), &vendor.guid, sizeof(vendor.guid));\n}\n\nFilePath::Vendor::Vendor(const EFIBoot::File_path::MSG::Vendor &vendor)\n    : data{QByteArray::fromRawData(reinterpret_cast<const char *>(vendor.data.data()), static_cast<int>(vendor.data.size() * sizeof(decltype(vendor.data)::value_type)))}\n    , _type{EFIBoot::File_path::MSG::Vendor::TYPE}\n{\n    data.detach();\n    static_assert(sizeof(guid) == sizeof(vendor.guid));\n    memcpy(reinterpret_cast<void *>(&guid), &vendor.guid, sizeof(vendor.guid));\n}\n\nFilePath::Vendor::Vendor(const EFIBoot::File_path::MEDIA::Vendor &vendor)\n    : data{QByteArray::fromRawData(reinterpret_cast<const char *>(vendor.data.data()), static_cast<int>(vendor.data.size() * sizeof(decltype(vendor.data)::value_type)))}\n    , _type{EFIBoot::File_path::MEDIA::Vendor::TYPE}\n{\n    data.detach();\n    static_assert(sizeof(guid) == sizeof(vendor.guid));\n    memcpy(reinterpret_cast<void *>(&guid), &vendor.guid, sizeof(vendor.guid));\n}\n\nauto FilePath::Vendor::toEFIBootFilePath() const -> EFIBoot::File_path::ANY\n{\n    switch(_type)\n    {\n    case EFIBoot::File_path::HW::Vendor::TYPE:\n    {\n        EFIBoot::File_path::HW::Vendor value = {};\n        static_assert(sizeof(guid) == sizeof(value.guid));\n        memcpy(value.guid.data(), &guid, sizeof(guid));\n        value.data.resize(static_cast<size_t>(data.size()));\n        std::copy(std::begin(data), std::end(data), std::begin(value.data));\n        return value;\n    }\n\n    case EFIBoot::File_path::MSG::Vendor::TYPE:\n    {\n        EFIBoot::File_path::MSG::Vendor value = {};\n        static_assert(sizeof(guid) == sizeof(value.guid));\n        memcpy(value.guid.data(), &guid, sizeof(guid));\n        value.data.resize(static_cast<size_t>(data.size()));\n        std::copy(std::begin(data), std::end(data), std::begin(value.data));\n        return value;\n    }\n\n    case EFIBoot::File_path::MEDIA::Vendor::TYPE:\n    {\n        EFIBoot::File_path::MEDIA::Vendor value = {};\n        static_assert(sizeof(guid) == sizeof(value.guid));\n        memcpy(value.guid.data(), &guid, sizeof(guid));\n        value.data.resize(static_cast<size_t>(data.size()));\n        std::copy(std::begin(data), std::end(data), std::begin(value.data));\n        return value;\n    }\n\n    default:\n        return {};\n    }\n}\n\nauto FilePath::Vendor::fromJSON(const QJsonObject &obj) -> std::optional<Vendor>\n{\n    Vendor value{};\n    check_obj();\n    try_read_3(_type, Double, Int);\n    check_type(guid, String);\n    value.guid = QUuid::fromString(obj[\"guid\"].toString());\n    check_type(data, String);\n    value.data = QByteArray::fromBase64(obj[\"data\"].toString().toUtf8());\n    return {value};\n}\n\nauto FilePath::Vendor::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"_type\"] = _type;\n    value[\"guid\"] = guid.toString();\n    value[\"data\"] = static_cast<QString>(data.toBase64());\n    return value;\n}\n\nauto FilePath::Vendor::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    const char *type_string = nullptr;\n    switch(_type)\n    {\n    case EFIBoot::File_path::HW::Vendor::TYPE:\n        type_string = \"Hw\";\n        break;\n\n    case EFIBoot::File_path::MSG::Vendor::TYPE:\n        type_string = \"Msg\";\n        break;\n\n    case EFIBoot::File_path::MEDIA::Vendor::TYPE:\n        type_string = \"Media\";\n        break;\n\n    default:\n        type_string = \"Unk\";\n        break;\n    }\n\n    return _string = QString(\"Ven%1(%2,[%3B])\").arg(type_string, guid.toString(QUuid::WithoutBraces)).arg(data.size());\n}\n\nauto FilePath::End::fromJSON(const QJsonObject &obj) -> std::optional<End>\n{\n    End value{};\n    check_obj();\n    try_read_3(_subtype, Double, Int);\n    return {value};\n}\n\nauto FilePath::End::toJSON() const -> QJsonObject\n{\n    QJsonObject end_instance;\n    end_instance[\"type\"] = TYPE;\n    end_instance[\"subtype\"] = SUBTYPE;\n    end_instance[\"_subtype\"] = _subtype;\n    return end_instance;\n}\n\nauto FilePath::End::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    const char *subtype_string = \"Unknown\";\n    switch(_subtype)\n    {\n    case EFIBoot::File_path::END::Instance::SUBTYPE:\n        subtype_string = \"Instance\";\n        break;\n\n    case EFIBoot::File_path::END::Entire::SUBTYPE:\n        subtype_string = \"Entire\";\n        break;\n\n    default:\n        break;\n    }\n\n    return _string = QString(\"End(%1)\").arg(subtype_string);\n}\n\nFilePath::Unknown::Unknown(const EFIBoot::File_path::Unknown &unknown)\n    : data{QByteArray::fromRawData(reinterpret_cast<const char *>(unknown.data.data()), static_cast<int>(unknown.data.size() * sizeof(decltype(unknown.data)::value_type)))}\n    , _type{unknown.TYPE}\n    , _subtype{unknown.SUBTYPE}\n{\n    data.detach();\n}\n\nauto FilePath::Unknown::toEFIBootFilePath() const -> EFIBoot::File_path::Unknown\n{\n    EFIBoot::File_path::Unknown value = {};\n    value.TYPE = _type;\n    value.SUBTYPE = _subtype;\n    value.data.resize(static_cast<size_t>(data.size()));\n    std::copy(std::begin(data), std::end(data), std::begin(value.data));\n    return value;\n}\n\nauto FilePath::Unknown::fromJSON(const QJsonObject &obj) -> std::optional<Unknown>\n{\n    Unknown value{};\n    check_obj();\n    try_read_3(_type, Double, Int);\n    try_read_3(_subtype, Double, Int);\n    check_type(data, String);\n    value.data = QByteArray::fromBase64(obj[\"data\"].toString().toUtf8());\n    return {value};\n}\n\nauto FilePath::Unknown::toJSON() const -> QJsonObject\n{\n    QJsonObject value{};\n    value[\"type\"] = TYPE;\n    value[\"subtype\"] = SUBTYPE;\n    value[\"_type\"] = _type;\n    value[\"_subtype\"] = _subtype;\n    value[\"data\"] = static_cast<QString>(data.toBase64());\n    return value;\n}\n\nauto FilePath::Unknown::toString(bool refresh) const -> QString\n{\n    if(_string.size() && !refresh)\n        return _string;\n\n    return _string = QString(\"Path(%1,%2,[%3B])\").arg(toHex(_type), toHex(_subtype)).arg(data.size());\n}\n\nauto BootEntry::fromEFIBootLoadOption(\n    const EFIBoot::Load_option &load_option) -> BootEntry\n{\n    BootEntry value{};\n    value.description = QString::fromStdU16String(load_option.description);\n\n    value.optional_data_format = OptionalDataFormat::Base64;\n    if(toUnicode(value.optional_data, load_option.optional_data, \"UTF-8\") && !value.optional_data.contains(QChar(0)))\n        value.optional_data_format = OptionalDataFormat::Utf8;\n\n    if(value.optional_data_format == OptionalDataFormat::Base64 && load_option.optional_data.size() % sizeof(char16_t) == 0 && toUnicode(value.optional_data, load_option.optional_data, \"UTF-16\") && !value.optional_data.contains(QChar(0)))\n        value.optional_data_format = OptionalDataFormat::Utf16;\n\n    if(value.optional_data_format == OptionalDataFormat::Base64)\n        value.optional_data = QByteArray::fromRawData(reinterpret_cast<const char *>(load_option.optional_data.data()), static_cast<int>(load_option.optional_data.size() * sizeof(decltype(load_option.optional_data)::value_type))).toBase64();\n\n    value.attributes = load_option.attributes;\n\n    for(const auto &file_path: load_option.device_path)\n        value.device_path.push_back(std::visit([](const auto &path) -> FilePath::ANY\n            { return path; },\n            file_path));\n\n    return value;\n}\n\nauto BootEntry::fromError(const QString &error) -> BootEntry\n{\n    BootEntry value{};\n    value.is_error = true;\n    value.description = \"Error\";\n    value.error = error;\n    return value;\n}\n\nauto BootEntry::toEFIBootLoadOption() const -> EFIBoot::Load_option\n{\n    if(is_error)\n        return {};\n\n    EFIBoot::Load_option load_option{};\n    load_option.description = description.toStdU16String();\n    {\n        auto bytes = getRawOptionalData();\n        auto begin = reinterpret_cast<const EFIBoot::Raw_data::value_type *>(bytes.constData());\n        std::copy(begin, std::next(begin, bytes.size()), std::back_inserter(load_option.optional_data));\n    }\n\n    load_option.attributes = attributes;\n    for(const auto &file_path: device_path)\n        load_option.device_path.push_back(std::visit([](const auto &obj) -> EFIBoot::File_path::ANY\n            { return obj.toEFIBootFilePath(); },\n            file_path));\n\n    return load_option;\n}\n\nauto BootEntry::fromJSON(const QJsonObject &obj) -> std::optional<BootEntry>\n{\n    BootEntry value{};\n    try_read(description, String);\n    try_read_3(optional_data_format, Double, Int);\n    try_read(optional_data, String);\n    try_read_3(attributes, Double, Int);\n    try_read_3(efi_attributes, Double, Int);\n    check_type(file_path, Array);\n    const auto device_path = obj[\"file_path\"].toArray();\n    for(const auto file_path: device_path)\n    {\n        auto dp = file_path.toObject();\n        auto path = get_default(FilePath::JSON_readers(), QString(\"%1/%2\").arg(dp[\"type\"].toString(), dp[\"subtype\"].toString()), [](const auto &)\n            { return std::nullopt; })(dp);\n        if(!path)\n            return std::nullopt;\n\n        value.device_path.push_back(*path);\n    }\n\n    return {value};\n}\n\nauto BootEntry::toJSON() const -> QJsonObject\n{\n    if(is_error)\n        return {};\n\n    QJsonObject load_option;\n    load_option[\"description\"] = description;\n    load_option[\"optional_data_format\"] = static_cast<int>(optional_data_format);\n    load_option[\"optional_data\"] = optional_data;\n    load_option[\"attributes\"] = static_cast<int>(attributes);\n    load_option[\"efi_attributes\"] = static_cast<int>(efi_attributes);\n    QJsonArray file_path_json;\n    for(const auto &file_path: device_path)\n        file_path_json.push_back(std::visit([](const auto &obj) -> QJsonObject\n            { return obj.toJSON(); },\n            file_path));\n\n    load_option[\"file_path\"] = file_path_json;\n    return load_option;\n}\n\nauto BootEntry::formatDevicePath(bool refresh) const -> QString\n{\n    if(device_path.empty())\n        return {};\n\n    if(device_path_str.size() && !refresh)\n        return device_path_str;\n\n    device_path_str.clear();\n    for(const auto &file_path: device_path)\n    {\n        if(!device_path_str.isEmpty())\n            device_path_str += \"/\";\n\n        device_path_str += std::visit([refresh](const auto &obj)\n            { return obj.toString(refresh); },\n            file_path);\n    }\n\n    return device_path_str;\n}\n\nQString BootEntry::getTitle() const\n{\n    return QString(\"%1 (%2)\").arg(description, toHex(index, 4));\n}\n\nauto BootEntry::changeOptionalDataFormat(BootEntry::OptionalDataFormat format, bool test) -> bool\n{\n    if(format == optional_data_format)\n        return true;\n\n    auto bytes = getRawOptionalData();\n    QString temp_optional_data;\n    switch(format)\n    {\n    case OptionalDataFormat::Base64:\n        temp_optional_data = bytes.toBase64();\n        break;\n\n    case OptionalDataFormat::Utf16:\n        if(static_cast<uint>(bytes.size()) % sizeof(char16_t) != 0)\n            return false;\n\n        if(!toUnicode(temp_optional_data, bytes, \"UTF-16\"))\n            return false;\n\n        break;\n\n    case OptionalDataFormat::Utf8:\n        if(!toUnicode(temp_optional_data, bytes, \"UTF-8\"))\n            return false;\n\n        break;\n\n    case OptionalDataFormat::Hex:\n        temp_optional_data = bytes.toHex();\n        break;\n    }\n\n    if(temp_optional_data.contains(QChar(0)))\n        return false;\n\n    if(!test)\n    {\n        optional_data_format = format;\n        optional_data = temp_optional_data;\n    }\n    return true;\n}\n\nauto BootEntry::getRawOptionalData() const -> QByteArray\n{\n    QByteArray bytes;\n    switch(optional_data_format)\n    {\n    case OptionalDataFormat::Base64:\n        bytes = QByteArray::fromBase64(optional_data.toUtf8());\n        break;\n\n    case OptionalDataFormat::Utf16:\n        bytes = fromUnicode(optional_data, \"UTF-16\");\n        break;\n\n    case OptionalDataFormat::Utf8:\n        bytes = fromUnicode(optional_data, \"UTF-8\");\n        break;\n\n    case OptionalDataFormat::Hex:\n        bytes = QByteArray::fromHex(optional_data.toUtf8());\n        break;\n    }\n\n    return bytes;\n}\n\n#undef try_read_4\n#undef try_read_3\n#undef try_read\n#undef check_type\n#undef check_obj\n\n"
  },
  {
    "path": "src/bootentrydelegate.cpp",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#include \"compat.h\"\n\n#include \"bootentrydelegate.h\"\n\n#include \"bootentry.h\"\n#include \"bootentrylistmodel.h\"\n\nBootEntryDelegate::BootEntryDelegate()\n    : QWidgetItemDelegate<BootEntryWidget, const BootEntry *>{}\n{\n    QObject::connect(&event_handler, &BootEntryWidget::nextBootClicked, this, &BootEntryDelegate::setNextBoot);\n}\n\nvoid BootEntryDelegate::setOptions(const BootEntryListModel::Options &options_)\n{\n    options = options_;\n}\n\nvoid BootEntryDelegate::setupWidgetFromItem(Widget &widget, const Item &item, const QModelIndex &index, int role) const\n{\n    widget.setReadOnly(options & BootEntryListModel::Option::ReadOnly);\n    widget.setIndex(item->index);\n    widget.setDescription(item->description);\n    widget.setData(!item->is_error ? item->optional_data : item->error);\n    widget.showDevicePath(!item->is_error);\n    widget.setDevicePath(item->formatDevicePath(false));\n    widget.showBootOptions(options & BootEntryListModel::Option::IsBoot);\n    widget.setCurrentBoot(item->is_current_boot);\n    widget.setNextBoot(item->is_next_boot);\n\n    if(role == Qt::EditRole)\n        currentIndex = &index;\n}\n\nvoid BootEntryDelegate::setNextBoot(bool checked) const\n{\n    if(!currentIndex || !currentIndex->isValid())\n        return;\n\n    if(auto item = currentIndex->data().value<const BootEntry *>(); checked != item->is_next_boot)\n    {\n        auto model = const_cast<BootEntryListModel *>(static_cast<const BootEntryListModel *>(currentIndex->model()));\n        model->setNextBootEntry(*currentIndex, checked);\n    }\n}\n"
  },
  {
    "path": "src/bootentryform.cpp",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#include \"compat.h\"\n\n#include \"bootentryform.h\"\n#include \"form/ui_bootentryform.h\"\n\n#include <QMessageBox>\n\nBootEntryForm::BootEntryForm(QWidget *parent)\n    : QWidget(parent)\n    , ui{std::make_unique<Ui::BootEntryForm>()}\n{\n    ui->setupUi(this);\n    ui->device_path->setModel(&device_path_proxy_model);\n}\n\nBootEntryForm::~BootEntryForm()\n{\n}\n\nvoid BootEntryForm::setReadOnly(bool readonly)\n{\n    for(auto &widget: findChildren<QLineEdit *>())\n        widget->setReadOnly(readonly);\n\n    for(auto &widget: findChildren<QPlainTextEdit *>())\n        widget->setReadOnly(readonly);\n\n    for(auto &widget: findChildren<QComboBox *>())\n        widget->setDisabled(readonly);\n\n    for(auto &widget: findChildren<QCheckBox *>())\n        widget->setDisabled(readonly);\n\n    for(auto &widget: findChildren<QLabel *>())\n        widget->setDisabled(readonly);\n\n    ui->hot_keys->setDisabled(readonly);\n    ui->device_path->setReadOnly(readonly);\n    ui->device_path_actions->setDisabled(readonly);\n    ui->optional_data_format_combo->setDisabled(false);\n    ui->error_text->setDisabled(readonly);\n}\n\nvoid BootEntryForm::showCategory(bool visible)\n{\n    ui->category_label->setVisible(visible);\n    ui->category_combo->setVisible(visible);\n}\n\nvoid BootEntryForm::showHotKeys(bool visible)\n{\n    ui->hot_keys->setVisible(visible);\n}\n\nvoid BootEntryForm::setBootEntryListModel(BootEntryListModel &model)\n{\n    entries_list_model = &model;\n    device_path_proxy_model.setBootEntryListModel(model);\n}\n\nvoid BootEntryForm::setItem(const QModelIndex &index, const BootEntry *item)\n{\n    current_index = index;\n    current_item = item;\n\n    setDisabled(true);\n\n    ui->index_text->setText(toHex(item ? item->index : 0u, 4));\n    ui->description_text->setText(item ? item->description : \"\");\n    device_path_proxy_model.setBootEntryItem(index, item);\n    ui->optional_data_text->setPlainText(item ? item->optional_data : \"\");\n    ui->optional_data_format_combo->setCurrentIndex(item ? static_cast<int>(item->optional_data_format) : 0);\n    ui->attribute_active->setChecked(item && (item->attributes & EFIBoot::Load_option_attribute::ACTIVE) == EFIBoot::Load_option_attribute::ACTIVE);\n    ui->attribute_hidden->setChecked(item && (item->attributes & EFIBoot::Load_option_attribute::HIDDEN) == EFIBoot::Load_option_attribute::HIDDEN);\n    ui->attribute_force_reconnect->setChecked(item && (item->attributes & EFIBoot::Load_option_attribute::FORCE_RECONNECT) == EFIBoot::Load_option_attribute::FORCE_RECONNECT);\n    ui->category_combo->setCurrentIndex(item && (item->attributes & EFIBoot::Load_option_attribute::CATEGORY_APP) == EFIBoot::Load_option_attribute::CATEGORY_APP);\n    ui->error_text->setText(item ? item->error : \"\");\n\n    ui->form_fields->setVisible(item ? !item->is_error : true);\n    ui->error_text->setVisible(item ? item->is_error : false);\n    ui->error_note->setVisible(item ? item->is_error : false);\n\n    setDisabled(!item);\n}\n\nvoid BootEntryForm::setIndex(const QString &text)\n{\n    if(!isEnabled())\n        return;\n\n    bool success = false;\n    uint16_t index = text.right(text.size() - 2).toUShort(&success, HEX_BASE);\n    if(!success)\n        return;\n\n    entries_list_model->setEntryIndex(current_index, index);\n}\n\nvoid BootEntryForm::setDescription(const QString &text)\n{\n    if(!isEnabled())\n        return;\n\n    entries_list_model->setEntryDescription(current_index, text);\n}\n\nvoid BootEntryForm::setOptionalDataFormat(int format)\n{\n    if(!isEnabled() || changing_optional_data_format)\n        return;\n\n    changing_optional_data_format = true;\n    bool success = entries_list_model->changeEntryOptionalDataFormat(current_index, format);\n    if(!success)\n    {\n        QMessageBox::critical(this, qApp->applicationName(), tr(\"Couldn't change optional data format!\"));\n        ui->optional_data_format_combo->setCurrentIndex(static_cast<int>(current_item->optional_data_format));\n        changing_optional_data_format = false;\n        return;\n    }\n\n    ui->optional_data_text->setPlainText(current_item->optional_data);\n    changing_optional_data_format = false;\n}\n\nvoid BootEntryForm::optionalDataEdited()\n{\n    if(!isEnabled() || changing_optional_data_format)\n        return;\n\n    entries_list_model->setEntryOptionalData(current_index, ui->optional_data_text->toPlainText());\n}\n\nvoid BootEntryForm::setAttribute(int)\n{\n    if(!isEnabled())\n        return;\n\n    entries_list_model->setEntryAttributes(current_index, getAttributes());\n}\n\nvoid BootEntryForm::showHotKeysDialog()\n{\n    if(!isEnabled())\n        return;\n\n    auto text = ui->index_text->text();\n    bool success = false;\n    uint16_t index = text.right(text.size() - 2).toUShort(&success, HEX_BASE);\n    if(!success)\n        return;\n\n    Q_EMIT showHotKeysDialog(index);\n}\n\nEFIBoot::Load_option_attribute BootEntryForm::getAttributes() const\n{\n    EFIBoot::Load_option_attribute attr = EFIBoot::Load_option_attribute::EMPTY;\n    if(ui->attribute_active->isChecked())\n        attr = attr | EFIBoot::Load_option_attribute::ACTIVE;\n\n    if(ui->attribute_hidden->isChecked())\n        attr = attr | EFIBoot::Load_option_attribute::HIDDEN;\n\n    if(ui->attribute_force_reconnect->isChecked())\n        attr = attr | EFIBoot::Load_option_attribute::FORCE_RECONNECT;\n\n    switch(ui->category_combo->currentIndex())\n    {\n    case 0:\n        attr = attr | EFIBoot::Load_option_attribute::CATEGORY_BOOT;\n        break;\n\n    case 1:\n        attr = attr | EFIBoot::Load_option_attribute::CATEGORY_APP;\n        break;\n    }\n\n    return attr;\n}\n"
  },
  {
    "path": "src/bootentrylistmodel.cpp",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#include \"compat.h\"\n\n#include \"bootentrylistmodel.h\"\n\n#include \"commands.h\"\n\nBootEntryListModel::BootEntryListModel(const QString &name_, const Options &options_, QObject *parent)\n    : QAbstractListModel{parent}\n    , name{name_}\n    , options{options_}\n{\n}\n\nvoid BootEntryListModel::setUndoStack(QUndoStack *undo_stack_)\n{\n    undo_stack = undo_stack_;\n}\n\nauto BootEntryListModel::getUndoStack() const -> QUndoStack *\n{\n    return undo_stack;\n}\n\nauto BootEntryListModel::rowCount(const QModelIndex &parent) const -> int\n{\n    if(parent.isValid())\n        return 0;\n\n    return static_cast<int>(entries.count());\n}\n\nauto BootEntryListModel::data(const QModelIndex &index, int role) const -> QVariant\n{\n    if(role != Qt::DisplayRole)\n        return {};\n\n    if(!index.isValid() || !checkIndex(index))\n        return {};\n\n    QVariant data;\n    data.setValue(&entries.at(index.row()));\n    return data;\n}\n\nauto BootEntryListModel::setData(const QModelIndex &index, const QVariant &value, int role) -> bool\n{\n    if(role != Qt::EditRole)\n        return false;\n\n    if(!index.isValid() || !checkIndex(index))\n        return false;\n\n    auto row = index.row();\n    InsertBootEntryCommand *command = nullptr;\n    // Duplicate entry from given index\n    if(value.canConvert<QModelIndex>())\n        command = new InsertBootEntryCommand{*this, {}, row + 1, entries.at(value.value<QModelIndex>().row())};\n\n    // Insert given entry\n    else\n        command = new InsertBootEntryCommand{*this, {}, row + 1, *value.value<const BootEntry *>()};\n\n    if(undo_stack)\n        undo_stack->push(command);\n\n    else\n    {\n        command->redo();\n        delete command;\n    }\n\n    auto idx = this->index(row + 1, 0);\n    Q_EMIT dataChanged(idx, idx, {role});\n    return true;\n}\n\nvoid BootEntryListModel::setNextBootEntry(const QModelIndex &index, bool value)\n{\n    if(!index.isValid() || !checkIndex(index))\n        return;\n\n    if(value)\n    {\n        if(next_boot == index)\n            return;\n\n        undo_stack->beginMacro(tr(\"Set Next boot to \\\"%1\\\"\").arg(entries.at(index.row()).getTitle()));\n        if(next_boot.isValid() && checkIndex(next_boot))\n            setEntryNextBoot(next_boot, false);\n\n        next_boot = index;\n        setEntryNextBoot(next_boot, true);\n        undo_stack->endMacro();\n        return;\n    }\n\n    if(next_boot != index)\n        return;\n\n    setEntryNextBoot(next_boot, false);\n    next_boot = QModelIndex{};\n}\n\nvoid BootEntryListModel::setEntryFilePath(const QModelIndex &index, int row, const FilePath::ANY &file_path)\n{\n    if(!index.isValid() || !checkIndex(index))\n        return;\n\n    auto command = new SetBootEntryFilePathCommand{*this, index, row, file_path};\n    if(!undo_stack)\n    {\n        command->redo();\n        delete command;\n        return;\n    }\n\n    undo_stack->push(command);\n}\n\nvoid BootEntryListModel::insertEntryFilePath(const QModelIndex &index, int row, const FilePath::ANY &file_path)\n{\n    if(!index.isValid() || !checkIndex(index))\n        return;\n\n    auto command = new InsertBootEntryFilePathCommand{*this, index, row, file_path};\n    if(!undo_stack)\n    {\n        command->redo();\n        delete command;\n        return;\n    }\n\n    undo_stack->push(command);\n}\n\nvoid BootEntryListModel::removeEntryFilePath(const QModelIndex &index, int row)\n{\n    if(!index.isValid() || !checkIndex(index))\n        return;\n\n    auto command = new RemoveBootEntryFilePathCommand{*this, index, row};\n    if(!undo_stack)\n    {\n        command->redo();\n        delete command;\n        return;\n    }\n\n    undo_stack->push(command);\n}\n\nvoid BootEntryListModel::moveEntryFilePath(const QModelIndex &index, int source_row, int destination_row)\n{\n    if(!index.isValid() || !checkIndex(index))\n        return;\n\n    auto command = new MoveBootEntryFilePathCommand{*this, index, source_row, destination_row};\n    if(!undo_stack)\n    {\n        command->redo();\n        delete command;\n        return;\n    }\n\n    undo_stack->push(command);\n}\n\nvoid BootEntryListModel::clearEntryDevicePath(const QModelIndex &index)\n{\n    if(!index.isValid() || !checkIndex(index))\n        return;\n\n    // Used only internally, no undo/redo\n    entries[index.row()].device_path.clear();\n    Q_EMIT dataChanged(index, index, {Qt::EditRole});\n}\n\nvoid BootEntryListModel::setEntryIndex(const QModelIndex &index, uint16_t value)\n{\n    if(!index.isValid() || !checkIndex(index))\n        return;\n\n    auto command = new SetBootEntryValueCommand<uint16_t>{*this, index, tr(\"index\"), &BootEntry::index, value};\n    if(!undo_stack)\n    {\n        command->redo();\n        delete command;\n        return;\n    }\n\n    undo_stack->push(command);\n}\n\nvoid BootEntryListModel::setEntryDescription(const QModelIndex &index, const QString &text)\n{\n    if(!index.isValid() || !checkIndex(index))\n        return;\n\n    auto command = new SetBootEntryValueCommand<QString>{*this, index, tr(\"description\"), &BootEntry::description, text};\n    if(!undo_stack)\n    {\n        command->redo();\n        delete command;\n        return;\n    }\n\n    undo_stack->push(command);\n}\n\nbool BootEntryListModel::changeEntryOptionalDataFormat(const QModelIndex &index, int format)\n{\n    if(!index.isValid() || !checkIndex(index))\n        return false;\n\n    auto fmt = static_cast<BootEntry::OptionalDataFormat>(format);\n    if(!entries[index.row()].changeOptionalDataFormat(fmt, true))\n        return false;\n\n    auto command = new ChangeOptionalDataFormatCommand{*this, index, fmt};\n    if(!undo_stack)\n    {\n        command->redo();\n        delete command;\n        return true;\n    }\n\n    undo_stack->push(command);\n    return true;\n}\n\nvoid BootEntryListModel::setEntryOptionalData(const QModelIndex &index, const QString &text)\n{\n    if(!index.isValid() || !checkIndex(index))\n        return;\n\n    auto command = new SetBootEntryValueCommand<QString>{*this, index, tr(\"optional data\"), &BootEntry::optional_data, text};\n    if(!undo_stack)\n    {\n        command->redo();\n        delete command;\n        return;\n    }\n\n    undo_stack->push(command);\n}\n\nvoid BootEntryListModel::setEntryAttributes(const QModelIndex &index, EFIBoot::Load_option_attribute value)\n{\n    if(!index.isValid() || !checkIndex(index))\n        return;\n\n    auto command = new SetBootEntryValueCommand<EFIBoot::Load_option_attribute>{*this, index, tr(\"attributes\"), &BootEntry::attributes, value};\n    if(!undo_stack)\n    {\n        command->redo();\n        delete command;\n        return;\n    }\n\n    undo_stack->push(command);\n}\n\nvoid BootEntryListModel::setEntryNextBoot(const QModelIndex &index, bool value)\n{\n    if(!index.isValid() || !checkIndex(index))\n        return;\n\n    auto command = new SetBootEntryValueCommand<bool>{*this, index, tr(\"next boot\"), &BootEntry::is_next_boot, value};\n    if(!undo_stack)\n    {\n        command->redo();\n        delete command;\n        return;\n    }\n\n    undo_stack->push(command);\n}\n\nauto BootEntryListModel::insertRows(int row, int count, const QModelIndex &parent) -> bool\n{\n    for(int c = 0; c < count; ++c)\n    {\n        auto command = new InsertBootEntryCommand{*this, parent, row + c, {}};\n        if(!undo_stack)\n        {\n            command->redo();\n            delete command;\n            continue;\n        }\n\n        undo_stack->push(command);\n    }\n\n    return true;\n}\n\nauto BootEntryListModel::appendRow(const BootEntry &data, const QModelIndex &parent) -> bool\n{\n    // Only used internally when loading data, no undo/redo\n    int row = rowCount(parent);\n    beginInsertRows(parent, row, row);\n    entries.append(data);\n    endInsertRows();\n    return true;\n}\n\nauto BootEntryListModel::removeRows(int row, int count, const QModelIndex &parent) -> bool\n{\n    for(int c = 0; c < count; ++c)\n    {\n        auto command = new RemoveBootEntryCommand{*this, parent, row};\n        if(!undo_stack)\n        {\n            command->redo();\n            delete command;\n            continue;\n        }\n\n        undo_stack->push(command);\n    }\n\n    return true;\n}\n\nauto BootEntryListModel::moveRows(const QModelIndex &sourceParent, int sourceRow, int count, const QModelIndex &destinationParent, int destinationChild) -> bool\n{\n    for(int c = 0; c < count; ++c)\n    {\n        auto command = new MoveBootEntryCommand{*this, sourceParent, sourceRow, destinationParent, destinationChild + (sourceRow < destinationChild ? 0 : c)};\n        if(!undo_stack)\n        {\n            command->redo();\n            delete command;\n            continue;\n        }\n\n        undo_stack->push(command);\n    }\n\n    return true;\n}\n\nvoid BootEntryListModel::clear()\n{\n    beginResetModel();\n    entries.clear();\n    endResetModel();\n}\n"
  },
  {
    "path": "src/bootentrylistview.cpp",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#include \"compat.h\"\n\n#include \"bootentrylistview.h\"\n\nBootEntryListView::BootEntryListView(QWidget *parent)\n    : QListView{parent}\n{\n    setItemDelegate(&delegate);\n}\n\nvoid BootEntryListView::setModel(BootEntryListModel *model)\n{\n    options = model->options;\n    delegate.setOptions(options);\n    if(this->model())\n    {\n        disconnect(this->model(), &BootEntryListModel::rowsMoved, this, &BootEntryListView::rowsMoved);\n        disconnect(this->model(), &BootEntryListModel::rowsRemoved, this, &BootEntryListView::rowsChanged);\n        disconnect(this->model(), &BootEntryListModel::rowsInserted, this, &BootEntryListView::rowsChanged);\n    }\n\n    QListView::setModel(model);\n    connect(this->model(), &BootEntryListModel::rowsMoved, this, &BootEntryListView::rowsMoved);\n    connect(this->model(), &BootEntryListModel::rowsRemoved, this, &BootEntryListView::rowsChanged);\n    connect(this->model(), &BootEntryListModel::rowsInserted, this, &BootEntryListView::rowsChanged);\n}\n\nvoid BootEntryListView::insertRow()\n{\n    if(options & BootEntryListModel::Option::ReadOnly)\n        return;\n\n    auto row = currentIndex().row();\n    if(model()->insertRow(row + 1))\n        setCurrentIndex(model()->index(row + 1, 0));\n}\n\nvoid BootEntryListView::duplicateRow()\n{\n    if(options & BootEntryListModel::Option::ReadOnly)\n        return;\n\n    auto row = currentIndex().row();\n    auto idx = model()->index(row, 0);\n    if(model()->setData(idx, idx))\n        setCurrentIndex(model()->index(row + 1, 0));\n}\n\nvoid BootEntryListView::removeCurrentRow()\n{\n    if(options & BootEntryListModel::Option::ReadOnly)\n        return;\n\n    auto index = currentIndex();\n    if(!index.isValid() || !model()->checkIndex(index))\n        return;\n\n    auto row = index.row();\n    model()->removeRow(row);\n}\n\nvoid BootEntryListView::moveCurrentRowUp()\n{\n    if(options & BootEntryListModel::Option::ReadOnly)\n        return;\n\n    auto index = currentIndex();\n    if(!index.isValid() || !model()->checkIndex(index) || index.row() == 0)\n        return;\n\n    auto previous_index = index.siblingAtRow(index.row() - 1);\n    if(model()->moveRow(index, index.row(), previous_index, previous_index.row()))\n        setCurrentIndex(previous_index);\n}\n\nvoid BootEntryListView::moveCurrentRowDown()\n{\n    if(options & BootEntryListModel::Option::ReadOnly)\n        return;\n\n    auto index = currentIndex();\n    if(!index.isValid() || !model()->checkIndex(index) || index.row() >= model()->rowCount() - 1)\n        return;\n\n    auto next_index = index.siblingAtRow(index.row() + 1);\n    if(model()->moveRow(index, index.row(), next_index, next_index.row()))\n        setCurrentIndex(next_index);\n}\n\nvoid BootEntryListView::rowsMoved(const QModelIndex &, int sourceStart, int sourceEnd, const QModelIndex &, int destinationRow)\n{\n    auto index = currentIndex();\n    if(!index.isValid() || !model()->checkIndex(index) || index.row() >= model()->rowCount())\n        return;\n\n    if(sourceStart <= index.row() && index.row() <= sourceEnd)\n        index = model()->index(index.row() + destinationRow - sourceStart, 0);\n\n    else if(sourceStart <= destinationRow)\n    {\n        if(sourceEnd < index.row() && index.row() < destinationRow)\n            index = model()->index(index.row() - sourceEnd + sourceStart, 0);\n    }\n    else\n    {\n        if(destinationRow < index.row() && index.row() < sourceStart)\n            index = model()->index(index.row() + sourceEnd - sourceStart, 0);\n    }\n\n    setCurrentIndex(index);\n}\n\nvoid BootEntryListView::rowsChanged(const QModelIndex &, int, int)\n{\n    auto index = currentIndex();\n    if(!index.isValid() || !model()->checkIndex(index) || index.row() >= model()->rowCount())\n        return;\n\n    Q_EMIT selected(index);\n}\n\nvoid BootEntryListView::selectionChanged(const QItemSelection &selection, const QItemSelection &)\n{\n    QModelIndex index;\n    if(!selection.indexes().isEmpty())\n        index = selection.indexes().first();\n\n    Q_EMIT selected(index);\n}\n"
  },
  {
    "path": "src/bootentrywidget.cpp",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#include \"compat.h\"\n\n#include \"bootentrywidget.h\"\n#include \"form/ui_bootentrywidget.h\"\n#include <QMouseEvent>\n\nBootEntryWidget::BootEntryWidget(QWidget *parent)\n    : QWidget(parent)\n    , ui(std::make_unique<Ui::BootEntryWidget>())\n{\n    ui->setupUi(this);\n    ui->current_boot->setMaximumSize(6, 6);\n\n    QObject::connect(ui->next_boot, &QRadioButton::clicked, this, &BootEntryWidget::nextBootClicked);\n}\n\nBootEntryWidget::~BootEntryWidget()\n{\n}\n\nvoid BootEntryWidget::setReadOnly(bool readonly)\n{\n    ui->next_boot->setDisabled(readonly);\n}\n\nvoid BootEntryWidget::showBootOptions(bool is_boot)\n{\n    ui->current_boot->setVisible(is_boot);\n    ui->next_boot->setVisible(is_boot);\n}\n\nvoid BootEntryWidget::showDevicePath(bool not_error)\n{\n    ui->device_path->setVisible(not_error);\n}\n\nvoid BootEntryWidget::setIndex(const uint32_t index)\n{\n    ui->index->setText(toHex(index, 4));\n}\n\nvoid BootEntryWidget::setDescription(const QString &description)\n{\n    ui->description->setText(description);\n    ui->description->setStatusTip(description);\n    setStatusTip(description);\n    setToolTip(description);\n}\n\nvoid BootEntryWidget::setDevicePath(const QString &device_path)\n{\n    ui->device_path->setText(device_path);\n    ui->device_path->setStatusTip(device_path);\n}\n\nvoid BootEntryWidget::setData(const QString &_data)\n{\n    ui->data->setText(_data);\n    ui->data->setStatusTip(_data);\n    ui->data->setHidden(_data.isEmpty());\n}\n\nauto BootEntryWidget::getNextBoot() const -> bool\n{\n    return ui->next_boot->isChecked();\n}\n\nvoid BootEntryWidget::setNextBoot(bool next_boot)\n{\n    ui->next_boot->setChecked(next_boot);\n}\n\nauto BootEntryWidget::getCurrentBoot() const -> bool\n{\n    return ui->current_boot->isChecked();\n}\n\nvoid BootEntryWidget::setCurrentBoot(bool current_boot)\n{\n    ui->current_boot->setChecked(current_boot);\n    ui->current_boot->setHidden(!current_boot);\n}\n"
  },
  {
    "path": "src/commands.cpp",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#include \"compat.h\"\n\n#include \"commands.h\"\n\nInsertRemoveBootEntryCommand::InsertRemoveBootEntryCommand(BootEntryListModel &model_, const QString &description, const QModelIndex &index_parent_, int index_, const BootEntry &entry_, QUndoCommand *parent)\n    : QUndoCommand(description, parent)\n    , model{model_}\n    , index_parent{index_parent_}\n    , entry{entry_}\n    , index{index_}\n{\n}\n\nint InsertRemoveBootEntryCommand::id() const\n{\n    return -1;\n}\n\nvoid InsertRemoveBootEntryCommand::insert()\n{\n    model.beginInsertRows(index_parent, index, index);\n    model.entries.insert(index, entry);\n    model.endInsertRows();\n}\n\nvoid InsertRemoveBootEntryCommand::remove()\n{\n    model.beginRemoveRows(index_parent, index, index);\n    model.entries.removeAt(index);\n    model.endRemoveRows();\n}\n\nInsertBootEntryCommand::InsertBootEntryCommand(BootEntryListModel &model_, const QModelIndex &index_parent_, int index_, const BootEntry &entry_, QUndoCommand *parent)\n    : InsertRemoveBootEntryCommand(model_, QObject::tr(\"Insert %1 entry \\\"%2\\\" at position %3\").arg(model_.name, entry_.getTitle()).arg(index_), index_parent_, index_, entry_, parent)\n{\n}\n\nvoid InsertBootEntryCommand::undo()\n{\n    remove();\n}\n\nvoid InsertBootEntryCommand::redo()\n{\n    insert();\n}\n\nRemoveBootEntryCommand::RemoveBootEntryCommand(BootEntryListModel &model_, const QModelIndex &index_parent_, int index_, QUndoCommand *parent)\n    : InsertRemoveBootEntryCommand(model_, QObject::tr(\"Remove %1 entry \\\"%2\\\" from position %3\").arg(model_.name, model_.entries.at(index_).getTitle()).arg(index_), index_parent_, index_, model_.entries.at(index_), parent)\n{\n}\n\nvoid RemoveBootEntryCommand::undo()\n{\n    insert();\n}\n\nvoid RemoveBootEntryCommand::redo()\n{\n    remove();\n}\n\nMoveBootEntryCommand::MoveBootEntryCommand(BootEntryListModel &model_, const QModelIndex &source_parent_, int source_index_, const QModelIndex &destination_parent_, int destination_index_, QUndoCommand *parent)\n    : QUndoCommand(\"\", parent)\n    , model{model_}\n    , title{model_.entries.at(source_index_).getTitle()}\n    , source_parent{source_parent_}\n    , destination_parent{destination_parent_}\n    , source_index{source_index_}\n    , destination_index{destination_index_}\n{\n    setText(QObject::tr(\"Move %1 entry \\\"%2\\\" from position %3 to %4\").arg(model.name, title).arg(source_index).arg(destination_index));\n}\n\nint MoveBootEntryCommand::id() const\n{\n    return 2;\n}\n\nvoid MoveBootEntryCommand::undo()\n{\n    if(!model.beginMoveRows(destination_parent, destination_index, destination_index + 1, source_parent, source_index))\n        return;\n\n    model.entries.move(destination_index, source_index);\n    model.endMoveRows();\n}\n\nvoid MoveBootEntryCommand::redo()\n{\n    if(!model.beginMoveRows(source_parent, source_index, source_index + 1, destination_parent, destination_index))\n        return;\n\n    model.entries.move(source_index, destination_index);\n    model.endMoveRows();\n}\n\nbool MoveBootEntryCommand::mergeWith(const QUndoCommand *command)\n{\n    if(command->id() != id())\n        return false;\n\n    auto cmd = static_cast<const MoveBootEntryCommand *>(command);\n    if(&cmd->model != &model)\n        return false;\n\n    if(cmd->source_parent != destination_parent)\n        return false;\n\n    if(cmd->source_index != destination_index)\n        return false;\n\n    destination_parent = cmd->destination_parent;\n    destination_index = cmd->destination_index;\n    setText(QObject::tr(\"Move %1 entry \\\"%2\\\" from position %3 to %4\").arg(model.name, title).arg(source_index).arg(destination_index));\n    if(source_index == destination_index)\n        setObsolete(true);\n\n    return true;\n}\n\nChangeOptionalDataFormatCommand::ChangeOptionalDataFormatCommand(BootEntryListModel &model_, const QModelIndex &index_, const BootEntry::OptionalDataFormat &value_, QUndoCommand *parent)\n    : QUndoCommand{\"\", parent}\n    , model{model_}\n    , title{model_.entries.at(index_.row()).getTitle()}\n    , index{index_}\n    , value{value_}\n{\n    updateTitle(value);\n}\n\nint ChangeOptionalDataFormatCommand::id() const\n{\n    return 4;\n}\n\nvoid ChangeOptionalDataFormatCommand::undo()\n{\n    redo();\n}\n\nvoid ChangeOptionalDataFormatCommand::redo()\n{\n    auto &entry = model.entries[index.row()];\n    auto old_value = entry.optional_data_format;\n    if(!entry.changeOptionalDataFormat(value))\n        return;\n\n    value = old_value;\n    Q_EMIT model.dataChanged(index, index, {Qt::EditRole});\n}\n\nbool ChangeOptionalDataFormatCommand::mergeWith(const QUndoCommand *command)\n{\n    auto cmd = static_cast<const ChangeOptionalDataFormatCommand *>(command);\n    if(&cmd->model != &model)\n        return false;\n\n    if(cmd->index != index)\n        return false;\n\n    const auto &entry = model.entries.at(index.row());\n    if(value == entry.optional_data_format)\n        setObsolete(true);\n\n    updateTitle(entry.optional_data_format);\n    return true;\n}\n\nvoid ChangeOptionalDataFormatCommand::updateTitle(BootEntry::OptionalDataFormat val)\n{\n    QString format{};\n    switch(val)\n    {\n    case BootEntry::OptionalDataFormat::Base64:\n        format = \"Base64\";\n        break;\n\n    case BootEntry::OptionalDataFormat::Hex:\n        format = \"Hex\";\n        break;\n\n    case BootEntry::OptionalDataFormat::Utf16:\n        format = \"UTF-16\";\n        break;\n\n    case BootEntry::OptionalDataFormat::Utf8:\n        format = \"UTF-8\";\n        break;\n    }\n\n    setText(QObject::tr(\"Change %1 entry \\\"%2\\\" %3 to \\\"%4\\\"\").arg(model.name, title, QObject::tr(\"Optional data\"), format));\n}\n\nInsertRemoveBootEntryFilePathCommand::InsertRemoveBootEntryFilePathCommand(BootEntryListModel &model_, const QString &description, const QModelIndex &index_, int row_, const FilePath::ANY &file_path_, QUndoCommand *parent)\n    : QUndoCommand(description, parent)\n    , model{model_}\n    , file_path{file_path_}\n    , index{index_}\n    , row{row_}\n{\n}\n\nint InsertRemoveBootEntryFilePathCommand::id() const\n{\n    return -1;\n}\n\nvoid InsertRemoveBootEntryFilePathCommand::insert()\n{\n    auto &entry = model.entries[index.row()];\n    entry.device_path.insert(row, file_path);\n    entry.formatDevicePath();\n    Q_EMIT model.dataChanged(index, index, {Qt::EditRole});\n}\n\nvoid InsertRemoveBootEntryFilePathCommand::remove()\n{\n    auto &entry = model.entries[index.row()];\n    entry.device_path.removeAt(row);\n    entry.formatDevicePath();\n    Q_EMIT model.dataChanged(index, index, {Qt::EditRole});\n}\n\nInsertBootEntryFilePathCommand::InsertBootEntryFilePathCommand(BootEntryListModel &model_, const QModelIndex &index_, int row_, const FilePath::ANY &file_path_, QUndoCommand *parent)\n    : InsertRemoveBootEntryFilePathCommand(model_, QObject::tr(\"Insert %1 entry \\\"%2\\\" file path at position %3\").arg(model_.name, model_.entries.at(index_.row()).getTitle()).arg(row_), index_, row_, file_path_, parent)\n{\n}\n\nvoid InsertBootEntryFilePathCommand::undo()\n{\n    remove();\n}\n\nvoid InsertBootEntryFilePathCommand::redo()\n{\n    insert();\n}\n\nRemoveBootEntryFilePathCommand::RemoveBootEntryFilePathCommand(BootEntryListModel &model_, const QModelIndex &index_, int row_, QUndoCommand *parent)\n    : InsertRemoveBootEntryFilePathCommand(model_, QObject::tr(\"Remove %1 entry \\\"%2\\\" file path from position %3\").arg(model_.name, model_.entries.at(index_.row()).getTitle()).arg(row_), index_, row_, model_.entries.at(index_.row()).device_path.at(row_), parent)\n{\n}\n\nvoid RemoveBootEntryFilePathCommand::undo()\n{\n    insert();\n}\n\nvoid RemoveBootEntryFilePathCommand::redo()\n{\n    remove();\n}\n\nSetBootEntryFilePathCommand::SetBootEntryFilePathCommand(BootEntryListModel &model_, const QModelIndex &index_, int row_, const FilePath::ANY &value_, QUndoCommand *parent)\n    : QUndoCommand(QObject::tr(\"Set %1 entry \\\"%2\\\" file path at position %3\").arg(model_.name, model_.entries.at(index_.row()).getTitle()).arg(row_), parent)\n    , model{model_}\n    , index{index_}\n    , value{value_}\n    , row{row_}\n{\n}\n\nint SetBootEntryFilePathCommand::id() const\n{\n    return -1;\n}\n\nvoid SetBootEntryFilePathCommand::undo()\n{\n    redo();\n}\n\nvoid SetBootEntryFilePathCommand::redo()\n{\n    auto &entry = model.entries[index.row()];\n    auto old_value = entry.device_path[row];\n    entry.device_path[row] = value;\n    value = old_value;\n    entry.formatDevicePath();\n    Q_EMIT model.dataChanged(index, index, {Qt::EditRole});\n}\n\nMoveBootEntryFilePathCommand::MoveBootEntryFilePathCommand(BootEntryListModel &model_, const QModelIndex &index_, int source_row_, int destination_row_, QUndoCommand *parent)\n    : QUndoCommand(\"\", parent)\n    , model{model_}\n    , title{model_.entries.at(index_.row()).getTitle()}\n    , index{index_}\n    , source_row{source_row_}\n    , destination_row{destination_row_}\n{\n    setText(QObject::tr(\"Move %1 entry \\\"%2\\\" file path from position %3 to %4\").arg(model.name, title).arg(source_row).arg(destination_row));\n}\n\nint MoveBootEntryFilePathCommand::id() const\n{\n    return 5;\n}\n\nvoid MoveBootEntryFilePathCommand::undo()\n{\n    auto &entry = model.entries[index.row()];\n    entry.device_path.move(destination_row, source_row);\n    entry.formatDevicePath();\n    Q_EMIT model.dataChanged(index, index, {Qt::EditRole});\n}\n\nvoid MoveBootEntryFilePathCommand::redo()\n{\n    auto &entry = model.entries[index.row()];\n    entry.device_path.move(source_row, destination_row);\n    entry.formatDevicePath();\n    Q_EMIT model.dataChanged(index, index, {Qt::EditRole});\n}\n\nbool MoveBootEntryFilePathCommand::mergeWith(const QUndoCommand *command)\n{\n    if(command->id() != id())\n        return false;\n\n    auto cmd = static_cast<const MoveBootEntryFilePathCommand *>(command);\n    if(&cmd->model != &model)\n        return false;\n\n    if(cmd->index != index)\n        return false;\n\n    if(cmd->source_row != destination_row)\n        return false;\n\n    destination_row = cmd->destination_row;\n    setText(QObject::tr(\"Move %1 entry \\\"%2\\\" file path from position %3 to %4\").arg(model.name, title).arg(source_row).arg(destination_row));\n    if(source_row == destination_row)\n        setObsolete(true);\n\n    return true;\n}\n\nInsertRemoveHotKeyCommand::InsertRemoveHotKeyCommand(HotKeyListModel &model_, const QString &description, const QModelIndex &index_parent_, int index_, const HotKey &entry_, QUndoCommand *parent)\n    : QUndoCommand(description, parent)\n    , model{model_}\n    , index_parent{index_parent_}\n    , entry{entry_}\n    , index{index_}\n{\n}\n\nint InsertRemoveHotKeyCommand::id() const\n{\n    return -1;\n}\n\nvoid InsertRemoveHotKeyCommand::insert()\n{\n    model.beginInsertRows(index_parent, index, index);\n    model.entries.insert(index, entry);\n    model.endInsertRows();\n}\n\nvoid InsertRemoveHotKeyCommand::remove()\n{\n    model.beginRemoveRows(index_parent, index, index);\n    model.entries.removeAt(index);\n    model.endRemoveRows();\n}\n\nInsertHotKeyCommand::InsertHotKeyCommand(HotKeyListModel &model_, const QModelIndex &index_parent_, int index_, const HotKey &entry_, QUndoCommand *parent)\n    : InsertRemoveHotKeyCommand(model_, QObject::tr(\"Insert %1 entry at position %2\").arg(QObject::tr(\"Key\")).arg(index_), index_parent_, index_, entry_, parent)\n{\n}\n\nvoid InsertHotKeyCommand::undo()\n{\n    remove();\n}\n\nvoid InsertHotKeyCommand::redo()\n{\n    insert();\n}\n\nRemoveHotKeyCommand::RemoveHotKeyCommand(HotKeyListModel &model_, const QModelIndex &index_parent_, int index_, QUndoCommand *parent)\n    : InsertRemoveHotKeyCommand(model_, QObject::tr(\"Remove %1 entry from position %2\").arg(QObject::tr(\"Key\")).arg(index_), index_parent_, index_, model_.entries.at(index_), parent)\n{\n}\n\nvoid RemoveHotKeyCommand::undo()\n{\n    insert();\n}\n\nvoid RemoveHotKeyCommand::redo()\n{\n    remove();\n}\n\nSetHotKeyKeysCommand::SetHotKeyKeysCommand(HotKeyListModel &model_, const QModelIndex &index_, const EFIKeySequence &value_, QUndoCommand *parent)\n    : QUndoCommand(QObject::tr(\"Change %1 entry at position %2 %3 to \\\"%4\\\"\").arg(QObject::tr(\"Key\")).arg(index_.row()).arg(QObject::tr(\"keys\"), value_.toString(true)), parent)\n    , model{model_}\n    , index{index_}\n    , value{value_}\n{\n}\n\nint SetHotKeyKeysCommand::id() const\n{\n    return 7;\n}\n\nvoid SetHotKeyKeysCommand::undo()\n{\n    redo();\n}\n\nvoid SetHotKeyKeysCommand::redo()\n{\n    auto &entry = model.entries[index.row()];\n    auto old_value = entry.keys;\n    entry.keys = value;\n    value = old_value;\n    Q_EMIT model.dataChanged(index, index, {Qt::EditRole});\n}\n\nbool SetHotKeyKeysCommand::mergeWith(const QUndoCommand *command)\n{\n    auto cmd = static_cast<const SetHotKeyKeysCommand *>(command);\n    if(&cmd->model != &model)\n        return false;\n\n    if(cmd->index != index)\n        return false;\n\n    auto &entry = model.entries.at(index.row());\n    if(value == entry.keys)\n        setObsolete(true);\n\n    setText(QObject::tr(\"Change %1 entry at position %2 %3 to \\\"%4\\\"\").arg(QObject::tr(\"Key\")).arg(index.row()).arg(QObject::tr(\"keys\"), entry.keys.toString(true)));\n    return true;\n}\n"
  },
  {
    "path": "src/devicepathproxymodel.cpp",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#include \"compat.h\"\n\n#include \"devicepathproxymodel.h\"\n\nDevicePathProxyModel::DevicePathProxyModel(QObject *parent)\n    : QAbstractListModel(parent)\n{\n}\n\nvoid DevicePathProxyModel::setBootEntryListModel(BootEntryListModel &model)\n{\n    boot_entry_list_model = &model;\n}\n\nvoid DevicePathProxyModel::setBootEntryItem(const QModelIndex &index, const BootEntry *item)\n{\n    beginResetModel();\n    boot_entry_index = index;\n    boot_entry_device_path = !item ? nullptr : &item->device_path;\n    endResetModel();\n}\n\nauto DevicePathProxyModel::rowCount(const QModelIndex &parent) const -> int\n{\n    if(parent.isValid())\n        return 0;\n\n    if(!boot_entry_device_path)\n        return 0;\n\n    return static_cast<int>(boot_entry_device_path->size());\n}\n\nauto DevicePathProxyModel::data(const QModelIndex &index, int role) const -> QVariant\n{\n    if(role != Qt::DisplayRole)\n        return {};\n\n    if(!index.isValid() || !checkIndex(index))\n        return {};\n\n    QVariant data;\n    data.setValue(&boot_entry_device_path->at(index.row()));\n    return data;\n}\n\nauto DevicePathProxyModel::setData(const QModelIndex &index, const QVariant &value, int role) -> bool\n{\n    if(role != Qt::EditRole)\n        return false;\n\n    if(!index.isValid() || !checkIndex(index))\n        return false;\n\n    boot_entry_list_model->setEntryFilePath(boot_entry_index, index.row(), *value.value<const FilePath::ANY *>());\n    Q_EMIT dataChanged(index, index, {role});\n    return true;\n}\n\nauto DevicePathProxyModel::insertRows(int row, int count, const QModelIndex &parent) -> bool\n{\n    beginInsertRows(parent, row, row + count - 1);\n    for(int c = 0; c < count; ++c)\n        boot_entry_list_model->insertEntryFilePath(boot_entry_index, row + c, {});\n\n    endInsertRows();\n    return true;\n}\n\nauto DevicePathProxyModel::removeRows(int row, int count, const QModelIndex &parent) -> bool\n{\n    beginRemoveRows(parent, row, row + count - 1);\n    for(int c = 0; c < count; ++c)\n        boot_entry_list_model->removeEntryFilePath(boot_entry_index, row + count - 1 - c);\n\n    endRemoveRows();\n    return true;\n}\n\nauto DevicePathProxyModel::moveRows(const QModelIndex &sourceParent, int sourceRow, int count, const QModelIndex &destinationParent, int destinationChild) -> bool\n{\n    if(!beginMoveRows(sourceParent, sourceRow, sourceRow + count, destinationParent, destinationChild))\n        return false;\n\n    for(int c = 0; c < count; ++c)\n        boot_entry_list_model->moveEntryFilePath(boot_entry_index, sourceRow, destinationChild + (sourceRow < destinationChild ? 0 : c));\n\n    endMoveRows();\n    return true;\n}\n\nvoid DevicePathProxyModel::clear()\n{\n    beginResetModel();\n    boot_entry_list_model->clearEntryDevicePath(boot_entry_index);\n    endResetModel();\n}\n"
  },
  {
    "path": "src/devicepathview.cpp",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#include \"compat.h\"\n\n#include \"devicepathview.h\"\n\nDevicePathView::DevicePathView(QWidget *parent)\n    : QListView(parent)\n    , dialog{std::make_unique<FilePathDialog>(this)}\n{\n    setItemDelegate(&delegate);\n}\n\nvoid DevicePathView::setReadOnly(bool readonly_)\n{\n    readonly = readonly_;\n}\n\nvoid DevicePathView::insertRow()\n{\n    if(readonly)\n        return;\n\n    auto index = currentIndex();\n    dialog->setReadOnly(readonly);\n    dialog->setFilePath(nullptr);\n    if(dialog->exec() == QDialog::Accepted)\n    {\n        auto row = index.row();\n        const auto file_path = dialog->toFilePath();\n        if(!model()->insertRow(row + 1))\n            return;\n\n        QVariant _data;\n        _data.setValue(&file_path);\n        index = model()->index(row + 1, 0);\n        if(model()->setData(index, _data))\n            setCurrentIndex(index);\n    }\n}\n\nvoid DevicePathView::editCurrentRow()\n{\n    auto index = currentIndex();\n    if(!index.isValid() || !model()->checkIndex(index))\n        return;\n\n    dialog->setReadOnly(readonly);\n    dialog->setFilePath(model()->data(index).value<const FilePath::ANY *>());\n    const auto status = dialog->exec();\n    if(!readonly && status == QDialog::Accepted)\n    {\n        const auto file_path = dialog->toFilePath();\n        QVariant _data;\n        _data.setValue(&file_path);\n        if(model()->setData(index, _data))\n            setCurrentIndex(index);\n    }\n}\n\nvoid DevicePathView::removeCurrentRow() const\n{\n    if(readonly)\n        return;\n\n    auto index = currentIndex();\n    if(!index.isValid() || !model()->checkIndex(index))\n        return;\n\n    auto row = index.row();\n    model()->removeRow(row);\n}\n\nvoid DevicePathView::moveCurrentRowUp()\n{\n    if(readonly)\n        return;\n\n    auto index = currentIndex();\n    if(!index.isValid() || !model()->checkIndex(index) || index.row() == 0)\n        return;\n\n    auto previous_index = index.siblingAtRow(index.row() - 1);\n    if(model()->moveRow(index, index.row(), previous_index, previous_index.row()))\n        setCurrentIndex(previous_index);\n}\n\nvoid DevicePathView::moveCurrentRowDown()\n{\n    if(readonly)\n        return;\n\n    auto index = currentIndex();\n    if(!index.isValid() || !model()->checkIndex(index) || index.row() >= model()->rowCount() - 1)\n        return;\n\n    auto next_index = index.siblingAtRow(index.row() + 1);\n    if(model()->moveRow(index, index.row(), next_index, next_index.row()))\n        setCurrentIndex(next_index);\n}\n"
  },
  {
    "path": "src/driveinfo.cpp",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#include \"compat.h\"\n\n#include \"driveinfo.h\"\n\nQVector<DriveInfo> DriveInfo::all;\n"
  },
  {
    "path": "src/driveinfo.darwin.cpp",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#include \"compat.h\"\n\n#include \"driveinfo.h\"\n\n#include <DiskArbitration/DiskArbitration.h>\n#include <IOKit/storage/IOMedia.h>\n#include <IOKit/storage/IOPartitionScheme.h>\n#include <QDir>\n\nauto DriveInfo::getAll(bool refresh) -> QVector<DriveInfo>\n{\n    if(!refresh && !all.empty())\n        return all;\n\n    all.clear();\n\n    QDir disks(\"/dev\");\n    if(!disks.exists())\n        return all;\n\n    disks.setFilter(QDir::Files | QDir::System);\n    disks.setNameFilters({\"disk*s*\"});\n    DASessionRef session_cf = DASessionCreate(kCFAllocatorDefault);\n    if(session_cf == nullptr)\n        return all;\n\n    for(const auto &disk: disks.entryInfoList())\n    {\n        DriveInfo driveinfo{};\n        driveinfo.name = disk.fileName();\n        DADiskRef disk_cf = DADiskCreateFromBSDName(kCFAllocatorDefault, session_cf, disk.filePath().toStdString().c_str());\n        if(disk_cf == nullptr)\n            continue;\n\n        CFDictionaryRef disk_info_cf = DADiskCopyDescription(disk_cf);\n        if(disk_info_cf == nullptr)\n        {\n            CFRelease(disk_cf);\n            continue;\n        }\n\n        io_service_t disk_service_io = DADiskCopyIOMedia(disk_cf);\n        if(disk_service_io == 0)\n        {\n            CFRelease(disk_info_cf);\n            CFRelease(disk_cf);\n            continue;\n        }\n\n        CFRelease(disk_cf);\n        CFTypeRef value_cf = CFDictionaryGetValue(disk_info_cf, kDADiskDescriptionVolumeNameKey);\n        if(value_cf != nullptr)\n            driveinfo.name = QString::fromCFString(static_cast<CFStringRef>(value_cf));\n\n        value_cf = CFDictionaryGetValue(disk_info_cf, kDADiskDescriptionVolumeUUIDKey);\n        if(value_cf == nullptr)\n            value_cf = CFDictionaryGetValue(disk_info_cf, kDADiskDescriptionMediaUUIDKey);\n\n        if(value_cf != nullptr)\n        {\n            // Assume GPT\n            driveinfo.signature_type = DriveInfo::SIGNATURE::GUID;\n            driveinfo.signature = QUuid::fromCFUUID(static_cast<CFUUIDRef>(value_cf));\n        }\n\n        value_cf = IORegistryEntryCreateCFProperty(disk_service_io, CFSTR(kIOMediaPartitionIDKey), kCFAllocatorDefault, 0);\n        if(value_cf != nullptr)\n        {\n            CFNumberGetValue(static_cast<CFNumberRef>(value_cf), CFNumberGetType(static_cast<CFNumberRef>(value_cf)), static_cast<void *>(&driveinfo.partition));\n            CFRelease(value_cf);\n        }\n\n        uint32_t block_size = 0;\n        value_cf = IORegistryEntryCreateCFProperty(disk_service_io, CFSTR(kIOMediaPreferredBlockSizeKey), kCFAllocatorDefault, 0);\n        if(value_cf != nullptr)\n        {\n            CFNumberGetValue(static_cast<CFNumberRef>(value_cf), CFNumberGetType(static_cast<CFNumberRef>(value_cf)), static_cast<void *>(&block_size));\n            CFRelease(value_cf);\n        }\n\n        value_cf = IORegistryEntryCreateCFProperty(disk_service_io, CFSTR(kIOMediaBaseKey), kCFAllocatorDefault, 0);\n        if(value_cf != nullptr)\n        {\n            CFNumberGetValue(static_cast<CFNumberRef>(value_cf), CFNumberGetType(static_cast<CFNumberRef>(value_cf)), static_cast<void *>(&driveinfo.start));\n            CFRelease(value_cf);\n        }\n\n        if(block_size > 0u)\n            driveinfo.start /= block_size;\n\n        value_cf = CFDictionaryGetValue(disk_info_cf, kDADiskDescriptionMediaSizeKey);\n        if(value_cf != nullptr)\n            CFNumberGetValue(static_cast<CFNumberRef>(value_cf), kCFNumberIntType, &driveinfo.size);\n\n        IOObjectRelease(disk_service_io);\n        CFRelease(disk_info_cf);\n        all.append(driveinfo);\n    }\n\n    CFRelease(session_cf);\n    std::sort(std::begin(all), std::end(all));\n    return all;\n}\n"
  },
  {
    "path": "src/driveinfo.linux.cpp",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#include \"compat.h\"\n\n#include \"driveinfo.h\"\n\n#include <QDir>\n\nauto DriveInfo::getAll(bool refresh) -> QVector<DriveInfo>\n{\n    if(!refresh && !all.empty())\n        return all;\n\n    all.clear();\n\n    QDir partuuid(\"/dev/disk/by-partuuid\");\n    if(!partuuid.exists())\n        return all;\n\n    partuuid.setFilter(QDir::Files);\n    const auto partitions = partuuid.entryInfoList();\n    for(const auto &part: partitions)\n    {\n        if(!part.isSymLink())\n            continue;\n\n        const auto target = QFileInfo{part.symLinkTarget()};\n\n        DriveInfo driveinfo{};\n        driveinfo.name = target.fileName();\n        if(part.fileName().size() > 11)\n        {\n            driveinfo.signature_type = DriveInfo::SIGNATURE::GUID;\n            driveinfo.signature = QUuid::fromString(part.fileName());\n        }\n\n        else\n        {\n            driveinfo.signature_type = DriveInfo::SIGNATURE::MBR;\n            auto parts = part.fileName().split(\"-\");\n            uint l = parts[0].toUInt(nullptr, HEX_BASE);\n            ushort w1 = parts[1].toUShort(nullptr, HEX_BASE);\n            driveinfo.signature = QUuid{l, w1, 0, 0, 0, 0, 0, 0, 0, 0, 0};\n        }\n\n        const auto &sys_path = QString(\"/sys/class/block/%1\").arg(driveinfo.name);\n        if(QFile file{sys_path + \"/partition\"}; file.open(QIODevice::ReadOnly))\n        {\n            driveinfo.partition = file.readAll().toUInt();\n        }\n\n        if(QFile file{sys_path + \"/start\"}; file.open(QIODevice::ReadOnly))\n        {\n            driveinfo.start = file.readAll().toULongLong();\n        }\n\n        if(QFile file{sys_path + \"/size\"}; file.open(QIODevice::ReadOnly))\n        {\n            driveinfo.size = file.readAll().toULongLong();\n        }\n\n        all.append(driveinfo);\n    }\n\n    std::sort(std::begin(all), std::end(all));\n    return all;\n}\n"
  },
  {
    "path": "src/driveinfo.win32.cpp",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#include \"compat.h\"\n\n#include \"driveinfo.h\"\n\n#include <QObject>\n#include <Windows.h>\n#include <array>\n\nQVector<DriveInfo> DriveInfo::getAll(bool refresh)\n{\n    if(!refresh && !all.empty())\n        return all;\n\n    all.clear();\n\n    std::array<TCHAR, MAX_PATH> volume_name{};\n    HANDLE volume_handle = FindFirstVolume(volume_name.data(), static_cast<DWORD>(volume_name.size()));\n\n    if(volume_handle == INVALID_HANDLE_VALUE)\n        return all;\n\n    for(BOOL volume_found = true; volume_found; volume_found = FindNextVolume(volume_handle, volume_name.data(), static_cast<DWORD>(volume_name.size())))\n    {\n        size_t length = _tcsnccnt(volume_name.data(), volume_name.size());\n        if(length != 49u)\n            continue;\n\n        volume_name[length - 1u] = _T('\\0');\n        HANDLE device_handle = CreateFile(volume_name.data(), 0, FILE_SHARE_READ | FILE_SHARE_WRITE, nullptr, OPEN_EXISTING, 0, nullptr);\n        volume_name[length - 1u] = _T('\\\\');\n        if(device_handle == INVALID_HANDLE_VALUE)\n            continue;\n\n        STORAGE_DEVICE_NUMBER device_number{};\n        if(!DeviceIoControl(device_handle, IOCTL_STORAGE_GET_DEVICE_NUMBER, nullptr, 0, &device_number, sizeof(device_number), nullptr, nullptr))\n        {\n            CloseHandle(device_handle);\n            continue;\n        }\n\n        PARTITION_INFORMATION_EX partition_info{};\n        if(!DeviceIoControl(device_handle, IOCTL_DISK_GET_PARTITION_INFO_EX, nullptr, 0, &partition_info, sizeof(partition_info), nullptr, nullptr))\n        {\n            CloseHandle(device_handle);\n            continue;\n        }\n\n        CloseHandle(device_handle);\n\n        DriveInfo driveinfo{};\n        switch(device_number.DeviceType)\n        {\n        case FILE_DEVICE_CD_ROM:\n            driveinfo.name = QObject::tr(\"CD-ROM %1\").arg(device_number.DeviceNumber);\n            break;\n\n        case FILE_DEVICE_DISK:\n            driveinfo.name = QObject::tr(\"Disk %1 partition %2\").arg(device_number.DeviceNumber).arg(partition_info.PartitionNumber);\n            break;\n\n        default:\n            driveinfo.name = QObject::tr(\"Device %1 number %2 partition %3\").arg(toHex(device_number.DeviceType)).arg(device_number.DeviceNumber).arg(partition_info.PartitionNumber);\n            break;\n        }\n\n        QString label{};\n        if(std::array<TCHAR, MAX_PATH> volume_label{}; GetVolumeInformation(volume_name.data(), volume_label.data(), static_cast<DWORD>(volume_label.size()), nullptr, nullptr, nullptr, nullptr, 0))\n            label = QStringFromTCharArray(volume_label.data());\n\n        switch(partition_info.PartitionStyle)\n        {\n        case PARTITION_STYLE_GPT:\n            driveinfo.signature_type = DriveInfo::SIGNATURE::GUID;\n            if(label.isEmpty())\n                label = QString::fromWCharArray(partition_info.Gpt.Name);\n\n            driveinfo.signature = partition_info.Gpt.PartitionId;\n            break;\n\n        case PARTITION_STYLE_MBR:\n            driveinfo.signature_type = DriveInfo::SIGNATURE::MBR;\n            driveinfo.signature = partition_info.Mbr.PartitionId;\n            break;\n\n        case PARTITION_STYLE_RAW:\n            driveinfo.signature_type = DriveInfo::SIGNATURE::NONE;\n            break;\n        }\n\n        if(!label.isEmpty())\n            driveinfo.name += QString(\" (%1)\").arg(label);\n\n        driveinfo.partition = partition_info.PartitionNumber;\n        driveinfo.start = static_cast<uint64_t>(partition_info.StartingOffset.QuadPart);\n        driveinfo.size = static_cast<uint64_t>(partition_info.PartitionLength.QuadPart);\n        all.append(driveinfo);\n    }\n\n    FindVolumeClose(volume_handle);\n    std::sort(std::begin(all), std::end(all));\n    return all;\n}\n"
  },
  {
    "path": "src/efibootdata.cpp",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#include \"compat.h\"\n\n#include \"efibootdata.h\"\n\n#include <QFile>\n#include <QJsonArray>\n#include <QJsonDocument>\n#include <QJsonObject>\n#include <unordered_set>\n\n#include \"commands.h\"\n\nstatic bool is_listentry(const tstring_view &name, const tstring_view &prefix)\n{\n    if(name.length() != prefix.length() + 4 || name.substr(0, prefix.length()) != prefix)\n        return false;\n\n    auto suffix = name.substr(prefix.length());\n    return isxnumber(suffix);\n}\n\nEFIBootData::EFIBootData(QObject *parent)\n    : QObject{parent}\n{\n    boot_entries_list_model.setUndoStack(undo_stack);\n    driver_entries_list_model.setUndoStack(undo_stack);\n    sysprep_entries_list_model.setUndoStack(undo_stack);\n    platform_recovery_entries_list_model.setUndoStack(undo_stack);\n    hot_keys_list_model.setUndoStack(undo_stack);\n}\n\nQUndoStack *EFIBootData::getUndoStack() const\n{\n    return undo_stack;\n}\n\nvoid EFIBootData::setUndoStack(QUndoStack *undo_stack_)\n{\n    undo_stack = undo_stack_;\n    boot_entries_list_model.setUndoStack(undo_stack);\n    driver_entries_list_model.setUndoStack(undo_stack);\n    sysprep_entries_list_model.setUndoStack(undo_stack);\n    platform_recovery_entries_list_model.setUndoStack(undo_stack);\n    hot_keys_list_model.setUndoStack(undo_stack);\n}\n\nvoid EFIBootData::clear()\n{\n    boot_entries_list_model.clear();\n    driver_entries_list_model.clear();\n    sysprep_entries_list_model.clear();\n    platform_recovery_entries_list_model.clear();\n    hot_keys_list_model.clear();\n\n    setTimeout(0);\n    setSecureBoot(false);\n    setVendorKeys(false);\n    setSetupMode(false);\n    setAuditMode(false);\n    setDeployedMode(false);\n    setBootOptionSupport(0);\n    setOsIndicationsSupported(0);\n    setOsIndications(0);\n    setAppleBootArgs(\"\");\n\n    if(undo_stack)\n        undo_stack->clear();\n}\n\nvoid EFIBootData::reload(bool require_efi_entries)\n{\n    Q_EMIT progress(0, 1, tr(\"Loading EFI Boot Manager entries…\"));\n    int32_t current_boot = -1;\n    int32_t next_boot = -1;\n    QStringList errors;\n    auto save_error = [&errors](const QString &error)\n    {\n        errors.push_back(error);\n    };\n\n    const auto variables = EFIBoot::get_variables(\n        [](const EFIBoot::efi_guid_t &guid, const tstring_view)\n        {\n            return guid == EFIBoot::efi_guid_global;\n        },\n        [&, this](size_t step, size_t total)\n        {\n            Q_EMIT progress(step, total + 1u, tr(\"Searching EFI Boot Manager entries…\"));\n        });\n\n    if(!variables)\n    {\n        Q_EMIT error(tr(\"Couldn't load EFI Boot Manager variables\"), QStringFromStdTString(EFIBoot::get_error_trace()));\n        return;\n    }\n\n    const auto &name_to_guid = *variables;\n    if(require_efi_entries && name_to_guid.empty())\n        save_error(tr(\"Couldn't find any EFI Boot Manager variables\"));\n\n    size_t step = 1;\n    const size_t total_steps = name_to_guid.size() + 1u;\n\n    auto process_entry = [this, &step, &total_steps, &name_to_guid](const auto &name, const auto &read_fn, const auto &process_fn, const auto &error_fn, bool optional = false)\n    {\n        const auto tname = QStringToStdTString(name);\n        if(!name_to_guid.count(tname))\n        {\n            if(!optional)\n                error_fn(tr(\"%1: not found\").arg(name));\n\n            return;\n        }\n\n        Q_EMIT progress(step++, total_steps, tr(\"Processing EFI Boot Manager entries (%1)…\").arg(name));\n        const auto variable = read_fn(name_to_guid.at(tname), tname);\n        if(!variable)\n        {\n            error_fn(tr(\"%1: failed deserialization\").arg(name));\n            return;\n        }\n\n        const auto &[value, attributes] = *variable;\n        process_fn(value, attributes);\n    };\n\n    process_entry(\n        \"Timeout\", EFIBoot::get_variable<uint16_t>, [&](const uint16_t &value, const auto &)\n        { setTimeout(value); },\n        save_error,\n        true);\n\n    process_entry(\n        \"BootCurrent\", EFIBoot::get_variable<uint16_t>, [&](const uint16_t &value, const auto &)\n        { current_boot = value; },\n        save_error,\n        true);\n\n    process_entry(\n        \"BootNext\", EFIBoot::get_variable<uint16_t>, [&](const uint16_t &value, const auto &)\n        { next_boot = value; },\n        save_error,\n        true);\n\n    process_entry(\n        \"SecureBoot\", EFIBoot::get_variable<uint8_t>, [&](const uint8_t &value, const auto &)\n        { setSecureBoot(value); },\n        save_error,\n        true);\n\n    process_entry(\n        \"VendorKeys\", EFIBoot::get_variable<uint8_t>, [&](const uint8_t &value, const auto &)\n        { setVendorKeys(value); },\n        save_error,\n        true);\n\n    process_entry(\n        \"SetupMode\", EFIBoot::get_variable<uint8_t>, [&](const uint8_t &value, const auto &)\n        { setSetupMode(value); },\n        save_error,\n        true);\n\n    process_entry(\n        \"AuditMode\", EFIBoot::get_variable<uint8_t>, [&](const uint8_t &value, const auto &)\n        { setAuditMode(value); },\n        save_error,\n        true);\n\n    process_entry(\n        \"DeployedMode\", EFIBoot::get_variable<uint8_t>, [&](const uint8_t &value, const auto &)\n        { setDeployedMode(value); },\n        save_error,\n        true);\n\n    process_entry(\n        \"BootOptionSupport\", EFIBoot::get_variable<uint32_t>, [&](const uint32_t &value, const auto &)\n        { setBootOptionSupport(value); },\n        save_error,\n        true);\n\n    process_entry(\n        \"OsIndicationsSupported\", EFIBoot::get_variable<uint64_t>, [&](const uint64_t &value, const auto &)\n        { setOsIndicationsSupported(value); },\n        save_error,\n        true);\n\n    process_entry(\n        \"OsIndications\", EFIBoot::get_variable<uint64_t>, [&](const uint64_t &value, const auto &)\n        { setOsIndications(value); },\n        save_error,\n        true);\n\n    for(const auto &[prefix_, model_]: BOOT_ENTRIES)\n    {\n        // References to local bindings don't work in lambdas\n        auto &model = model_;\n        auto &prefix = prefix_;\n\n        const QString order_name = QString(\"%1Order\").arg(prefix);\n        std::vector<uint16_t> order;\n        std::unordered_set<unsigned long> ordered_entry;\n\n        process_entry(\n            order_name, EFIBoot::get_list_variable<uint16_t>,\n            [&](const std::vector<uint16_t> &value, const auto &)\n            {\n                order = value;\n                for(const auto &index: order)\n                    ordered_entry.insert(index);\n            },\n            save_error,\n            true);\n\n        // Add entries not in BootOrder at the end\n        for(const auto &[tname, guid]: name_to_guid)\n        {\n            Q_UNUSED(guid)\n            if(!is_listentry(tname, QStringToStdTString(prefix)))\n                continue;\n\n            const auto index = static_cast<uint16_t>(std::stoul(tname.substr(static_cast<size_t>(prefix.size())), nullptr, HEX_BASE));\n            if(ordered_entry.count(index))\n                continue;\n\n            order.push_back(index);\n            ordered_entry.insert(index);\n        }\n\n        model.clear();\n        for(const auto &index: order)\n        {\n            const auto qname = toHex(index, 4, prefix);\n\n            process_entry(\n                qname, EFIBoot::get_variable<EFIBoot::Load_option>,\n                [&](const EFIBoot::Load_option &value, const uint32_t &attributes)\n                {\n                    // Translate STL to QTL\n                    auto entry = BootEntry::fromEFIBootLoadOption(value);\n                    entry.index = index;\n                    entry.efi_attributes = attributes;\n                    if(model.options & BootEntryListModel::Option::IsBoot)\n                    {\n                        entry.is_current_boot = current_boot == static_cast<int>(index);\n                        entry.is_next_boot = next_boot == static_cast<int>(index);\n                    }\n                    model.appendRow(entry);\n                },\n                [&](const QString &error)\n                {\n                    errors.push_back(error);\n                    auto entry = BootEntry::fromError(error);\n                    entry.index = index;\n                    if(model.options & BootEntryListModel::Option::IsBoot)\n                    {\n                        entry.is_current_boot = current_boot == static_cast<int>(index);\n                        entry.is_next_boot = next_boot == static_cast<int>(index);\n                    }\n                    model.appendRow(entry);\n                });\n        }\n    }\n\n    // Load Hot Keys\n    for(const auto &[tname, guid]: name_to_guid)\n    {\n        (void)guid;\n        if(!is_listentry(tname, _T(\"Key\")))\n            continue;\n\n        const auto index = static_cast<uint16_t>(std::stoul(tname.substr(3), nullptr, HEX_BASE));\n        process_entry(\n            toHex(index, 4, \"Key\"), EFIBoot::get_variable<EFIBoot::Key_option>,\n            [&](const EFIBoot::Key_option &value, const uint32_t &attributes)\n            {\n                auto entry = HotKey::fromEFIBootKeyOption(value);\n                entry.index = index;\n                entry.efi_attributes = attributes;\n                hot_keys_list_model.appendRow(entry);\n            },\n            [&](const QString &error)\n            {\n                errors.push_back(error);\n                auto entry = HotKey::fromError(error);\n                entry.index = index;\n                hot_keys_list_model.appendRow(entry);\n            });\n    }\n\n    // Apple\n    Q_EMIT progress(step++, total_steps, tr(\"Processing EFI Boot Manager entries (%1)…\").arg(\"Apple/boot-args\"));\n    if(const auto boot_args = EFIBoot::get_variable<std::string>(EFIBoot::efi_guid_apple, _T(\"boot-args\")); boot_args)\n    {\n        const auto &[value, attributes] = *boot_args;\n        Q_UNUSED(attributes)\n        setAppleBootArgs(QString::fromStdString(value));\n    }\n\n    if(!errors.isEmpty())\n        Q_EMIT error(tr(\"Error loading entries\"), tr(\"Failed to load some EFI Boot Manager entries:\\n\\n  - %1\").arg(errors.join(\"\\n  - \")));\n\n    Q_EMIT done();\n}\n\nvoid EFIBootData::save()\n{\n    Q_EMIT progress(0, 1, tr(\"Saving EFI Boot Manager entries…\"));\n    int32_t next_boot = -1;\n\n    auto variables = EFIBoot::get_variables(\n        [&](const EFIBoot::efi_guid_t &guid, const tstring_view tname)\n        {\n            if(guid != EFIBoot::efi_guid_global)\n                return false;\n\n            for(const auto &[prefix, model]: BOOT_ENTRIES)\n            {\n                if(model.options & BootEntryListModel::Option::ReadOnly)\n                    continue;\n\n                if(is_listentry(tname, QStringToStdTString(prefix)))\n                    return true;\n            }\n\n            if(is_listentry(tname, _T(\"Key\")))\n                return true;\n\n            return false;\n        },\n        [&, this](size_t step, size_t total)\n        {\n            Q_EMIT progress(step, total + 1u, tr(\"Searching old EFI Boot Manager entries…\"));\n        });\n\n    if(!variables)\n    {\n        Q_EMIT error(tr(\"Couldn't load EFI Boot Manager variables\"), QStringFromStdTString(EFIBoot::get_error_trace()));\n        return;\n    }\n\n    auto old_entries = *variables;\n    size_t step = 1;\n    size_t total_steps = 4u // remember to update when adding static vars\n        + static_cast<size_t>(boot_entries_list_model.getEntries().size())\n        + static_cast<size_t>(driver_entries_list_model.getEntries().size())\n        + static_cast<size_t>(sysprep_entries_list_model.getEntries().size())\n        + static_cast<size_t>(hot_keys_list_model.getEntries().size())\n        + 3u\n        + old_entries.size()\n        + 1u;\n\n    std::unordered_map<uint16_t, uint32_t> boot_option_crc32;\n\n    // Save entries\n    for(const auto &[prefix, model]: BOOT_ENTRIES)\n    {\n        if(model.options & BootEntryListModel::Option::ReadOnly)\n            continue;\n\n        const QString order_name = QString(\"%1Order\").arg(prefix);\n        std::vector<uint16_t> order;\n        QSet<uint16_t> saved;\n        for(const auto &entry: model.getEntries())\n        {\n            const auto qname = toHex(entry.index, 4, prefix);\n            if(saved.contains(entry.index))\n            {\n                Q_EMIT error(tr(\"Error saving entries\"), tr(\"Entry %1(%2): duplicated index!\").arg(qname, entry.description));\n                return;\n            }\n\n            saved.insert(entry.index);\n            Q_EMIT progress(step++, total_steps, tr(\"Saving EFI Boot Manager entries (%1)…\").arg(qname));\n            if((entry.attributes & EFIBoot::Load_option_attribute::CATEGORY_MASK) == EFIBoot::Load_option_attribute::CATEGORY_BOOT)\n                order.push_back(entry.index);\n\n            const tstring tname = QStringToStdTString(qname);\n            if(auto _entry = old_entries.find(tname); _entry != old_entries.end())\n                old_entries.erase(_entry);\n\n            if(entry.is_error)\n                continue;\n\n            const auto load_option = entry.toEFIBootLoadOption();\n            uint32_t crc = 0;\n            if(!EFIBoot::set_variable_ex(EFIBoot::efi_guid_global, tname, EFIBoot::Variable<EFIBoot::Load_option>{load_option, entry.efi_attributes}, EFIBoot::EFI_VARIABLE_MODE_DEFAULTS, crc))\n            {\n                Q_EMIT error(tr(\"Error saving %1\").arg(qname), QStringFromStdTString(EFIBoot::get_error_trace()));\n                return;\n            }\n\n            if(model.options & BootEntryListModel::Option::IsBoot)\n            {\n                boot_option_crc32[entry.index] = crc;\n                if(entry.is_next_boot)\n                    next_boot = entry.index;\n            }\n        }\n\n        // Save order\n        if(order.empty())\n        {\n            Q_EMIT progress(step++, total_steps, tr(\"Removing EFI Boot Manager entries (%1)…\").arg(order_name));\n            if(EFIBoot::get_variable(EFIBoot::efi_guid_global, QStringToStdTString(order_name)) && !EFIBoot::del_variable(EFIBoot::efi_guid_global, QStringToStdTString(order_name)))\n            {\n                Q_EMIT error(tr(\"Error removing %1\").arg(order_name), QStringFromStdTString(EFIBoot::get_error_trace()));\n                return;\n            }\n\n            // EFIBoot::get_variable above might've thrown an error, we don't care about it\n            EFIBoot::error_clear();\n        }\n        else\n        {\n            Q_EMIT progress(step++, total_steps, tr(\"Saving EFI Boot Manager entries (%1)…\").arg(order_name));\n            if(!EFIBoot::set_list_variable(EFIBoot::efi_guid_global, QStringToStdTString(order_name), EFIBoot::Variable<std::vector<uint16_t>>{order, EFIBoot::EFI_VARIABLE_ATTRIBUTE_DEFAULTS}, EFIBoot::EFI_VARIABLE_MODE_DEFAULTS))\n            {\n                Q_EMIT error(tr(\"Error saving %1\").arg(order_name), QStringFromStdTString(EFIBoot::get_error_trace()));\n                return;\n            }\n        }\n    }\n\n    // Save Hot Keys\n    if(boot_option_support & EFIBoot::EFI_BOOT_OPTION_SUPPORT_KEY)\n    {\n        uint16_t free_index = 0;\n        QSet<uint16_t> used;\n        for(const auto &entry: hot_keys_list_model.getEntries())\n            if(entry.index >= 0)\n                used.insert(static_cast<uint16_t>(entry.index));\n\n        for(const auto &entry: hot_keys_list_model.getEntries())\n        {\n            int index = entry.index;\n            if(index < 0)\n            {\n                // new entry, find free index\n                while(used.remove(free_index))\n                    ++free_index;\n\n                index = free_index++;\n            }\n\n            const auto qname = toHex(static_cast<unsigned long long>(index), 4, \"Key\");\n            Q_EMIT progress(step++, total_steps, tr(\"Saving EFI Boot Manager entries (%1)…\").arg(qname));\n            const tstring tname = QStringToStdTString(qname);\n            if(auto _entry = old_entries.find(tname); _entry != old_entries.end())\n                old_entries.erase(_entry);\n\n            if(entry.is_error)\n                continue;\n\n            const auto key_option = entry.toEFIBootKeyOption(boot_option_crc32);\n            if(!EFIBoot::set_variable(EFIBoot::efi_guid_global, tname, EFIBoot::Variable<EFIBoot::Key_option>{key_option, entry.efi_attributes}, EFIBoot::EFI_VARIABLE_MODE_DEFAULTS))\n            {\n                Q_EMIT error(tr(\"Error saving %1\").arg(qname), QStringFromStdTString(EFIBoot::get_error_trace()));\n                return;\n            }\n        }\n    }\n\n    // Remove old entries\n    for(const auto &[tname, guid]: old_entries)\n    {\n        Q_EMIT progress(step++, total_steps, tr(\"Removing old EFI Boot Manager entries (%1)…\").arg(QStringFromStdTString(tname)));\n        if(!EFIBoot::del_variable(guid, tname))\n        {\n            Q_EMIT error(tr(\"Error removing %1\").arg(QStringFromStdTString(tname)), QStringFromStdTString(EFIBoot::get_error_trace()));\n            return;\n        }\n    }\n\n    // Save next boot\n    Q_EMIT progress(step++, total_steps, tr(\"Saving EFI Boot Manager entries (%1)…\").arg(\"BootNext\"));\n    if(next_boot != -1 && !EFIBoot::set_variable(EFIBoot::efi_guid_global, _T(\"BootNext\"), EFIBoot::Variable<uint16_t>{static_cast<uint16_t>(next_boot), EFIBoot::EFI_VARIABLE_ATTRIBUTE_DEFAULTS}, EFIBoot::EFI_VARIABLE_MODE_DEFAULTS))\n    {\n        Q_EMIT error(tr(\"Error saving %1\").arg(\"BootNext\"), QStringFromStdTString(EFIBoot::get_error_trace()));\n        return;\n    }\n\n    // Save timeout\n    Q_EMIT progress(step++, total_steps, tr(\"Saving EFI Boot Manager entries (%1)…\").arg(\"Timeout\"));\n    if(!EFIBoot::set_variable(EFIBoot::efi_guid_global, _T(\"Timeout\"), EFIBoot::Variable<uint16_t>{timeout, EFIBoot::EFI_VARIABLE_ATTRIBUTE_DEFAULTS}, EFIBoot::EFI_VARIABLE_MODE_DEFAULTS))\n    {\n        Q_EMIT error(tr(\"Error saving %1\").arg(\"Timeout\"), QStringFromStdTString(EFIBoot::get_error_trace()));\n        return;\n    }\n\n    Q_EMIT progress(step++, total_steps, tr(\"Saving EFI Boot Manager entries (%1)…\").arg(\"OsIndications\"));\n    if(!EFIBoot::set_variable(EFIBoot::efi_guid_global, _T(\"OsIndications\"), EFIBoot::Variable<uint64_t>{indications, EFIBoot::EFI_VARIABLE_ATTRIBUTE_DEFAULTS}, EFIBoot::EFI_VARIABLE_MODE_DEFAULTS))\n    {\n        Q_EMIT error(tr(\"Error saving %1\").arg(\"OsIndications\"), QStringFromStdTString(EFIBoot::get_error_trace()));\n        return;\n    }\n\n    // Apple\n    if(apple_boot_args.isEmpty())\n    {\n        Q_EMIT progress(step++, total_steps, tr(\"Removing EFI Boot Manager entries (%1)…\").arg(\"Apple/boot-args\"));\n        if(EFIBoot::get_variable(EFIBoot::efi_guid_apple, _T(\"boot-args\")) && !EFIBoot::del_variable(EFIBoot::efi_guid_apple, _T(\"boot-args\")))\n        {\n            Q_EMIT error(tr(\"Error removing %1\").arg(\"Apple/boot-args\"), QStringFromStdTString(EFIBoot::get_error_trace()));\n            return;\n        }\n\n        // EFIBoot::get_variable above might've thrown an error, we don't care about it\n        EFIBoot::error_clear();\n    }\n    else\n    {\n        Q_EMIT progress(step++, total_steps, tr(\"Saving EFI Boot Manager entries (%1)…\").arg(\"Apple/boot-args\"));\n        if(!EFIBoot::set_variable(EFIBoot::efi_guid_apple, _T(\"boot-args\"), EFIBoot::Variable<std::string>{apple_boot_args.toStdString(), EFIBoot::EFI_VARIABLE_ATTRIBUTE_DEFAULTS}, EFIBoot::EFI_VARIABLE_MODE_DEFAULTS))\n        {\n            Q_EMIT error(tr(\"Error saving %1\").arg(\"Apple/boot-args\"), QStringFromStdTString(EFIBoot::get_error_trace()));\n            return;\n        }\n    }\n\n    if(undo_stack)\n        undo_stack->clear();\n\n    Q_EMIT done();\n}\n\nvoid EFIBootData::import_(const QString &file_name)\n{\n    Q_EMIT progress(0, 1, tr(\"Importing boot configuration…\"));\n    QFile import_file(file_name);\n    if(!import_file.open(QIODevice::ReadOnly))\n    {\n        Q_EMIT error(tr(\"Error importing boot configuration\"), tr(\"Couldn't open selected file (%1).\").arg(file_name));\n        return;\n    }\n\n    QJsonParseError json_error{};\n    QJsonDocument json_document = QJsonDocument::fromJson(import_file.readAll(), &json_error);\n    import_file.close();\n    if(json_document.isNull())\n    {\n        Q_EMIT error(tr(\"Error importing boot configuration\"), tr(\"Parser failed: %1\").arg(json_error.errorString()));\n        return;\n    }\n\n    const auto input = json_document.object();\n    if(input.contains(\"_Type\"))\n    {\n        const auto type = input[\"_Type\"].toString();\n        if(type == \"raw\")\n            return importRawEFIData(input);\n\n        if(type == \"export\")\n            return importJSONEFIData(input);\n\n        Q_EMIT error(tr(\"Error importing boot configuration\"), tr(\"Invalid _Type: %1\").arg(input[\"_Type\"].toString()));\n        return;\n    }\n\n    return importJSONEFIData(input);\n}\n\nvoid EFIBootData::export_(const QString &file_name)\n{\n    Q_EMIT progress(0, 1, tr(\"Exporting boot configuration…\"));\n    QFile export_file(file_name);\n    if(!export_file.open(QIODevice::WriteOnly))\n    {\n        Q_EMIT error(tr(\"Error exporting boot configuration\"), tr(\"Couldn't open selected file (%1): %2.\").arg(file_name, export_file.errorString()));\n        return;\n    }\n\n    int current_boot = -1;\n    int next_boot = -1;\n    QJsonObject output;\n    size_t step = 1;\n    size_t total_steps = 11u // remember to update when adding static vars\n        + static_cast<size_t>(boot_entries_list_model.getEntries().size())\n        + static_cast<size_t>(driver_entries_list_model.getEntries().size())\n        + static_cast<size_t>(sysprep_entries_list_model.getEntries().size())\n        + static_cast<size_t>(platform_recovery_entries_list_model.getEntries().size())\n        + static_cast<size_t>(hot_keys_list_model.getEntries().size())\n        + 8u + 1u;\n\n    auto progress_fn = [this, &step, &total_steps](const QString &name)\n    {\n        Q_EMIT progress(step++, total_steps, tr(\"Exporting EFI Boot Manager entries (%1)…\").arg(name));\n    };\n\n    progress_fn(\"Timeout\");\n    output[\"Timeout\"] = timeout;\n\n    progress_fn(\"SecureBoot\");\n    output[\"SecureBoot\"] = secure_boot != 0;\n\n    progress_fn(\"VendorKeys\");\n    output[\"VendorKeys\"] = vendor_keys != 0;\n\n    progress_fn(\"SetupMode\");\n    output[\"SetupMode\"] = setup_mode != 0;\n\n    progress_fn(\"AuditMode\");\n    output[\"AuditMode\"] = audit_mode != 0;\n\n    progress_fn(\"DeployedMode\");\n    output[\"DeployedMode\"] = deployed_mode != 0;\n\n    if(boot_option_support)\n    {\n        QJsonObject obj;\n        QJsonArray caps;\n\n        if(boot_option_support & EFIBoot::EFI_BOOT_OPTION_SUPPORT_KEY)\n            caps.push_back(\"KEY\");\n\n        if(boot_option_support & EFIBoot::EFI_BOOT_OPTION_SUPPORT_APP)\n            caps.push_back(\"APP\");\n\n        if(boot_option_support & EFIBoot::EFI_BOOT_OPTION_SUPPORT_SYSPREP)\n            caps.push_back(\"SYSPREP\");\n\n        obj[\"capabilities\"] = caps;\n        obj[\"key_count\"] = static_cast<int>((boot_option_support & EFIBoot::EFI_BOOT_OPTION_SUPPORT_COUNT) >> 8);\n        output[\"BootOptionSupport\"] = obj;\n    }\n\n    {\n        QJsonArray arr;\n        if(supported_indications & EFIBoot::EFI_OS_INDICATIONS_BOOT_TO_FW_UI)\n            arr.push_back(\"BOOT_TO_FW_UI\");\n\n        if(supported_indications & EFIBoot::EFI_OS_INDICATIONS_TIMESTAMP_REVOCATION)\n            arr.push_back(\"TIMESTAMP_REVOCATION\");\n\n        if(supported_indications & EFIBoot::EFI_OS_INDICATIONS_FILE_CAPSULE_DELIVERY_SUPPORTED)\n            arr.push_back(\"FILE_CAPSULE_DELIVERY_SUPPORTED\");\n\n        if(supported_indications & EFIBoot::EFI_OS_INDICATIONS_FMP_CAPSULE_SUPPORTED)\n            arr.push_back(\"FMP_CAPSULE_SUPPORTED\");\n\n        if(supported_indications & EFIBoot::EFI_OS_INDICATIONS_CAPSULE_RESULT_VAR_SUPPORTED)\n            arr.push_back(\"CAPSULE_RESULT_VAR_SUPPORTED\");\n\n        if(supported_indications & EFIBoot::EFI_OS_INDICATIONS_START_OS_RECOVERY)\n            arr.push_back(\"START_OS_RECOVERY\");\n\n        if(supported_indications & EFIBoot::EFI_OS_INDICATIONS_START_PLATFORM_RECOVERY)\n            arr.push_back(\"START_PLATFORM_RECOVERY\");\n\n        if(supported_indications & EFIBoot::EFI_OS_INDICATIONS_JSON_CONFIG_DATA_REFRESH)\n            arr.push_back(\"JSON_CONFIG_DATA_REFRESH\");\n\n        progress_fn(\"OsIndicationsSupported\");\n        if(!arr.isEmpty())\n            output[\"OsIndicationsSupported\"] = arr;\n    }\n\n    {\n        QJsonArray arr;\n        if(indications & EFIBoot::EFI_OS_INDICATIONS_BOOT_TO_FW_UI)\n            arr.push_back(\"BOOT_TO_FW_UI\");\n\n        if(indications & EFIBoot::EFI_OS_INDICATIONS_START_OS_RECOVERY)\n            arr.push_back(\"START_OS_RECOVERY\");\n\n        if(indications & EFIBoot::EFI_OS_INDICATIONS_START_PLATFORM_RECOVERY)\n            arr.push_back(\"START_PLATFORM_RECOVERY\");\n\n        if(indications & EFIBoot::EFI_OS_INDICATIONS_JSON_CONFIG_DATA_REFRESH)\n            arr.push_back(\"JSON_CONFIG_DATA_REFRESH\");\n\n        progress_fn(\"OsIndications\");\n        if(!arr.isEmpty())\n            output[\"OsIndications\"] = arr;\n    }\n\n    for(const auto &[prefix, model]: BOOT_ENTRIES)\n    {\n        const QString order_name = QString(\"%1Order\").arg(prefix);\n\n        QJsonArray order;\n        QJsonObject entries;\n        QSet<uint16_t> saved;\n        for(const auto &entry: model.getEntries())\n        {\n            const auto name = toHex(entry.index, 4, \"\");\n            const auto full_name = QString(\"%1%2\").arg(prefix, name);\n            if(saved.contains(entry.index))\n            {\n                Q_EMIT error(tr(\"Error saving entries\"), tr(\"Entry %1(%2): duplicated index!\").arg(full_name, entry.description));\n                return;\n            }\n\n            progress_fn(full_name);\n            saved.insert(entry.index);\n            if((entry.attributes & EFIBoot::Load_option_attribute::CATEGORY_MASK) == EFIBoot::Load_option_attribute::CATEGORY_BOOT)\n            {\n                order.push_back(entry.index);\n                if(model.options & BootEntryListModel::Option::IsBoot)\n                {\n                    if(entry.is_current_boot)\n                        current_boot = entry.index;\n\n                    if(entry.is_next_boot)\n                        next_boot = entry.index;\n                }\n            }\n\n            if(!entry.is_error)\n                entries[name] = entry.toJSON();\n        }\n\n        progress_fn(order_name);\n        if(!order.isEmpty())\n            output[order_name] = order;\n\n        progress_fn(prefix);\n        if(!entries.isEmpty())\n            output[prefix] = entries;\n    }\n\n    progress_fn(\"BootCurrent\");\n    if(current_boot != -1)\n        output[\"BootCurrent\"] = current_boot;\n\n    progress_fn(\"BootNext\");\n    if(next_boot != -1)\n        output[\"BootNext\"] = next_boot;\n\n    // Hot Keys\n    {\n        unsigned long long idx = 0;\n        QJsonObject entries;\n        for(const auto &entry: hot_keys_list_model.getEntries())\n        {\n            const auto name = toHex(idx++, 4, \"\");\n            const auto full_name = QString(\"Key%2\").arg(name);\n            progress_fn(full_name);\n            if(!entry.is_error)\n                entries[name] = entry.toJSON();\n        }\n\n        progress_fn(\"Key\");\n        if(!entries.isEmpty())\n            output[\"Key\"] = entries;\n    }\n\n    // Apple\n    progress_fn(\"Apple/boot-args\");\n    if(!apple_boot_args.isEmpty())\n    {\n        QJsonObject apple;\n        apple[\"boot-args\"] = apple_boot_args;\n        output[\"Apple\"] = apple;\n    }\n\n    if(QJsonDocument json_document(output); !export_file.write(json_document.toJson()))\n    {\n        Q_EMIT error(tr(\"Error exporting boot configuration\"), tr(\"Couldn't write into file (%1): %2.\").arg(file_name, export_file.errorString()));\n        return;\n    }\n\n    export_file.close();\n\n    Q_EMIT done();\n}\n\nvoid EFIBootData::dump(const QString &file_name)\n{\n    Q_EMIT progress(0, 1, tr(\"Exporting boot configuration…\"));\n    QFile dump_file(file_name);\n    if(!dump_file.open(QIODevice::WriteOnly))\n    {\n        Q_EMIT error(tr(\"Error dumping raw EFI data\"), tr(\"Couldn't open selected file (%1).\").arg(file_name));\n        return;\n    }\n\n    QJsonObject output;\n    output[\"_Type\"] = \"raw\";\n    const auto variables = EFIBoot::get_variables(\n        [](const EFIBoot::efi_guid_t &guid, const tstring_view)\n        {\n            return guid == EFIBoot::efi_guid_global;\n        },\n        [&, this](size_t step, size_t total)\n        {\n            Q_EMIT progress(step, total + 1u, tr(\"Searching EFI Boot Manager entries…\"));\n        });\n\n    if(!variables)\n    {\n        Q_EMIT error(tr(\"Couldn't load EFI Boot Manager variables\"), QStringFromStdTString(EFIBoot::get_error_trace()));\n        return;\n    }\n\n    const auto &name_to_guid = *variables;\n    QStringList errors;\n    if(name_to_guid.empty())\n        errors.push_back(tr(\"Couldn't find any EFI Boot Manager variables\"));\n\n    size_t step = 1;\n    const size_t total_steps = name_to_guid.size() + 1u;\n    auto process_entry = [this, &step, &total_steps, &name_to_guid, &errors](QJsonObject &root, const QString &key, tstring tname = _T(\"\"), bool optional = false)\n    {\n        if(tname.empty())\n            tname = QStringToStdTString(key);\n\n        const auto qname = QStringFromStdTString(tname);\n        Q_EMIT progress(step++, total_steps, tr(\"Exporting EFI Boot Manager entries (%1)…\").arg(qname));\n        if(!name_to_guid.count(tname))\n        {\n            if(!optional)\n                errors.push_back(tr(\"%1: not found\").arg(qname));\n\n            return;\n        }\n\n        const auto variable = EFIBoot::get_variable<EFIBoot::Raw_data>(name_to_guid.at(tname), tname);\n        if(!variable)\n        {\n            errors.push_back(tr(\"%1: failed deserialization\").arg(qname));\n            return;\n        }\n\n        const auto &[value, attributes] = *variable;\n        QJsonObject obj;\n        obj[\"raw_data\"] = QString(QByteArray::fromRawData(reinterpret_cast<const char *>(value.data()), static_cast<int>(value.size())).toBase64());\n        obj[\"efi_attributes\"] = static_cast<int>(attributes);\n        root[key] = obj;\n    };\n\n    for(const auto &key: std::vector<const char *>{\"Timeout\", \"BootCurrent\", \"BootNext\", \"SecureBoot\", \"VendorKeys\", \"SetupMode\", \"AuditMode\", \"DeployedMode\", \"BootOptionSupport\", \"OsIndicationsSupported\", \"OsIndications\"})\n        process_entry(output, key, _T(\"\"), true);\n\n    for(const auto &[prefix, model]: BOOT_ENTRIES)\n    {\n        Q_UNUSED(model)\n        const QString order_name = QString(\"%1Order\").arg(prefix);\n\n        process_entry(output, order_name, _T(\"\"), true);\n\n        QJsonObject entries;\n        for(const auto &[tname_, guid]: name_to_guid)\n        {\n            Q_UNUSED(guid)\n            if(!is_listentry(tname_, QStringToStdTString(prefix)))\n                continue;\n\n            const auto suffix = tname_.substr(static_cast<size_t>(prefix.size()));\n            process_entry(entries, QStringFromStdTString(suffix), tname_);\n        }\n\n        if(!entries.isEmpty())\n            output[prefix] = entries;\n    }\n\n    // Hot Keys\n    {\n        QJsonObject entries;\n        for(const auto &[tname_, guid]: name_to_guid)\n        {\n            (void)guid;\n            if(!is_listentry(tname_, _T(\"Key\")))\n                continue;\n\n            const auto suffix = tname_.substr(3);\n            process_entry(entries, QStringFromStdTString(suffix), tname_);\n        }\n\n        if(!entries.isEmpty())\n            output[\"Key\"] = entries;\n    }\n\n    // Apple\n    Q_EMIT progress(step++, total_steps, tr(\"Exporting EFI Boot Manager entries (%1)…\").arg(\"Apple/boot-args\"));\n    if(const auto boot_args = EFIBoot::get_variable<EFIBoot::Raw_data>(EFIBoot::efi_guid_apple, _T(\"boot-args\")); boot_args)\n    {\n        QJsonObject apple;\n        const auto &[value, attributes] = *boot_args;\n        QJsonObject obj;\n        obj[\"raw_data\"] = QString(QByteArray::fromRawData(reinterpret_cast<const char *>(value.data()), static_cast<int>(value.size())).toBase64());\n        obj[\"efi_attributes\"] = static_cast<int>(attributes);\n        apple[\"boot-args\"] = obj;\n        output[\"Apple\"] = apple;\n    }\n\n    if(QJsonDocument json_document(output); !dump_file.write(json_document.toJson()))\n    {\n        Q_EMIT error(tr(\"Error dumping raw EFI data\"), tr(\"Couldn't write into file (%1): %2.\").arg(file_name, dump_file.errorString()));\n        return;\n    }\n\n    dump_file.close();\n    if(!errors.isEmpty())\n        Q_EMIT error(tr(\"Error dumping raw EFI data\"), tr(\"Failed to dump some EFI Boot Manager entries:\\n\\n  - %1\").arg(errors.join(\"\\n  - \")));\n\n    Q_EMIT done();\n}\n\nvoid EFIBootData::setTimeout(uint16_t value)\n{\n    if(timeout == value)\n        return;\n\n    auto command = new SetEFIBootDataValueCommand{*this, tr(\"Timeout\"), &EFIBootData::timeout, &EFIBootData::timeoutChanged, value};\n    if(!undo_stack)\n    {\n        command->redo();\n        delete command;\n        return;\n    }\n\n    undo_stack->push(command);\n}\n\nvoid EFIBootData::setAppleBootArgs(const QString &text)\n{\n    if(apple_boot_args == text)\n        return;\n\n    auto command = new SetEFIBootDataValueCommand{*this, tr(\"Apple boot-args\"), &EFIBootData::apple_boot_args, &EFIBootData::appleBootArgsChanged, text};\n    if(!undo_stack)\n    {\n        command->redo();\n        delete command;\n        return;\n    }\n\n    undo_stack->push(command);\n}\n\nvoid EFIBootData::setOsIndications(uint64_t value)\n{\n    if(indications == value)\n        return;\n\n    auto command = new SetEFIBootDataValueCommand{*this, tr(\"Firmware actions\"), &EFIBootData::indications, &EFIBootData::osIndicationsChanged, value};\n    if(!undo_stack)\n    {\n        command->redo();\n        delete command;\n        return;\n    }\n\n    undo_stack->push(command);\n}\n\nvoid EFIBootData::setSecureBoot(bool enabled)\n{\n    if(secure_boot == enabled)\n        return;\n\n    secure_boot = enabled;\n    Q_EMIT secureBootChanged(secure_boot);\n}\n\nvoid EFIBootData::setVendorKeys(bool enabled)\n{\n    if(vendor_keys == enabled)\n        return;\n\n    vendor_keys = enabled;\n    Q_EMIT vendorKeysChanged(vendor_keys);\n}\n\nvoid EFIBootData::setSetupMode(bool enabled)\n{\n    if(setup_mode == enabled)\n        return;\n\n    setup_mode = enabled;\n    Q_EMIT setupModeChanged(setup_mode);\n}\n\nvoid EFIBootData::setAuditMode(bool enabled)\n{\n    if(audit_mode == enabled)\n        return;\n\n    audit_mode = enabled;\n    Q_EMIT auditModeChanged(audit_mode);\n}\n\nvoid EFIBootData::setDeployedMode(bool enabled)\n{\n    if(deployed_mode == enabled)\n        return;\n\n    deployed_mode = enabled;\n    Q_EMIT deployedModeChanged(deployed_mode);\n}\n\nvoid EFIBootData::setBootOptionSupport(uint32_t flags)\n{\n    if(boot_option_support == flags)\n        return;\n\n    boot_option_support = flags;\n    Q_EMIT bootOptionSupportChanged(boot_option_support);\n}\n\nvoid EFIBootData::setOsIndicationsSupported(uint64_t value)\n{\n    if(supported_indications == value)\n        return;\n\n    supported_indications = value;\n    Q_EMIT osIndicationsSupportedChanged(supported_indications);\n}\n\nvoid EFIBootData::importJSONEFIData(const QJsonObject &input)\n{\n    Q_EMIT progress(0, 1, tr(\"Importing boot configuration from JSON…\"));\n    int32_t current_boot = -1;\n    int32_t next_boot = -1;\n    QStringList errors;\n\n    size_t step = 1;\n    auto total_steps = static_cast<size_t>(input.size()) + 1u;\n\n    auto process_entry = [this, &step, &total_steps, &errors](const QJsonObject &root, const auto &name, const auto &type_fn, const QString &type_name, const auto &process_fn, const QString &name_prefix = \"\", bool optional = false)\n    {\n        const auto full_name = name_prefix + name;\n        if(!root.contains(name))\n        {\n            if(!optional)\n                errors.push_back(tr(\"%1: not found\").arg(full_name));\n\n            return;\n        }\n\n        Q_EMIT progress(step++, total_steps, tr(\"Importing EFI Boot Manager entries (%1)…\").arg(full_name));\n        if(!(root[name].*type_fn)())\n        {\n            errors.push_back(tr(\"%1: %2 expected\").arg(full_name).arg(type_name));\n            return;\n        }\n\n        process_fn(root[name]);\n    };\n\n    process_entry(\n        input, \"Timeout\", &QJsonValue::isDouble, tr(\"number\"), [&](const QJsonValue &value)\n        { setTimeout(static_cast<uint16_t>(value.toInt())); },\n        \"\", true);\n\n    process_entry(\n        input, \"BootCurrent\", &QJsonValue::isDouble, tr(\"number\"), [&](const QJsonValue &value)\n        { current_boot = static_cast<int32_t>(value.toInt()); },\n        \"\", true);\n\n    process_entry(\n        input, \"BootNext\", &QJsonValue::isDouble, tr(\"number\"), [&](const QJsonValue &value)\n        { next_boot = static_cast<int32_t>(value.toInt()); },\n        \"\", true);\n\n    process_entry(\n        input, \"SecureBoot\", &QJsonValue::isBool, tr(\"bool\"), [&](const QJsonValue &value)\n        { setSecureBoot(value.toBool()); },\n        \"\", true);\n\n    process_entry(\n        input, \"VendorKeys\", &QJsonValue::isBool, tr(\"bool\"), [&](const QJsonValue &value)\n        { setVendorKeys(value.toBool()); },\n        \"\", true);\n\n    process_entry(\n        input, \"SetupMode\", &QJsonValue::isBool, tr(\"bool\"), [&](const QJsonValue &value)\n        { setSetupMode(value.toBool()); },\n        \"\", true);\n\n    process_entry(\n        input, \"AuditMode\", &QJsonValue::isBool, tr(\"bool\"), [&](const QJsonValue &value)\n        { setAuditMode(value.toBool()); },\n        \"\", true);\n\n    process_entry(\n        input, \"DeployedMode\", &QJsonValue::isBool, tr(\"bool\"), [&](const QJsonValue &value)\n        { setDeployedMode(value.toBool()); },\n        \"\", true);\n\n    process_entry(\n        input, \"BootOptionSupport\", &QJsonValue::isObject, tr(\"object\"), [&](const QJsonValue &value)\n        {\n            uint32_t val = 0;\n            const auto obj = value.toObject();\n            if(obj[\"capabilities\"].isArray())\n            {\n                const auto caps = obj[\"capabilities\"].toArray();\n                int i = -1;\n                for(const auto cap: caps)\n                {\n                    ++i;\n                    const auto qname = QString(\"BootOptionSupport/capabilities[%1]\").arg(i);\n                    if(!cap.isString())\n                    {\n                        errors.push_back(tr(\"%1: %2 expected\").arg(qname, tr(\"string\")));\n                        continue;\n                    }\n\n                    if(cap == \"KEY\")\n                        val |= EFIBoot::EFI_BOOT_OPTION_SUPPORT_KEY;\n                    else if(cap == \"APP\")\n                        val |= EFIBoot::EFI_BOOT_OPTION_SUPPORT_APP;\n                    else if(cap == \"SYSPREP\")\n                        val |= EFIBoot::EFI_BOOT_OPTION_SUPPORT_SYSPREP;\n                    else\n                    {\n                        errors.push_back(tr(\"%1: unknown boot manager capability\").arg(qname));\n                        continue;\n                    }\n                }\n            }\n\n            if(obj[\"key_count\"].isDouble())\n                val |= (static_cast<uint32_t>(obj[\"key_count\"].toInt()) << 8) & EFIBoot::EFI_BOOT_OPTION_SUPPORT_COUNT;\n\n            setBootOptionSupport(val); },\n        \"\", true);\n\n    process_entry(\n        input, \"OsIndicationsSupported\", &QJsonValue::isArray, tr(\"array\"),\n        [&](const QJsonValue &value)\n        {\n            uint64_t val = 0;\n            const auto arr = value.toArray();\n            int i = -1;\n            for(const auto indication: arr)\n            {\n                ++i;\n                const auto qname = QString(\"OsIndicationsSupported[%1]\").arg(i);\n                if(!indication.isString())\n                {\n                    errors.push_back(tr(\"%1: %2 expected\").arg(qname, tr(\"string\")));\n                    continue;\n                }\n\n                if(indication == \"BOOT_TO_FW_UI\")\n                    val |= EFIBoot::EFI_OS_INDICATIONS_BOOT_TO_FW_UI;\n                else if(indication == \"TIMESTAMP_REVOCATION\")\n                    val |= EFIBoot::EFI_OS_INDICATIONS_TIMESTAMP_REVOCATION;\n                else if(indication == \"FILE_CAPSULE_DELIVERY_SUPPORTED\")\n                    val |= EFIBoot::EFI_OS_INDICATIONS_FILE_CAPSULE_DELIVERY_SUPPORTED;\n                else if(indication == \"FMP_CAPSULE_SUPPORTED\")\n                    val |= EFIBoot::EFI_OS_INDICATIONS_FMP_CAPSULE_SUPPORTED;\n                else if(indication == \"CAPSULE_RESULT_VAR_SUPPORTED\")\n                    val |= EFIBoot::EFI_OS_INDICATIONS_CAPSULE_RESULT_VAR_SUPPORTED;\n                else if(indication == \"START_OS_RECOVERY\")\n                    val |= EFIBoot::EFI_OS_INDICATIONS_START_OS_RECOVERY;\n                else if(indication == \"START_PLATFORM_RECOVERY\")\n                    val |= EFIBoot::EFI_OS_INDICATIONS_START_PLATFORM_RECOVERY;\n                else if(indication == \"JSON_CONFIG_DATA_REFRESH\")\n                    val |= EFIBoot::EFI_OS_INDICATIONS_JSON_CONFIG_DATA_REFRESH;\n                else\n                {\n                    errors.push_back(tr(\"%1: unknown os indication\").arg(qname));\n                    continue;\n                }\n            }\n\n            setOsIndicationsSupported(val);\n        },\n        \"\", true);\n\n    process_entry(\n        input, \"OsIndications\", &QJsonValue::isArray, tr(\"array\"),\n        [&](const QJsonValue &value)\n        {\n            uint64_t val = 0;\n            const auto arr = value.toArray();\n            int i = -1;\n            for(const auto indication: arr)\n            {\n                ++i;\n                const auto qname = QString(\"OsIndications[%1]\").arg(i);\n                if(!indication.isString())\n                {\n                    errors.push_back(tr(\"%1: %2 expected\").arg(qname, tr(\"string\")));\n                    continue;\n                }\n\n                if(indication == \"BOOT_TO_FW_UI\")\n                    val |= EFIBoot::EFI_OS_INDICATIONS_BOOT_TO_FW_UI;\n                else if(indication == \"START_OS_RECOVERY\")\n                    val |= EFIBoot::EFI_OS_INDICATIONS_START_OS_RECOVERY;\n                else if(indication == \"START_PLATFORM_RECOVERY\")\n                    val |= EFIBoot::EFI_OS_INDICATIONS_START_PLATFORM_RECOVERY;\n                else if(indication == \"JSON_CONFIG_DATA_REFRESH\")\n                    val |= EFIBoot::EFI_OS_INDICATIONS_JSON_CONFIG_DATA_REFRESH;\n                else\n                {\n                    errors.push_back(tr(\"%1: unknown os indication\").arg(qname));\n                    continue;\n                }\n            }\n\n            setOsIndications(val);\n        },\n        \"\", true);\n\n    for(const auto &[prefix_, model_]: BOOT_ENTRIES)\n    {\n        // References to local bindings don't work in lambdas\n        auto &model = model_;\n        auto &prefix = prefix_;\n\n        const QString order_name = QString(\"%1Order\").arg(prefix);\n        std::vector<uint16_t> order;\n        std::unordered_set<uint16_t> ordered_entry;\n\n        process_entry(\n            input, order_name, &QJsonValue::isArray, tr(\"array\"),\n            [&](const QJsonValue &value)\n            {\n                int i = -1;\n                const auto boot_order = value.toArray();\n                for(const auto index: boot_order)\n                {\n                    ++i;\n                    if(!index.isDouble())\n                    {\n                        const auto qname = QString(\"%1[%2]\").arg(order_name, i);\n                        errors.push_back(tr(\"%1: %2 expected\").arg(qname, tr(\"number\")));\n                        continue;\n                    }\n\n                    const auto idx = static_cast<uint16_t>(index.toInt());\n                    order.push_back(idx);\n                    ordered_entry.insert(idx);\n                }\n            },\n            \"\", true);\n\n        process_entry(\n            input, prefix, &QJsonValue::isObject, tr(\"object\"),\n            [&](const QJsonValue &root)\n            {\n                const QString full_prefix = QString(\"%1/\").arg(prefix);\n                const auto entries = root.toObject();\n                total_steps += qMax(static_cast<size_t>(entries.size()), static_cast<size_t>(order.size()));\n                const auto keys = entries.keys();\n                for(const auto &name: keys)\n                {\n                    bool success = false;\n                    const auto index = static_cast<uint16_t>(name.toULong(&success, HEX_BASE));\n                    if(!success)\n                    {\n                        errors.push_back(tr(\"%1: %2 expected\").arg(full_prefix + name, tr(\"hexadecimal number\")));\n                        continue;\n                    }\n\n                    if(ordered_entry.count(index))\n                        continue;\n\n                    order.push_back(index);\n                    ordered_entry.insert(index);\n                }\n\n                model.clear();\n                for(const auto &index: order)\n                {\n                    const auto qname = toHex(index, 4, \"\");\n                    process_entry(\n                        entries, qname, &QJsonValue::isObject, tr(\"object\"),\n                        [&](const QJsonValue &value)\n                        {\n                            auto entry = BootEntry::fromJSON(value.toObject());\n                            if(!entry)\n                            {\n                                errors.push_back(tr(\"%1: failed parsing\").arg(full_prefix + qname));\n                                return;\n                            }\n\n                            entry->index = index;\n                            if(model.options & BootEntryListModel::Option::IsBoot)\n                            {\n                                entry->is_current_boot = current_boot == static_cast<int>(index);\n                                entry->is_next_boot = next_boot == static_cast<int>(index);\n                            }\n                            model.appendRow(*entry);\n                        },\n                        full_prefix);\n                }\n            },\n            \"\", order.empty());\n    }\n\n    // Hot Keys\n    process_entry(\n        input, \"Key\", &QJsonValue::isObject, tr(\"object\"),\n        [&](const QJsonValue &root)\n        {\n            const QString full_prefix = \"Key/\";\n            const auto entries = root.toObject();\n            total_steps += static_cast<size_t>(entries.size());\n            const auto keys = entries.keys();\n            hot_keys_list_model.clear();\n            for(const auto &qname: keys)\n            {\n                bool success = false;\n                const auto index = static_cast<uint16_t>(qname.toULong(&success, HEX_BASE));\n                if(!success)\n                {\n                    errors.push_back(tr(\"%1: %2 expected\").arg(full_prefix + qname, tr(\"hexadecimal number\")));\n                    continue;\n                }\n\n                process_entry(\n                    entries, qname, &QJsonValue::isObject, tr(\"object\"),\n                    [&](const QJsonValue &value)\n                    {\n                        auto entry = HotKey::fromJSON(value.toObject(), static_cast<int>((boot_option_support & EFIBoot::EFI_BOOT_OPTION_SUPPORT_COUNT) >> 8));\n                        if(!entry)\n                        {\n                            errors.push_back(tr(\"%1: failed parsing\").arg(full_prefix + qname));\n                            return;\n                        }\n\n                        entry->index = index;\n                        hot_keys_list_model.appendRow(*entry);\n                    },\n                    full_prefix);\n            }\n        },\n        \"\", true);\n\n    process_entry(\n        input, \"Apple\", &QJsonValue::isObject, tr(\"object\"),\n        [&](const QJsonValue &root)\n        {\n            const auto entries = root.toObject();\n            process_entry(\n                entries, \"boot-args\", &QJsonValue::isString, tr(\"string\"), [&](const QJsonValue &value)\n                { setAppleBootArgs(value.toString()); },\n                \"Apple\", true);\n        },\n        \"\", true);\n\n    if(!errors.isEmpty())\n        Q_EMIT error(tr(\"Error importing boot configuration\"), tr(\"Failed to import some EFI Boot Manager entries:\\n\\n  - %1\").arg(errors.join(\"\\n  - \")));\n\n    Q_EMIT done();\n}\n\nvoid EFIBootData::importRawEFIData(const QJsonObject &input)\n{\n    Q_EMIT progress(0, 1, tr(\"Importing boot configuration from raw dump…\"));\n    int32_t current_boot = -1;\n    int32_t next_boot = -1;\n    QStringList errors;\n\n    size_t step = 1;\n    auto total_steps = static_cast<size_t>(input.size()) + 1u;\n\n    auto process_entry = [this, &step, &total_steps, &errors](const QJsonObject &root, const auto &name, const auto &deserialize_fn, const auto &process_fn, const QString &name_prefix = \"\", bool optional = false)\n    {\n        const auto full_name = name_prefix + name;\n        if(!root.contains(name))\n        {\n            if(!optional)\n                errors.push_back(tr(\"%1: not found\").arg(full_name));\n\n            return;\n        }\n\n        Q_EMIT progress(step++, total_steps, tr(\"Importing EFI Boot Manager entries (%1)…\").arg(full_name));\n        if(!root[name].isObject())\n        {\n            errors.push_back(tr(\"%1: %2 expected\").arg(full_name, tr(\"object\")));\n            return;\n        }\n\n        const auto obj = root[name].toObject();\n        if(!obj[\"raw_data\"].isString() || !obj[\"efi_attributes\"].isDouble())\n        {\n            errors.push_back(tr(\"%1: %2 expected\").arg(full_name).arg(\n                //: Expected JSON structure, thrown as error description.\n                //: raw_data and efi_attributes are field names in JSON file\n                tr(\"object(raw_data: string, efi_attributes: number)\")));\n            return;\n        }\n\n        const auto raw_data = QByteArray::fromBase64(obj[\"raw_data\"].toString().toUtf8());\n        const auto value = deserialize_fn(raw_data.constData(), static_cast<size_t>(raw_data.size()));\n        if(!value)\n        {\n            errors.push_back(tr(\"%1: failed deserialization\").arg(full_name + \"/raw_data\"));\n            return;\n        }\n\n        process_fn(*value, static_cast<uint32_t>(obj[\"efi_attributes\"].toInt()));\n    };\n\n    process_entry(\n        input, \"Timeout\", EFIBoot::deserialize<uint16_t>, [&](const uint16_t &value, const auto &)\n        { setTimeout(value); },\n        \"\", true);\n\n    process_entry(\n        input, \"BootCurrent\", EFIBoot::deserialize<uint16_t>, [&](const uint16_t &value, const auto &)\n        { current_boot = value; },\n        \"\", true);\n\n    process_entry(\n        input, \"BootNext\", EFIBoot::deserialize<uint16_t>, [&](const uint16_t &value, const auto &)\n        { next_boot = value; },\n        \"\", true);\n\n    process_entry(\n        input, \"SecureBoot\", EFIBoot::deserialize<uint8_t>, [&](const uint8_t &value, const auto &)\n        { setSecureBoot(value); },\n        \"\", true);\n\n    process_entry(\n        input, \"VendorKeys\", EFIBoot::deserialize<uint8_t>, [&](const uint8_t &value, const auto &)\n        { setVendorKeys(value); },\n        \"\", true);\n\n    process_entry(\n        input, \"SetupMode\", EFIBoot::deserialize<uint8_t>, [&](const uint8_t &value, const auto &)\n        { setSetupMode(value); },\n        \"\", true);\n\n    process_entry(\n        input, \"AuditMode\", EFIBoot::deserialize<uint8_t>, [&](const uint8_t &value, const auto &)\n        { setAuditMode(value); },\n        \"\", true);\n\n    process_entry(\n        input, \"DeployedMode\", EFIBoot::deserialize<uint8_t>, [&](const uint8_t &value, const auto &)\n        { setDeployedMode(value); },\n        \"\", true);\n\n    process_entry(\n        input, \"BootOptionSupport\", EFIBoot::deserialize<uint32_t>, [&](const uint32_t &value, const auto &)\n        { setBootOptionSupport(value); },\n        \"\", true);\n\n    process_entry(\n        input, \"OsIndicationsSupported\", EFIBoot::deserialize<uint64_t>, [&](const uint64_t &value, const auto &)\n        { setOsIndicationsSupported(value); },\n        \"\", true);\n\n    process_entry(\n        input, \"OsIndications\", EFIBoot::deserialize<uint64_t>, [&](const uint64_t &value, const auto &)\n        { setOsIndications(value); },\n        \"\", true);\n\n    for(const auto &[prefix_, model_]: BOOT_ENTRIES)\n    {\n        // References to local bindings don't work in lambdas\n        auto &model = model_;\n        auto &prefix = prefix_;\n\n        const QString order_name = QString(\"%1Order\").arg(prefix);\n        std::vector<uint16_t> order;\n        std::unordered_set<uint16_t> ordered_entry;\n\n        process_entry(\n            input, order_name, EFIBoot::deserialize_list<uint16_t>,\n            [&](const std::vector<uint16_t> &value, const auto &)\n            {\n                order = value;\n                for(const uint16_t index: order)\n                    ordered_entry.insert(index);\n            },\n            \"\", true);\n\n        if(!input.contains(prefix))\n        {\n            if(!order.empty())\n                errors.push_back(tr(\"%1: not found\").arg(prefix));\n\n            continue;\n        }\n\n        Q_EMIT progress(step++, total_steps, tr(\"Importing EFI Boot Manager entries (%1)…\").arg(prefix));\n        if(!input[prefix].isObject())\n        {\n            errors.push_back(tr(\"%1: %2 expected\").arg(prefix, tr(\"object\")));\n            continue;\n        }\n\n        const QString full_prefix = QString(\"%1/\").arg(prefix);\n        const auto entries = input[prefix].toObject();\n        total_steps += qMax(static_cast<size_t>(entries.size()), static_cast<size_t>(order.size()));\n        const auto keys = entries.keys();\n        for(const auto &name: keys)\n        {\n            bool success = false;\n            const auto index = static_cast<uint16_t>(name.toULong(&success, HEX_BASE));\n            if(!success)\n            {\n                errors.push_back(tr(\"%1: %2 expected\").arg(full_prefix + name, tr(\"hexadecimal number\")));\n                continue;\n            }\n\n            if(ordered_entry.count(index))\n                continue;\n\n            order.push_back(index);\n            ordered_entry.insert(index);\n        }\n\n        model.clear();\n        for(const auto &index: order)\n        {\n            const auto qname = toHex(index, 4, \"\");\n            process_entry(\n                entries, qname, EFIBoot::deserialize<EFIBoot::Load_option>,\n                [&](const EFIBoot::Load_option &value, const uint32_t &efi_attributes)\n                {\n                    // Translate STL to QTL\n                    auto entry = BootEntry::fromEFIBootLoadOption(value);\n                    entry.index = index;\n                    entry.efi_attributes = efi_attributes;\n                    if(model.options & BootEntryListModel::Option::IsBoot)\n                    {\n                        entry.is_current_boot = current_boot == static_cast<int>(index);\n                        entry.is_next_boot = next_boot == static_cast<int>(index);\n                    }\n                    model.appendRow(entry);\n                },\n                full_prefix);\n        }\n    }\n\n    // Hot Keys\n    if(input.contains(\"Key\"))\n    {\n        Q_EMIT progress(step++, total_steps, tr(\"Importing EFI Boot Manager entries (%1)…\").arg(\"Key\"));\n        if(!input[\"Key\"].isObject())\n            errors.push_back(tr(\"%1: %2 expected\").arg(\"Key\", tr(\"object\")));\n\n        else\n        {\n            const QString full_prefix = \"Key/\";\n            const auto entries = input[\"Key\"].toObject();\n            total_steps += static_cast<size_t>(entries.size());\n            const auto keys = entries.keys();\n            hot_keys_list_model.clear();\n            for(const auto &qname: keys)\n            {\n                bool success = false;\n                const auto index = static_cast<uint16_t>(qname.toULong(&success, HEX_BASE));\n                if(!success)\n                {\n                    errors.push_back(tr(\"%1: %2 expected\").arg(full_prefix + qname, tr(\"hexadecimal number\")));\n                    continue;\n                }\n\n                process_entry(\n                    entries, qname, EFIBoot::deserialize<EFIBoot::Key_option>,\n                    [&](const EFIBoot::Key_option &value, const uint32_t &efi_attributes)\n                    {\n                        // Translate STL to QTL\n                        auto entry = HotKey::fromEFIBootKeyOption(value);\n                        entry.index = index;\n                        entry.efi_attributes = efi_attributes;\n                        hot_keys_list_model.appendRow(entry);\n                    },\n                    full_prefix);\n            }\n        }\n    }\n\n    // Apple\n    if(input.contains(\"Apple\"))\n    {\n        if(!input[\"Apple\"].isObject())\n            errors.push_back(tr(\"%1: %2 expected\").arg(\"Apple\", tr(\"object\")));\n\n        else\n        {\n            const auto entries = input[\"Apple\"].toObject();\n            process_entry(\n                entries, \"boot-args\", EFIBoot::deserialize<std::string>, [&](const std::string &value, const auto &)\n                { setAppleBootArgs(QString::fromStdString(value)); },\n                \"Apple\", true);\n        }\n    }\n\n    if(!errors.isEmpty())\n        Q_EMIT error(tr(\"Error importing boot configuration\"), tr(\"Failed to import some EFI Boot Manager entries:\\n\\n  - %1\").arg(errors.join(\"\\n  - \")));\n\n    Q_EMIT done();\n}\n"
  },
  {
    "path": "src/efibooteditor.cpp",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#include \"compat.h\"\n\n#include \"efibooteditor.h\"\n#include \"form/ui_efibooteditor.h\"\n\n#include <QButtonGroup>\n#include <QFileDialog>\n#include <QJsonArray>\n#include <QJsonDocument>\n#include <QJsonObject>\n#include <QList>\n#include <QListWidgetItem>\n#include <QMessageBox>\n#include <QMetaMethod>\n#include <QPlainTextEdit>\n#include <QRadioButton>\n\n#include \"bootentry.h\"\n\nEFIBootEditor::EFIBootEditor(const std::optional<tstring> &efi_error_message, QWidget *parent)\n    : QMainWindow{parent}\n    , ui{std::make_unique<Ui::EFIBootEditor>()}\n    , confirmation{std::make_unique<QMessageBox>(QMessageBox::Question, QApplication::applicationName(), \"\", QMessageBox::NoButton, this)}\n    , error{std::make_unique<QMessageBox>(QMessageBox::Critical, QApplication::applicationName(), \"\", QMessageBox::NoButton, this)}\n    , progress{std::make_unique<QProgressDialog>(tr(\"Working…\"), nullptr, 0, 0, this)}\n    , about{std::make_unique<QMessageBox>(\n          QMessageBox::Information,\n          tr(\"About EFI Boot Editor\"),\n          //: About dialog\n          tr(\"<h1>EFI Boot Editor</h1>\"\n             \"<p>Version <b>%1</b></p>\"\n             \"<p>Boot Editor for (U)EFI based systems.</p>\")\n              .arg(QCoreApplication::applicationVersion()),\n          QMessageBox::Close,\n          this)}\n    , hot_keys{std::make_unique<HotKeysDialog>(data.hot_keys_list_model, this)}\n{\n    data.setUndoStack(&undo_stack);\n    ui->setupUi(this);\n    progress->setWindowModality(Qt::WindowModal);\n\n    about->setIconPixmap(QIcon::fromTheme(\"preferences-system\").pixmap(128, 128));\n    //: About dialog details\n    about->setInformativeText(tr(\"<p><a href='%1'>Website</a></p>\"\n                                 \"<p>The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.</p>\"\n                                 \"<p>License: <a href='https://www.gnu.org/licenses/lgpl.html'>GNU LGPL Version 3</a></p>\"\n                                 \"<p>On Linux uses <a href='https://github.com/rhboot/efivar'>efivar</a> for EFI variables access.</p>\"\n                                 \"<p>Uses Tango Icons as fallback icons.</p>\")\n            .arg(PROJECT_HOMEPAGE_URL));\n\n    ui->boot_entries_list->setModel(&data.boot_entries_list_model);\n    ui->driver_entries_list->setModel(&data.driver_entries_list_model);\n    ui->sysprep_entries_list->setModel(&data.sysprep_entries_list_model);\n    ui->platform_recovery_entries_list->setModel(&data.platform_recovery_entries_list_model);\n    ui->entry_form->setBootEntryListModel(data.boot_entries_list_model);\n    ui->undo_view->setStack(data.undo_stack);\n    ui->undo_view->setHidden(true);\n    ui->undo->setEnabled(false);\n    ui->redo->setEnabled(false);\n\n    // Connect settings tabs events\n    QObject::connect(&data, &EFIBootData::error, this, &EFIBootEditor::showError);\n    QObject::connect(&data, &EFIBootData::progress, this, &EFIBootEditor::showProgressBar);\n    QObject::connect(&data, &EFIBootData::done, this, &EFIBootEditor::hideProgressBar);\n\n    QObject::connect(&data, &EFIBootData::timeoutChanged, ui->timeout_number, &QSpinBox::setValue);\n    QObject::connect(ui->timeout_number, QOverload<int>::of(&QSpinBox::valueChanged), &data, &EFIBootData::setTimeout);\n\n    QObject::connect(&data, &EFIBootData::secureBootChanged, ui->secure_boot, &QRadioButton::setChecked);\n    QObject::connect(&data, &EFIBootData::vendorKeysChanged, ui->vendor_keys, &QRadioButton::setChecked);\n    QObject::connect(&data, &EFIBootData::setupModeChanged, ui->setup_mode, &QRadioButton::setChecked);\n    QObject::connect(&data, &EFIBootData::auditModeChanged, ui->audit_mode, &QRadioButton::setChecked);\n    QObject::connect(&data, &EFIBootData::deployedModeChanged, ui->deployed_mode, &QRadioButton::setChecked);\n    QObject::connect(&data, &EFIBootData::bootOptionSupportChanged, this, &EFIBootEditor::updateBootOptionSupport);\n\n    QObject::connect(&data, &EFIBootData::appleBootArgsChanged, ui->boot_args_text, &QLineEdit::setText);\n    QObject::connect(ui->boot_args_text, &QLineEdit::textEdited, &data, &EFIBootData::setAppleBootArgs);\n\n    QObject::connect(&data, &EFIBootData::osIndicationsSupportedChanged, this, &EFIBootEditor::setOsIndicationsSupported);\n    QObject::connect(&data, &EFIBootData::osIndicationsChanged, this, &EFIBootEditor::setOsIndications);\n    QObject::connect(this, &EFIBootEditor::osIndicationsChanged, &data, &EFIBootData::setOsIndications);\n\n    // Connect undo/redo events\n    QObject::connect(&undo_stack, &QUndoStack::cleanChanged, this, [&](bool clean)\n        { ui->undo_view->setHidden(clean && !undo_stack.canRedo()); });\n\n    QObject::connect(&undo_stack, &QUndoStack::canUndoChanged, ui->undo, &QAction::setEnabled);\n    QObject::connect(&undo_stack, &QUndoStack::canRedoChanged, ui->redo, &QAction::setEnabled);\n\n    QObject::connect(&undo_stack, &QUndoStack::undoTextChanged, this, [&](const QString &text)\n        { ui->undo->setText(tr(\"Undo %1\").arg(text)); });\n\n    QObject::connect(&undo_stack, &QUndoStack::redoTextChanged, this, [&](const QString &text)\n        { ui->redo->setText(tr(\"Redo %1\").arg(text)); });\n\n    // Disable builtin undo/redo support in some widgets\n    for(auto &widget: ui->settings->findChildren<QLineEdit *>())\n        widget->installEventFilter(disable_undo_redo.get());\n\n    for(auto &widget: ui->entry_form->findChildren<QLineEdit *>())\n        widget->installEventFilter(disable_undo_redo.get());\n\n    for(auto &widget: ui->settings->findChildren<QPlainTextEdit *>())\n        widget->installEventFilter(disable_undo_redo.get());\n\n    for(auto &widget: ui->entry_form->findChildren<QPlainTextEdit *>())\n        widget->installEventFilter(disable_undo_redo.get());\n\n    for(auto &widget: ui->settings->findChildren<QSpinBox *>())\n        widget->installEventFilter(disable_undo_redo.get());\n\n    for(auto &widget: ui->entry_form->findChildren<QSpinBox *>())\n        widget->installEventFilter(disable_undo_redo.get());\n\n    ui->entries->setCurrentIndex(0);\n    ui->settings->setCurrentIndex(0);\n\n    updateBootOptionSupport(0);\n\n    if(efi_error_message)\n    {\n        showError(tr(\"EFI support required\"), QStringFromStdTString(*efi_error_message));\n        ui->save->setDisabled(true);\n        ui->reload->setDisabled(true);\n        ui->dump_raw_efi_data->setDisabled(true);\n    }\n}\n\nEFIBootEditor::~EFIBootEditor()\n{\n}\n\nvoid EFIBootEditor::reload()\n{\n    showConfirmation(\n        tr(\"Are you sure you want to reload the entries?<br/>ALL of your changes will be lost!\"),\n        QMessageBox::Yes | QMessageBox::Cancel,\n        QMessageBox::Yes,\n        this,\n        &EFIBootEditor::reloadBootConfiguration);\n}\n\nvoid EFIBootEditor::reloadBootConfiguration()\n{\n    ui->entries->setCurrentIndex(0);\n    ui->settings->setCurrentIndex(0);\n    ui->undo_view->setHidden(true);\n    ui->undo->setEnabled(false);\n    ui->redo->setEnabled(false);\n    disableBootEntryEditor();\n    data.clear();\n    data.setUndoStack(nullptr);\n    data.reload();\n    data.setUndoStack(&undo_stack);\n    hot_keys->setMaxKeyCount(static_cast<int>((data.boot_option_support & EFIBoot::EFI_BOOT_OPTION_SUPPORT_COUNT) >> 8));\n}\n\nvoid EFIBootEditor::reorder()\n{\n    showConfirmation(\n        tr(\"Are you sure you want to reorder the boot entries?<br/>All indexes will be overwritten!\"),\n        QMessageBox::Yes | QMessageBox::Cancel,\n        QMessageBox::Yes,\n        this,\n        &EFIBootEditor::reorderBootEntries);\n}\n\nvoid EFIBootEditor::undo()\n{\n    undo_stack.undo();\n}\n\nvoid EFIBootEditor::redo()\n{\n    undo_stack.redo();\n}\n\nvoid EFIBootEditor::enableBootEntryEditor(const QModelIndex &index)\n{\n    if(!index.isValid())\n        return disableBootEntryEditor();\n\n    auto [name, list, model] = currentBootEntryList();\n    Q_UNUSED(name)\n    Q_UNUSED(list)\n    if(&model != index.model())\n        return disableBootEntryEditor();\n\n    const auto item = index.data().value<const BootEntry *>();\n    ui->entry_form->setItem(index, item);\n    ui->entry_form->setReadOnly((model.options & BootEntryListModel::Option::ReadOnly) || item->is_error);\n    ui->entry_form->showHotKeys((data.boot_option_support & EFIBoot::EFI_BOOT_OPTION_SUPPORT_KEY) && (model.options & BootEntryListModel::Option::IsBoot));\n}\n\nvoid EFIBootEditor::disableBootEntryEditor()\n{\n    ui->entry_form->setItem({}, nullptr);\n}\n\nvoid EFIBootEditor::refreshBootEntryEditor()\n{\n    auto [name, list, model] = currentBootEntryList();\n    Q_UNUSED(name)\n    Q_UNUSED(model)\n    enableBootEntryEditor(list.currentIndex());\n}\n\nvoid EFIBootEditor::switchBootEntryEditor(int index)\n{\n    auto [name, list, model] = getBootEntryList(index);\n    Q_UNUSED(name)\n    ui->entry_form->setBootEntryListModel(model);\n    enableBootEntryEditor(list.currentIndex());\n    ui->entries_actions->setDisabled(model.options & BootEntryListModel::Option::ReadOnly);\n}\n\nvoid EFIBootEditor::save()\n{\n    showConfirmation(\n        tr(\"Are you sure you want to save?<br/>Your EFI configuration will be overwritten!\"),\n        QMessageBox::Yes | QMessageBox::Cancel,\n        QMessageBox::Yes,\n        &data,\n        &EFIBootData::save);\n}\n\nvoid EFIBootEditor::import_()\n{\n    const QString file_name = QFileDialog::getOpenFileName(this, tr(\"Open boot configuration dump\"), \"\", tr(\"JSON documents (*.json)\"));\n    if(file_name.isEmpty())\n        return;\n\n    disableBootEntryEditor();\n    ui->entries->setCurrentIndex(0);\n    ui->settings->setCurrentIndex(0);\n    ui->undo_view->setHidden(true);\n    ui->undo->setEnabled(false);\n    ui->redo->setEnabled(false);\n    data.clear();\n    data.setUndoStack(nullptr);\n    data.import_(file_name);\n    data.setUndoStack(&undo_stack);\n}\n\nvoid EFIBootEditor::export_()\n{\n    QString file_name = QFileDialog::getSaveFileName(this, tr(\"Save boot configuration dump\"), \"\", tr(\"JSON documents (*.json)\"));\n    if(file_name.isEmpty())\n        return;\n\n    if(!file_name.endsWith(\".json\", Qt::CaseInsensitive))\n        file_name += \".json\";\n\n    data.export_(file_name);\n}\n\nvoid EFIBootEditor::dump()\n{\n    QString file_name = QFileDialog::getSaveFileName(this, tr(\"Save raw EFI dump\"), \"\", tr(\"JSON documents (*.json)\"));\n    if(file_name.isEmpty())\n        return;\n\n    if(!file_name.endsWith(\".json\", Qt::CaseInsensitive))\n        file_name += \".json\";\n\n    data.dump(file_name);\n}\n\nvoid EFIBootEditor::showAboutDialog()\n{\n    about->show();\n}\n\nvoid EFIBootEditor::showHotKeysDialog(int index)\n{\n    hot_keys->refreshBootOptions(data.boot_entries_list_model);\n    hot_keys->setIndexFilter(index);\n    hot_keys->exec();\n}\n\nvoid EFIBootEditor::setOsIndicationsSupported(uint64_t value)\n{\n    // Firmware features\n    ui->timestamp_based_revocation->setChecked(value & EFIBoot::EFI_OS_INDICATIONS_TIMESTAMP_REVOCATION);\n    ui->file_capsule_support->setChecked(value & EFIBoot::EFI_OS_INDICATIONS_FILE_CAPSULE_DELIVERY_SUPPORTED);\n    ui->fmp_capsule_support->setChecked(value & EFIBoot::EFI_OS_INDICATIONS_FMP_CAPSULE_SUPPORTED);\n    ui->capsule_reporting_support->setChecked(value & EFIBoot::EFI_OS_INDICATIONS_CAPSULE_RESULT_VAR_SUPPORTED);\n\n    // Firmware actions\n    ui->boot_to_firmware_ui->setEnabled(value & EFIBoot::EFI_OS_INDICATIONS_BOOT_TO_FW_UI);\n    ui->start_os_recovery->setEnabled(value & EFIBoot::EFI_OS_INDICATIONS_START_OS_RECOVERY);\n    ui->start_platform_recovery->setEnabled(value & EFIBoot::EFI_OS_INDICATIONS_START_PLATFORM_RECOVERY);\n    ui->collect_current_config->setEnabled(value & EFIBoot::EFI_OS_INDICATIONS_JSON_CONFIG_DATA_REFRESH);\n}\n\nvoid EFIBootEditor::setOsIndications(uint64_t value)\n{\n    ui->boot_to_firmware_ui->setChecked(value & EFIBoot::EFI_OS_INDICATIONS_BOOT_TO_FW_UI);\n    ui->start_os_recovery->setChecked(value & EFIBoot::EFI_OS_INDICATIONS_START_OS_RECOVERY);\n    ui->start_platform_recovery->setChecked(value & EFIBoot::EFI_OS_INDICATIONS_START_PLATFORM_RECOVERY);\n    ui->collect_current_config->setChecked(value & EFIBoot::EFI_OS_INDICATIONS_JSON_CONFIG_DATA_REFRESH);\n}\n\nvoid EFIBootEditor::setOsIndication(bool)\n{\n    Q_EMIT osIndicationsChanged(getOsIndications());\n}\n\nvoid EFIBootEditor::updateBootOptionSupport(uint32_t flags)\n{\n    ui->hot_keys->setDisabled(!(flags & EFIBoot::EFI_BOOT_OPTION_SUPPORT_KEY));\n    ui->entry_form->showCategory(flags & EFIBoot::EFI_BOOT_OPTION_SUPPORT_APP);\n    ui->entry_form->showHotKeys((flags & EFIBoot::EFI_BOOT_OPTION_SUPPORT_KEY) && (std::get<2>(currentBootEntryList()).options & BootEntryListModel::Option::IsBoot));\n    ui->entries->setTabVisible(ui->entries->indexOf(ui->sysprep_tab), flags & EFIBoot::EFI_BOOT_OPTION_SUPPORT_SYSPREP);\n}\n\nvoid EFIBootEditor::reorderBootEntries()\n{\n    auto [name, list, model] = currentBootEntryList();\n    if(model.options & BootEntryListModel::Option::ReadOnly)\n        return;\n\n    disableBootEntryEditor();\n\n    undo_stack.beginMacro(tr(\"Reorder %1 entries\").arg(name));\n    // Skip indexes with errors to not overwrite them accidentally\n    QSet<uint16_t> errors;\n    for(int r = 0; r < model.rowCount(); ++r)\n    {\n        auto entry = model.index(r).data().value<const BootEntry *>();\n        if(entry->is_error)\n            errors.insert(entry->index);\n    }\n\n    uint16_t index = 0;\n    for(int r = 0; r < model.rowCount(); ++r)\n    {\n        auto idx = model.index(r);\n        if(idx.data().value<const BootEntry *>()->is_error)\n            continue;\n\n        while(errors.contains(index))\n            index++;\n\n        model.setEntryIndex(idx, index++);\n    }\n\n    undo_stack.endMacro();\n    enableBootEntryEditor(list.currentIndex());\n}\n\nvoid EFIBootEditor::removeCurrentBootEntry()\n{\n    auto [name, list, model] = currentBootEntryList();\n    Q_UNUSED(name)\n    if(model.options & BootEntryListModel::Option::ReadOnly)\n        return;\n\n    list.removeCurrentRow();\n}\n\nvoid EFIBootEditor::moveCurrentBootEntryUp()\n{\n    auto [name, list, model] = currentBootEntryList();\n    Q_UNUSED(name)\n    if(model.options & BootEntryListModel::Option::ReadOnly)\n        return;\n\n    list.moveCurrentRowUp();\n}\n\nvoid EFIBootEditor::moveCurrentBootEntryDown()\n{\n    auto [name, list, model] = currentBootEntryList();\n    Q_UNUSED(name)\n    if(model.options & BootEntryListModel::Option::ReadOnly)\n        return;\n\n    list.moveCurrentRowDown();\n}\n\nvoid EFIBootEditor::insertBootEntry()\n{\n    auto [name, list, model] = currentBootEntryList();\n    Q_UNUSED(name)\n    if(model.options & BootEntryListModel::Option::ReadOnly)\n        return;\n\n    list.insertRow();\n}\n\nvoid EFIBootEditor::duplicateBootEntry()\n{\n    auto [name, list, model] = currentBootEntryList();\n    Q_UNUSED(name)\n    if(model.options & BootEntryListModel::Option::ReadOnly)\n        return;\n\n    list.duplicateRow();\n}\n\nstd::tuple<QString, BootEntryListView &, BootEntryListModel &> EFIBootEditor::getBootEntryList(int index)\n{\n    switch(static_cast<BootEntryType>(index))\n    {\n    case BootEntryType::BOOT:\n        return {tr(\"Boot\"), *ui->boot_entries_list, data.boot_entries_list_model};\n\n    case BootEntryType::DRIVER:\n        return {tr(\"Driver\"), *ui->driver_entries_list, data.driver_entries_list_model};\n\n    case BootEntryType::SYSPREP:\n        return {tr(\"System Preparation\"), *ui->sysprep_entries_list, data.sysprep_entries_list_model};\n\n    case BootEntryType::PLATFORM_RECOVERY:\n        return {tr(\"Platform Recovery\"), *ui->platform_recovery_entries_list, data.platform_recovery_entries_list_model};\n    }\n\n    Q_UNREACHABLE();\n}\n\nstd::tuple<QString, BootEntryListView &, BootEntryListModel &> EFIBootEditor::currentBootEntryList()\n{\n    return getBootEntryList(ui->entries->currentIndex());\n}\n\nuint64_t EFIBootEditor::getOsIndications() const\n{\n    uint64_t indications = 0;\n    if(ui->boot_to_firmware_ui->isChecked())\n        indications |= EFIBoot::EFI_OS_INDICATIONS_BOOT_TO_FW_UI;\n\n    if(ui->start_os_recovery->isChecked())\n        indications |= EFIBoot::EFI_OS_INDICATIONS_START_OS_RECOVERY;\n\n    if(ui->start_platform_recovery->isChecked())\n        indications |= EFIBoot::EFI_OS_INDICATIONS_START_PLATFORM_RECOVERY;\n\n    if(ui->collect_current_config->isChecked())\n        indications |= EFIBoot::EFI_OS_INDICATIONS_JSON_CONFIG_DATA_REFRESH;\n\n    return indications;\n}\n\nvoid EFIBootEditor::closeEvent(QCloseEvent *event)\n{\n    event->ignore();\n    confirmation->setText(tr(\"Are you sure you want to quit?\"));\n    confirmation->setStandardButtons(QMessageBox::Yes | QMessageBox::No);\n    confirmation->exec();\n    if(confirmation->clickedButton() == confirmation->button(QMessageBox::Yes))\n        event->accept();\n}\n\nvoid EFIBootEditor::showError(const QString &message, const QString &details)\n{\n    hideProgressBar();\n    error->setText(message);\n    error->setDetailedText(details);\n    error->show();\n}\n\ntemplate <class Receiver, typename Slot>\nvoid EFIBootEditor::showConfirmation(const QString &message, const QMessageBox::StandardButtons &buttons, const QMessageBox::StandardButton &confirmation_button, Receiver confirmation_context, Slot confirmation_slot)\n{\n    confirmation->setText(message);\n    confirmation->setStandardButtons(buttons);\n    QObject::connect(confirmation->button(confirmation_button), &QAbstractButton::clicked, confirmation_context, confirmation_slot);\n    confirmation->show();\n}\n\nvoid EFIBootEditor::showProgressBar(size_t step, size_t total, const QString &details)\n{\n    if(step >= total)\n        total = step + 1;\n\n    progress->setMaximum(static_cast<int>(total));\n    progress->setLabelText(details);\n    progress->setValue(static_cast<int>(step));\n}\n\nvoid EFIBootEditor::hideProgressBar()\n{\n    progress->reset();\n}\n"
  },
  {
    "path": "src/efibooteditorcli.cpp",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#include \"compat.h\"\n\n#include \"efibooteditorcli.h\"\n\n#include <QTextStream>\n#include <iostream>\n\nEFIBootEditorCLI::EFIBootEditorCLI(const std::optional<tstring> &efi_error_message, QObject *parent)\n    : QObject{parent}\n    , efi_supported{!efi_error_message}\n{\n    parser.setApplicationDescription(tr(\"Boot Editor for (U)EFI based systems.\"));\n    parser.addHelpOption();\n    parser.addVersionOption();\n    parser.addOption({{\"e\", \"export\"}, tr(\"Export configuration.\"), tr(\"FILE\")});\n    parser.addOption({{\"d\", \"dump\"}, tr(\"Dump raw EFI data.\"), tr(\"FILE\")});\n    parser.addOption({{\"i\", \"import\"}, tr(\"Import configuration from JSON (either from export or raw dump).\"), tr(\"FILE\")});\n    parser.addOption({{\"f\", \"force\"}, tr(\"Force import, don't ask for confirmation.\")});\n\n    connect(&data, &EFIBootData::error, this, &EFIBootEditorCLI::showError);\n    connect(&data, &EFIBootData::progress, this, &EFIBootEditorCLI::showProgress);\n    connect(&data, &EFIBootData::done, this, &EFIBootEditorCLI::hideProgress);\n\n    if(!efi_supported)\n        showError(tr(\"EFI support required\"), QStringFromStdTString(*efi_error_message));\n}\n\nEFIBootEditorCLI::~EFIBootEditorCLI()\n{\n}\n\nbool EFIBootEditorCLI::process(const QCoreApplication &app)\n{\n    bool processed = false;\n    parser.process(app);\n\n    QTextStream ts{stdout};\n    if(parser.isSet(\"export\"))\n    {\n        if(!efi_supported)\n            return true;\n\n        processed = true;\n        ts << tr(\"Loading EFI Boot Manager entries…\") << Qt::endl;\n        data.reload();\n        ts << tr(\"Exporting boot configuration…\") << Qt::endl;\n        data.export_(parser.value(\"export\"));\n    }\n\n    if(parser.isSet(\"dump\"))\n    {\n        if(!efi_supported)\n            return true;\n\n        processed = true;\n        ts << tr(\"Exporting boot configuration…\") << Qt::endl;\n        data.dump(parser.value(\"dump\"));\n    }\n\n    if(parser.isSet(\"import\"))\n    {\n        if(!efi_supported)\n            return true;\n\n        processed = true;\n        ts << tr(\"Importing boot configuration…\") << Qt::endl;\n        data.import_(parser.value(\"import\"));\n        if(!failed)\n        {\n            ts << tr(\"Loaded %0 %1 entries\").arg(data.boot_entries_list_model.rowCount()).arg(tr(\"Boot\")) << Qt::endl;\n            ts << tr(\"Loaded %0 %1 entries\").arg(data.driver_entries_list_model.rowCount()).arg(tr(\"Driver\")) << Qt::endl;\n            ts << tr(\"Loaded %0 %1 entries\").arg(data.sysprep_entries_list_model.rowCount()).arg(tr(\"System Preparation\")) << Qt::endl;\n            ts << tr(\"Loaded %0 %1 entries\").arg(data.hot_keys_list_model.rowCount()).arg(tr(\"Hot Key\")) << Qt::endl;\n            bool save = true;\n            if(!parser.isSet(\"force\"))\n            {\n                ts << tr(\"Are you sure you want to save?\\nYour EFI configuration will be overwritten!\") << \" [y/N]\" << Qt::endl;\n                std::string action;\n                std::cin >> action;\n                save = action == \"y\";\n            }\n\n            if(save)\n            {\n                ts << tr(\"Saving EFI Boot Manager entries…\") << Qt::endl;\n                data.save();\n            }\n        }\n    }\n\n    return processed;\n}\n\nvoid EFIBootEditorCLI::showError(const QString &message, const QString &details)\n{\n    QTextStream ts{stderr};\n    ts << tr(\"ERROR: %0! %1\").arg(message, details) << Qt::endl;\n    failed = true;\n}\n\nvoid EFIBootEditorCLI::showProgress(size_t step, size_t total, const QString &details) const\n{\n    if(step >= total)\n        total = step + 1;\n\n    QTextStream ts{stdout};\n    ts << QString(\"\\r[%0%]\\t(%1/%2)\\t%3\").arg(100 * step / total).arg(step).arg(total).arg(details);\n}\n\nvoid EFIBootEditorCLI::hideProgress() const\n{\n    QTextStream ts{stdout};\n    ts << \"\\33[2K\\r[100%]\\t\" << tr(\"Finished\") << Qt::endl;\n}\n"
  },
  {
    "path": "src/efikeysequence.cpp",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#include \"compat.h\"\n\n#include \"efikeysequence.h\"\n\n#include <QJsonArray>\n#include <QJsonDocument>\n#include <QKeyEvent>\n\nEFIKey::EFIKey(const EFIBoot::efi_input_key &key)\n{\n    if(key.scan_code)\n    {\n        if(auto code = std::find_if(efi_scan_codes.begin(), efi_scan_codes.end(), [&](const auto &row)\n               { return std::get<int>(row) == key.scan_code; });\n            code != efi_scan_codes.end())\n            scan_code = std::get<Qt::Key>(*code);\n    }\n    else\n        scan_code = Qt::Key_unknown;\n\n    unicode_char = key.unicode_char;\n}\n\nEFIKey::EFIKey(const Qt::Key _scan_code, const QChar _unicode_char)\n    : scan_code{_scan_code}\n    , unicode_char{_unicode_char}\n{\n}\n\nEFIBoot::efi_input_key EFIKey::toEFIInputKey() const\n{\n    EFIBoot::efi_input_key value;\n    if(scan_code != Qt::Key_unknown)\n    {\n        if(auto code = std::find_if(efi_scan_codes.begin(), efi_scan_codes.end(), [&](const auto &row)\n               { return std::get<Qt::Key>(row) == scan_code; });\n            code != efi_scan_codes.end())\n            value.scan_code = static_cast<uint16_t>(std::get<int>(*code));\n    }\n    else\n        value.scan_code = 0;\n\n    value.unicode_char = unicode_char.unicode();\n    return value;\n}\n\nbool EFIKey::operator==(const EFIKey &b) const\n{\n    return scan_code == b.scan_code && unicode_char == b.unicode_char;\n}\n\nEFIKey EFIKey::fromString(const QString &repr, bool *success)\n{\n    if(success)\n        *success = false;\n\n    EFIKey value;\n    if(auto code = std::find_if(efi_scan_codes.begin(), efi_scan_codes.end(), [&](const auto &row)\n           { return std::get<QString>(row) == repr; });\n        code != efi_scan_codes.end())\n    {\n        value.scan_code = std::get<Qt::Key>(*code);\n        if(success)\n            *success = true;\n\n        return value;\n    }\n\n    value.scan_code = Qt::Key_unknown;\n    if(repr.length() != 1)\n        return {};\n\n    value.unicode_char = repr[0];\n    if(success)\n        *success = true;\n\n    return value;\n}\n\nQString EFIKey::toString() const\n{\n    if(scan_code != Qt::Key_unknown)\n    {\n        if(auto repr = std::find_if(efi_scan_codes.begin(), efi_scan_codes.end(), [&](const auto &row)\n               { return std::get<Qt::Key>(row) == scan_code; });\n            repr != efi_scan_codes.end())\n            return std::get<QString>(*repr);\n\n        return {};\n    }\n\n    return unicode_char;\n}\n\nEFIKey EFIKey::toUpper() const\n{\n    return EFIKey{scan_code, unicode_char.toUpper()};\n}\n\nbool EFIKey::isUpper() const\n{\n    return unicode_char.toLower() != unicode_char;\n}\n\nEFIKey EFIKey::fromQKey(int key, Qt::KeyboardModifiers modifiers, const QString &text, bool *success)\n{\n    if(success)\n        *success = false;\n\n    EFIKey value;\n    if(key != Qt::Key_unknown)\n    {\n        if(auto code = std::find_if(efi_scan_codes.begin(), efi_scan_codes.end(), [&](const auto &row)\n               { return std::get<Qt::Key>(row) == key; });\n            code != efi_scan_codes.end())\n        {\n            value.scan_code = std::get<Qt::Key>(*code);\n            if(success)\n                *success = true;\n\n            return value;\n        }\n    }\n\n    value.scan_code = Qt::Key_unknown;\n    if(modifiers)\n    {\n        auto stripped = QKeySequence{key}.toString();\n        if(stripped.length() != 1)\n            return {};\n\n        if(!(modifiers & Qt::ShiftModifier) && Qt::Key_A <= key && key <= Qt::Key_Z)\n            stripped = stripped.toLower();\n\n        value.unicode_char = stripped[0];\n        if(success)\n            *success = true;\n\n        return value;\n    }\n\n    if(text.length() != 1)\n        return {};\n\n    value.unicode_char = text[0];\n    if(success)\n        *success = true;\n\n    return value;\n}\n\nEFIKeySequence::EFIKeySequence(const EFIBoot::efi_boot_key_data &key_data, const std::vector<EFIBoot::efi_input_key> &keys_)\n{\n    bool has_upper = false;\n    for(size_t k = 0; k < key_data.options.input_key_count; ++k)\n    {\n        EFIKey key{keys_[k]};\n        keys.push_back(key);\n        has_upper |= key.isUpper();\n    }\n\n    if(key_data.options.shift_pressed || has_upper)\n        shift_state.insert(Qt::Key_Shift);\n\n    if(key_data.options.control_pressed)\n        shift_state.insert(Qt::Key_Control);\n\n    if(key_data.options.alt_pressed)\n        shift_state.insert(Qt::Key_Alt);\n\n    if(key_data.options.logo_pressed)\n        shift_state.insert(Qt::Key_Meta);\n\n    if(key_data.options.menu_pressed)\n        shift_state.insert(Qt::Key_Menu);\n\n    if(key_data.options.sys_req_pressed)\n        shift_state.insert(Qt::Key_SysReq);\n}\n\nbool EFIKeySequence::toEFIKeyOption(EFIBoot::efi_boot_key_data &key_data, std::vector<EFIBoot::efi_input_key> &keys_) const\n{\n    if(keys.size() > 3)\n        return false;\n\n    bool has_unicode = false;\n    for(const auto &key: keys)\n        has_unicode |= key.isUnicode();\n\n    key_data.options.shift_pressed = shift_state.contains(Qt::Key_Shift) && !has_unicode; // If there is any unicode char in the hot key, the \"Shift\" state seems to be processed in there instead and doesn't work with it specified again here\n    key_data.options.control_pressed = shift_state.contains(Qt::Key_Control);\n    key_data.options.alt_pressed = shift_state.contains(Qt::Key_Alt);\n    key_data.options.logo_pressed = shift_state.contains(Qt::Key_Meta);\n    key_data.options.menu_pressed = shift_state.contains(Qt::Key_Menu);\n    key_data.options.sys_req_pressed = shift_state.contains(Qt::Key_SysReq);\n\n    key_data.options.input_key_count = static_cast<uint32_t>(keys.size()) & 0x3;\n    for(const auto &key: keys)\n        keys_.push_back(key.toEFIInputKey());\n\n    return true;\n}\n\nEFIKeySequence EFIKeySequence::fromString(const QString &str, qsizetype maxKeys)\n{\n    EFIKeySequence value = {};\n    const auto keys = str.split(\"+\");\n    int k = 0;\n    while(k < keys.size())\n    {\n        auto modif = std::find_if(efi_modifiers.begin(), efi_modifiers.end(), [&](const auto &row)\n            { return std::get<QString>(row) == keys[k]; });\n\n        if(modif == efi_modifiers.end())\n            break;\n\n        value.shift_state.insert(std::get<Qt::Key>(*modif));\n        ++k;\n    }\n\n    if(keys.size() - k > maxKeys)\n        return {};\n\n    while(k < keys.size())\n    {\n        bool success = false;\n        auto key = EFIKey::fromString(keys[k], &success);\n        if(!success)\n            return {};\n\n        value.keys.push_back(key);\n        ++k;\n    }\n\n    return value;\n}\n\nQString EFIKeySequence::toString(bool escaped) const\n{\n    QString str;\n    for(const auto &[text, keycode]: efi_modifiers)\n    {\n        if(!shift_state.contains(keycode))\n            continue;\n\n        if(!str.isEmpty())\n            str += \"+\";\n\n        str += text;\n    }\n\n    for(const auto &key: keys)\n    {\n        if(!str.isEmpty())\n            str += \"+\";\n\n        str += key.toString();\n    }\n\n    if(escaped)\n    {\n        // Simplest way to escape non-printable unicode characters in Qt?\n        auto repr = QJsonDocument{QJsonArray{str}}.toJson(QJsonDocument::JsonFormat::Compact);\n        return repr.mid(2, repr.length() - 4);\n    }\n\n    return str;\n}\n\nbool EFIKeySequence::isEmpty() const\n{\n    return shift_state.isEmpty() && keys.isEmpty();\n}\n\nbool EFIKeySequence::operator==(const EFIKeySequence &b) const\n{\n    return shift_state == b.shift_state && keys == b.keys;\n}\n\nbool EFIKeySequence::addKey(int key, Qt::KeyboardModifiers modifiers, const QString &text, qsizetype maxKeys)\n{\n    if(auto modif = std::find_if(efi_modifiers.begin(), efi_modifiers.end(), [&](const auto &row)\n           { return std::get<Qt::Key>(row) == key; });\n        modif != efi_modifiers.end())\n    {\n        auto mod = std::get<Qt::Key>(*modif);\n        shift_state.insert(mod);\n        if(modifiers & Qt::ShiftModifier)\n            fixShiftState();\n\n        return true;\n    }\n\n    if(keys.size() >= maxKeys)\n        return false;\n\n    bool success = false;\n    EFIKey efi_key = EFIKey::fromQKey(key, modifiers, text, &success);\n    if(!success)\n        return false;\n\n    if(!keys.isEmpty() && keys.last() == efi_key)\n        return false;\n\n    keys.push_back(efi_key);\n    if(modifiers & Qt::ShiftModifier)\n        fixShiftState();\n\n    return true;\n}\n\nvoid EFIKeySequence::fixShiftState()\n{\n    bool has_upper = false;\n    bool has_unicode = false;\n    for(auto &key: keys)\n    {\n        has_unicode |= key.isUnicode();\n        key = key.toUpper();\n        has_upper |= key.isUpper();\n    }\n\n    if(!has_unicode || has_upper)\n        shift_state.insert(Qt::Key_Shift);\n\n    else // has unicode chars but no uppercase -> no Shift press necessary\n        shift_state.remove(Qt::Key_Shift);\n}\n"
  },
  {
    "path": "src/efikeysequenceedit.cpp",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#include \"compat.h\"\n\n#include \"efikeysequenceedit.h\"\n\n#include <QFocusEvent>\n#include <QKeyEvent>\n#include <QTimerEvent>\n\nEFIKeySequenceEdit::EFIKeySequenceEdit(QWidget *parent)\n    : QWidget{parent}\n    , lineEdit{std::make_unique<QLineEdit>(this)}\n    , layout{std::make_unique<QVBoxLayout>(this)}\n{\n    QObject::connect(lineEdit.get(), &QLineEdit::textChanged, this, [this](const QString &text)\n        {\n            // Clear the sequence if the user clicked on the clear icon\n            if(text.isEmpty())\n                this->clear(); });\n\n    layout->setContentsMargins(0, 0, 0, 0);\n    layout->addWidget(lineEdit.get());\n\n    lineEdit->setFocusProxy(this);\n    lineEdit->installEventFilter(this);\n    resetState();\n\n    setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);\n    setFocusPolicy(Qt::StrongFocus);\n    setAttribute(Qt::WA_MacShowFocusRect, true);\n    setAttribute(Qt::WA_InputMethodEnabled, false);\n}\n\nEFIKeySequenceEdit::EFIKeySequenceEdit(const EFIKeySequence &keySequence, QWidget *parent)\n    : EFIKeySequenceEdit{parent}\n{\n    setKeySequence(keySequence);\n}\n\nvoid EFIKeySequenceEdit::setKeySequence(const EFIKeySequence &keySequence)\n{\n    resetState();\n\n    if(_keySequence == keySequence)\n        return;\n\n    _keySequence = keySequence;\n    lineEdit->setText(_keySequence.toString(true));\n    Q_EMIT keySequenceChanged(_keySequence);\n}\n\nvoid EFIKeySequenceEdit::setMaximumSequenceLength(qsizetype count)\n{\n    _maximumSequenceLength = count;\n}\n\nvoid EFIKeySequenceEdit::keyPressEvent(QKeyEvent *event)\n{\n    if(event->isAutoRepeat())\n        return;\n\n    if(event->key() == Qt::Key_Enter)\n        return;\n\n    int key = event->key();\n    if(startKey == -1)\n    {\n        clear();\n        startKey = key;\n    }\n\n    lineEdit->setPlaceholderText({});\n\n    // Clear selected\n    if(const auto selectedText = lineEdit->selectedText(); !selectedText.isEmpty() && selectedText == lineEdit->text())\n    {\n        clear();\n        if(key == Qt::Key_Backspace)\n            return;\n    }\n\n    if(!_keySequence.addKey(event->key(), event->modifiers(), event->text(), _maximumSequenceLength))\n        return;\n\n    lineEdit->setText(_keySequence.toString(true) + \"...\");\n    event->accept();\n}\n\nvoid EFIKeySequenceEdit::keyReleaseEvent(QKeyEvent *event)\n{\n    if(event->key() == startKey)\n        finishEditing();\n\n    event->accept();\n}\n\nvoid EFIKeySequenceEdit::focusOutEvent(QFocusEvent *event)\n{\n    if(startKey != -1 && event->reason() != Qt::PopupFocusReason)\n        finishEditing();\n\n    return QWidget::focusOutEvent(event);\n}\n\nvoid EFIKeySequenceEdit::resetState()\n{\n    startKey = -1;\n    lineEdit->setText(_keySequence.toString(true));\n    lineEdit->setPlaceholderText(tr(\"Press hot key\"));\n}\n\nvoid EFIKeySequenceEdit::finishEditing()\n{\n    resetState();\n    Q_EMIT keySequenceChanged(_keySequence);\n    Q_EMIT editingFinished();\n}\n"
  },
  {
    "path": "src/efivar-lite.c",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#include \"efivar-lite.common.h\"\n#include \"efivar-lite/device-paths.h\"\n#include \"efivar-lite/load-option.h\"\n\n// UEFI Specification, Version 2.8\nstatic const TCHAR *variable_names[] = {\n    _T(\"AuditMode\"),\n    _T(\"BootCurrent\"),\n    _T(\"BootNext\"),\n    _T(\"BootOrder\"),\n    _T(\"BootOptionSupport\"),\n    _T(\"ConIn\"),\n    _T(\"ConInDev\"),\n    _T(\"ConOut\"),\n    _T(\"ConOutDev\"),\n    _T(\"dbDefault\"),\n    _T(\"dbrDefault\"),\n    _T(\"dbtDefault\"),\n    _T(\"dbxDefault\"),\n    _T(\"DeployedMode\"),\n    _T(\"DriverOrder\"),\n    _T(\"ErrOut\"),\n    _T(\"ErrOutDev\"),\n    _T(\"HwErrRecSupprot\"),\n    _T(\"KEK\"),\n    _T(\"KEKDefault\"),\n    _T(\"Lang\"),\n    _T(\"LangCodes\"),\n    _T(\"OsIndications\"),\n    _T(\"OsIndicationsSupported\"),\n    _T(\"OsRecoveryOrder\"),\n    _T(\"PK\"),\n    _T(\"PKDefault\"),\n    _T(\"PlatformLangCodes\"),\n    _T(\"PlatformLang\"),\n    _T(\"RuntimeServicesSupported\"),\n    _T(\"SignatureSupport\"),\n    _T(\"SecureBoot\"),\n    _T(\"SetupMode\"),\n    _T(\"SysPrepOrder\"),\n    _T(\"Timeout\"),\n    _T(\"VendorKeys\"),\n};\n\nstatic const TCHAR *enumerated_variable_names[] = {\n    _T(\"Boot\"),\n    _T(\"Driver\"),\n    _T(\"Key\"),\n    _T(\"PlatformRecovery\"),\n    _T(\"SysPrep\"),\n};\n\nstatic TCHAR variable_name_buffer[32];\n\nconst size_t EFI_MAX_VARIABLES = sizeof(variable_names) / sizeof(variable_names[0]) + sizeof(enumerated_variable_names) / sizeof(enumerated_variable_names[0]) * 65536u;\n\nstatic size_t current_variable = 0u;\nint _efi_get_next_variable_name(efi_guid_t **guid, TCHAR **name)\n{\n    *guid = nullptr;\n    *name = nullptr;\n    size_t index = current_variable;\n    if(index < sizeof(variable_names) / sizeof(variable_names[0]))\n    {\n        *guid = (efi_guid_t *)&efi_guid_global;\n        *name = (TCHAR *)variable_names[index];\n        ++current_variable;\n        return 1;\n    }\n\n    index -= sizeof(variable_names) / sizeof(variable_names[0]);\n    if(index / 65536u < sizeof(enumerated_variable_names) / sizeof(enumerated_variable_names[0]))\n    {\n        size_t enum_index = index / 65536u;\n        size_t enum_value = index - enum_index * 65536u;\n        *guid = (efi_guid_t *)&efi_guid_global;\n        _sntprintf_s(variable_name_buffer, 32, 31, _T(\"%s%04zX\"), enumerated_variable_names[enum_index], enum_value);\n        *name = (TCHAR *)&variable_name_buffer;\n        ++current_variable;\n        return 1;\n    }\n\n    index -= sizeof(enumerated_variable_names) / sizeof(enumerated_variable_names[0]) * 65536u;\n    if(index == 0u)\n    {\n        current_variable = 0u;\n        return 0;\n    }\n\n    return -1;\n}\n\nefidp efi_loadopt_path(efi_load_option *opt, ssize_t limit)\n{\n    uint8_t *ptr = (uint8_t *)opt;\n    if((size_t)limit <= offsetof(efi_load_option, description))\n        return nullptr;\n\n    limit -= (ssize_t)offsetof(efi_load_option, description);\n    ptr += offsetof(efi_load_option, description);\n    for(size_t d = 0; limit > 0 && opt->description[d]; ++d, limit -= (ssize_t)sizeof(opt->description[0]), ptr += sizeof(opt->description[0]))\n        ;\n    // \\0\n    limit -= (ssize_t)sizeof(opt->description[0]);\n    ptr += sizeof(opt->description[0]);\n    if(limit == 0)\n        return nullptr;\n\n    if(limit < opt->file_path_list_length)\n        return nullptr;\n\n    return (efidp)ptr;\n}\n\nuint16_t efi_loadopt_pathlen(efi_load_option *opt, ssize_t limit)\n{\n    uint16_t len = opt->file_path_list_length;\n    if(limit >= 0)\n    {\n        if(len > (size_t)limit)\n            return 0;\n\n        if((size_t)limit - len < offsetof(efi_load_option, file_path_list_length))\n            return 0;\n    }\n\n    return len;\n}\n\nint efi_loadopt_optional_data(efi_load_option *opt, size_t opt_size, unsigned char **datap, size_t *len)\n{\n    uint8_t *ptr = (uint8_t *)efi_loadopt_path(opt, (ssize_t)opt_size);\n    if(!ptr)\n        return -1;\n\n    ptr += opt->file_path_list_length;\n    opt_size -= (size_t)(ptr - (uint8_t *)opt);\n    *len = opt_size;\n    *datap = ptr;\n    return 0;\n}\n"
  },
  {
    "path": "src/efivar-lite.common.h",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#pragma once\n\n#include \"compat.h\"\n\n#include <stdarg.h>\n#include <string.h>\n\n#include \"efivar-lite/efivar-lite.h\"\n\nextern const size_t EFI_MAX_VARIABLES;\n#if defined(__clang__)\n#pragma clang diagnostic push\n#pragma clang diagnostic ignored \"-Wreserved-identifier\"\n#endif\nint _efi_get_next_variable_name(efi_guid_t **guid, TCHAR **name);\n#if defined(__clang__)\n#pragma clang diagnostic pop\n#endif\n"
  },
  {
    "path": "src/efivar-lite.darwin.c",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n/*\n * efivar interface <> IOKit translation.\n */\n#include \"efivar-lite.common.h\"\n\n#include <CoreFoundation/CoreFoundation.h>\n#include <IOKit/IOKitLib.h>\n#include <mach/mach_error.h>\n\n#include \"efivar-lite/device-paths.h\"\n#include \"efivar-lite/load-option.h\"\n\nconst efi_guid_t efi_guid_global = {\"8BE4DF61-93CA-11D2-AA0D-00E098032B8C\"};\nconst efi_guid_t efi_guid_apple = {\"7C436110-AB2A-4BBB-A880-FE41995C9F82\"};\n\nstatic io_registry_entry_t options_entry;\nstatic kern_return_t err;\nstatic char *last_iokit_function = nullptr;\n\nint efi_variables_supported(void)\n{\n    options_entry = IORegistryEntryFromPath(MACH_PORT_NULL, \"IODeviceTree:/options\");\n    if(!options_entry)\n    {\n        last_iokit_function = \"IORegistryEntryFromPath\";\n        return 0;\n    }\n\n    return 1;\n}\n\nstatic uint8_t *variable_data_buffer = nullptr;\n\nstatic CFStringRef get_nvram_variable_name(const efi_guid_t *guid, const char *name)\n{\n    CFMutableStringRef name_cf = CFStringCreateMutable(kCFAllocatorDefault, 0);\n    if(name_cf == nullptr)\n    {\n        last_iokit_function = \"CFStringCreateMutable\";\n        return nullptr;\n    }\n\n    CFStringAppendCString(name_cf, guid->data, kCFStringEncodingUTF8);\n    CFStringAppendCString(name_cf, \":\", kCFStringEncodingUTF8);\n    CFStringAppendCString(name_cf, name, kCFStringEncodingUTF8);\n    return name_cf;\n}\n\nint efi_get_variable(efi_guid_t guid, const char *name, uint8_t **data, size_t *data_size, uint32_t *attributes)\n{\n    CFStringRef name_cf = get_nvram_variable_name(&guid, name);\n    if(name_cf == nullptr)\n    {\n        last_iokit_function = nullptr;\n        return -1;\n    }\n\n    CFTypeRef value_cf = IORegistryEntryCreateCFProperty(options_entry, name_cf, kCFAllocatorDefault, kNilOptions);\n    CFRelease(name_cf);\n    if(value_cf == nullptr)\n    {\n        last_iokit_function = \"IORegistryEntryCreateCFProperty\";\n        return -1;\n    }\n\n    if(CFGetTypeID(value_cf) == CFDataGetTypeID())\n        *data_size = (size_t)CFDataGetLength(value_cf);\n\n    else if(CFGetTypeID(value_cf) == CFStringGetTypeID())\n        *data_size = (size_t)CFStringGetLength(value_cf) + 1;\n\n    else if(CFGetTypeID(value_cf) == CFNumberGetTypeID())\n        *data_size = sizeof(int32_t);\n\n    else if(CFGetTypeID(value_cf) == CFBooleanGetTypeID())\n        *data_size = sizeof(bool);\n\n    else\n    {\n        last_iokit_function = \"CFGetTypeID\";\n        CFRelease(value_cf);\n        return -1;\n    }\n\n    free(variable_data_buffer);\n    variable_data_buffer = malloc(*data_size);\n    if(variable_data_buffer == nullptr)\n    {\n        last_iokit_function = nullptr;\n        CFRelease(value_cf);\n        return -1;\n    }\n\n    const void *ret = nullptr;\n    if(CFGetTypeID(value_cf) == CFDataGetTypeID())\n        ret = memcpy(variable_data_buffer, CFDataGetBytePtr(value_cf), *data_size);\n\n    else if(CFGetTypeID(value_cf) == CFStringGetTypeID())\n    {\n        if(CFStringGetCString(value_cf, (char *)variable_data_buffer, (CFIndex)*data_size, kCFStringEncodingUTF8))\n            ret = variable_data_buffer;\n    }\n    else if(CFGetTypeID(value_cf) == CFNumberGetTypeID())\n    {\n        if(CFNumberGetValue(value_cf, kCFNumberSInt32Type, variable_data_buffer))\n            ret = variable_data_buffer;\n    }\n    else if(CFGetTypeID(value_cf) == CFBooleanGetTypeID())\n    {\n        *variable_data_buffer = CFBooleanGetValue(value_cf);\n        ret = variable_data_buffer;\n    }\n    else\n    {\n        last_iokit_function = \"CFGetTypeID\";\n        CFRelease(value_cf);\n        return -1;\n    }\n\n    CFRelease(value_cf);\n    if(ret == nullptr)\n    {\n        last_iokit_function = nullptr;\n        return -1;\n    }\n\n    *data = variable_data_buffer;\n    *attributes = 0;\n    return 0;\n}\n\nint efi_del_variable(efi_guid_t guid, const char *name)\n{\n    return efi_set_variable(guid, kIONVRAMDeletePropertyKey, (uint8_t *)name, strlen(name), 0, 0);\n}\n\nint efi_set_variable(efi_guid_t guid, const char *name, uint8_t *data, size_t data_size, uint32_t attributes, mode_t mode)\n{\n    (void)attributes;\n    (void)mode;\n\n    CFStringRef name_cf = get_nvram_variable_name(&guid, name);\n    if(name_cf == nullptr)\n        return -1;\n\n    CFTypeRef value_cf = IORegistryEntryCreateCFProperty(options_entry, name_cf, kCFAllocatorDefault, kNilOptions);\n    if(value_cf == nullptr)\n    {\n        last_iokit_function = \"IORegistryEntryCreateCFProperty\";\n        return -1;\n    }\n\n    if(CFGetTypeID(value_cf) == CFDataGetTypeID())\n    {\n        CFRelease(value_cf);\n        value_cf = CFDataCreate(kCFAllocatorDefault, data, (CFIndex)data_size);\n        last_iokit_function = \"CFDataCreate\";\n    }\n    else if(CFGetTypeID(value_cf) == CFStringGetTypeID())\n    {\n        CFRelease(value_cf);\n        value_cf = CFStringCreateWithBytes(kCFAllocatorDefault, data, (CFIndex)data_size, kCFStringEncodingUTF8, false);\n        last_iokit_function = \"CFStringCreateWithBytes\";\n    }\n    else if(CFGetTypeID(value_cf) == CFNumberGetTypeID())\n    {\n        CFRelease(value_cf);\n        if(data_size == sizeof(int32_t))\n            value_cf = CFNumberCreate(kCFAllocatorDefault, kCFNumberSInt32Type, data);\n        else\n            value_cf = nullptr;\n\n        last_iokit_function = \"CFNumberCreate\";\n    }\n    else if(CFGetTypeID(value_cf) == CFBooleanGetTypeID())\n    {\n        CFRelease(value_cf);\n        if(data_size == sizeof(bool))\n            value_cf = (*(bool *)data) ? kCFBooleanTrue : kCFBooleanFalse;\n        else\n            value_cf = nullptr;\n\n        last_iokit_function = \"CFBooleanCreate\";\n    }\n    else\n    {\n        last_iokit_function = \"CFGetTypeID\";\n        CFRelease(value_cf);\n        CFRelease(name_cf);\n        return -1;\n    }\n\n    if(value_cf == nullptr)\n    {\n        CFRelease(name_cf);\n        return -1;\n    }\n\n    err = IORegistryEntrySetCFProperty(options_entry, name_cf, value_cf);\n    CFRelease(value_cf);\n    CFRelease(name_cf);\n    if(err != KERN_SUCCESS)\n    {\n        last_iokit_function = \"IORegistryEntrySetCFProperty\";\n        return -1;\n    }\n\n    return 0;\n}\n\nstatic void (*efi_get_next_variable_name_progress_cb)(size_t, size_t) = nullptr;\n\nvoid efi_set_get_next_variable_name_progress_cb(void (*progress_cb)(size_t, size_t))\n{\n    efi_get_next_variable_name_progress_cb = progress_cb;\n}\n\nstatic CFMutableDictionaryRef variables_cf = nullptr;\nstatic size_t current_variable = 0;\nstatic size_t total_variables = 0;\nstatic CFTypeRef *variable_names = nullptr;\nstatic char *variable_name_buffer = nullptr;\nstatic efi_guid_t current_guid = {0};\n\nint efi_get_next_variable_name(efi_guid_t **guid, char **name)\n{\n    if(current_variable == 0)\n    {\n        err = IORegistryEntryCreateCFProperties(options_entry, &variables_cf, kCFAllocatorDefault, kNilOptions);\n        if(err != KERN_SUCCESS)\n        {\n            last_iokit_function = \"IORegistryEntryCreateCFProperties\";\n            return -1;\n        }\n\n        total_variables = (size_t)CFDictionaryGetCount(variables_cf);\n        free(variable_names);\n        variable_names = malloc(total_variables * sizeof(CFTypeRef));\n        if(variable_names == nullptr)\n        {\n            CFRelease(variables_cf);\n            last_iokit_function = nullptr;\n            return -1;\n        }\n\n        CFDictionaryGetKeysAndValues(variables_cf, variable_names, nullptr);\n    }\n\n    if(efi_get_next_variable_name_progress_cb)\n        efi_get_next_variable_name_progress_cb(current_variable, total_variables);\n\n    if(current_variable >= total_variables)\n    {\n        current_variable = 0;\n        CFRelease(variables_cf);\n        return 0;\n    }\n\n    if(CFGetTypeID(variable_names[current_variable]) != CFStringGetTypeID())\n    {\n        CFRelease(variables_cf);\n        last_iokit_function = \"CFGetTypeID\";\n        return -1;\n    }\n\n    CFStringRef variable = (CFStringRef)variable_names[current_variable++];\n    size_t variable_name_length = (size_t)CFStringGetLength(variable) + 1;\n    free(variable_name_buffer);\n    variable_name_buffer = malloc(variable_name_length);\n    if(variable_name_buffer == nullptr)\n    {\n        CFRelease(variables_cf);\n        last_iokit_function = nullptr;\n        return -1;\n    }\n\n    if(!CFStringGetCString(variable, variable_name_buffer, (CFIndex)variable_name_length, kCFStringEncodingUTF8))\n    {\n        CFRelease(variables_cf);\n        last_iokit_function = \"CFStringGetCString\";\n        return -1;\n    }\n\n    char *ptr = strchr(variable_name_buffer, ':');\n    if(ptr == nullptr)\n    {\n        *guid = (efi_guid_t *)&efi_guid_apple;\n        *name = variable_name_buffer;\n        return 1;\n    }\n\n    if(ptr - variable_name_buffer != 36)\n    {\n        *guid = (efi_guid_t *)&efi_guid_apple;\n        *name = variable_name_buffer;\n        return 1;\n    }\n\n    if(memcpy(current_guid.data, variable_name_buffer, 36) == nullptr)\n    {\n        CFRelease(variables_cf);\n        last_iokit_function = nullptr;\n        return -1;\n    }\n\n    *guid = &current_guid;\n    *name = ptr + 1;\n    return 1;\n}\n\nint efi_guid_cmp(const efi_guid_t *a, const efi_guid_t *b)\n{\n    return strncmp(a->data, b->data, sizeof(a->data) / sizeof(a->data[0]));\n}\n\nint efi_error_get(unsigned int n, char **const filename, char **const function, int *line, char **const message, int *error)\n{\n    if(n == 1u)\n        return 0;\n\n    if(n > 1u)\n        return -1;\n\n    *filename = \"IOKitLib.h\";\n    *line = -1;\n    *error = err;\n    *function = last_iokit_function;\n    *message = mach_error_string(err);\n    return 1;\n}\n\nvoid efi_error_clear(void)\n{\n    err = KERN_SUCCESS;\n    last_iokit_function = nullptr;\n}\n"
  },
  {
    "path": "src/efivar-lite.linux.c",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#include \"compat.h\"\n\n#include \"efivar-lite/efivar-lite.h\"\n\n#if BYTE_ORDER == LITTLE_ENDIAN\nconst efi_guid_t efi_guid_apple = {0x7c436110, 0xab2a, 0x4bbb, 0x80a8, {0xfe, 0x41, 0x99, 0x5c, 0x9f, 0x82}};\n#else\nconst efi_guid_t efi_guid_apple = {0x7c436110, 0xab2a, 0x4bbb, 0xa880, {0xfe, 0x41, 0x99, 0x5c, 0x9f, 0x82}};\n#endif\n\nvoid efi_set_get_next_variable_name_progress_cb(void (*progress_cb)(size_t, size_t))\n{\n    (void)progress_cb;\n    // Nothing to do here, efivar doesn't expose progress tracking (and it's not really needed, variables listing is pretty fast)\n}\n"
  },
  {
    "path": "src/efivar-lite.win32.c",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n/*\n * efivar interface <> WinAPI translation.\n */\n#include \"efivar-lite.common.h\"\n\n#include <Windows.h>\n#include <ntstatus.h>\n#include <winternl.h>\n\n#include \"efivar-lite/device-paths.h\"\n#include \"efivar-lite/load-option.h\"\n\n#pragma comment(lib, \"advapi32.lib\")\n#pragma comment(lib, \"ntdll.lib\")\n\n// NT syscall for fetching EFI Variables\nNTSTATUS\nNTAPI\nNtEnumerateSystemEnvironmentValuesEx(\n    _In_ ULONG InformationClass,\n    _Out_ PVOID Buffer,\n    _Inout_ PULONG BufferLength);\n\nstatic const ULONG SystemEnvironmentNameInformation = 1;\ntypedef struct\n{\n    ULONG NextEntryOffset;\n    GUID VendorGUID;\n    TCHAR Name[ANYSIZE_ARRAY];\n} variable_info_t;\n// END\n\nconst efi_guid_t efi_guid_global = {_T(\"{8BE4DF61-93CA-11D2-AA0D-00E098032B8C}\")};\nconst efi_guid_t efi_guid_apple = {_T(\"{7C436110-AB2A-4BBB-A880-FE41995C9F82}\")};\nstatic TCHAR *last_winapi_function = nullptr;\n\nint efi_variables_supported(void)\n{\n    LUID luid;\n    if(LookupPrivilegeValue(nullptr, SE_SYSTEM_ENVIRONMENT_NAME, &luid))\n    {\n        TOKEN_PRIVILEGES tp;\n        memset(&tp, 0, sizeof(tp));\n        tp.PrivilegeCount = 1;\n        tp.Privileges[0].Luid = luid;\n        tp.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED;\n\n        HANDLE process = GetCurrentProcess();\n        HANDLE token;\n        if(!OpenProcessToken(process, TOKEN_ADJUST_PRIVILEGES, &token))\n        {\n            last_winapi_function = _T(\"OpenProcessToken\");\n            return 0;\n        }\n\n        if(!AdjustTokenPrivileges(token, FALSE, &tp, sizeof(tp), nullptr, nullptr))\n        {\n            last_winapi_function = _T(\"AdjustTokenPrivileges\");\n            return 0;\n        }\n    }\n    else\n    {\n        last_winapi_function = _T(\"LookupPrivilegeValue\");\n        return 0;\n    }\n\n    FIRMWARE_TYPE firmware_type;\n    memset(&firmware_type, 0, sizeof(firmware_type));\n    if(!GetFirmwareType(&firmware_type) || firmware_type != FirmwareTypeUefi)\n    {\n        last_winapi_function = _T(\"GetFirmwareType\");\n        return 0;\n    }\n\n    uint8_t *data = nullptr;\n    size_t data_size = 0;\n    uint32_t attributes = 0;\n    efi_guid_t guid = {_T(\"{00000000-0000-0000-0000-000000000000}\")};\n    if(efi_get_variable(guid, _T(\"\"), &data, &data_size, &attributes) < 0 && GetLastError() == ERROR_INVALID_FUNCTION)\n        return 0;\n\n    return 1;\n}\n\nstatic uint8_t *variable_data_buffer = nullptr;\n\nint efi_get_variable(efi_guid_t guid, const TCHAR *name, uint8_t **data, size_t *data_size, uint32_t *attributes)\n{\n    *data_size = 64;\n    DWORD attr = 0;\n    DWORD ret = 0;\n    do\n    {\n        *data_size *= 2;\n        free(variable_data_buffer);\n        variable_data_buffer = malloc(*data_size);\n        if(!variable_data_buffer)\n            return -1;\n\n        ret = GetFirmwareEnvironmentVariableEx(name, guid.data, variable_data_buffer, (DWORD)*data_size, &attr);\n        last_winapi_function = _T(\"GetFirmwareEnvironmentVariableEx\");\n    } while(ret == 0 && GetLastError() == ERROR_INSUFFICIENT_BUFFER);\n\n    *data_size = ret;\n    if(ret == 0)\n        return -1;\n\n    *attributes = attr;\n    *data = variable_data_buffer;\n    return 0;\n}\n\nint efi_del_variable(efi_guid_t guid, const TCHAR *name)\n{\n    // setting nSize (data_size) = 0 => deletes variable\n    // https://learn.microsoft.com/en-us/windows/win32/api/winbase/nf-winbase-setfirmwareenvironmentvariablea#parameters\n    BOOL ret = SetFirmwareEnvironmentVariable(name, guid.data, nullptr, 0);\n    last_winapi_function = _T(\"SetFirmwareEnvironmentVariable\");\n    return ret == 0 ? -1 : 0;\n}\n\nint efi_set_variable(efi_guid_t guid, const TCHAR *name, uint8_t *data, size_t data_size, uint32_t attributes, mode_t mode)\n{\n    (void)mode;\n    BOOL ret = SetFirmwareEnvironmentVariableEx(name, guid.data, data, (DWORD)data_size, attributes);\n    last_winapi_function = _T(\"SetFirmwareEnvironmentVariableEx\");\n    return ret == 0 ? -1 : 0;\n}\n\nstatic void (*efi_get_next_variable_name_progress_cb)(size_t, size_t) = nullptr;\n\nvoid efi_set_get_next_variable_name_progress_cb(void (*progress_cb)(size_t, size_t))\n{\n    efi_get_next_variable_name_progress_cb = progress_cb;\n}\n\nstatic ULONG current_offset = 0u;\nstatic PVOID variables = nullptr;\nstatic ULONG variables_size = 0u;\nstatic efi_guid_t current_guid = {0};\n\nint efi_get_next_variable_name(efi_guid_t **guid, TCHAR **name)\n{\n    if(current_offset == 0u)\n    {\n        NTSTATUS ret = 0;\n        variables_size = 1;\n        do\n        {\n            free(variables);\n            variables = malloc(variables_size);\n            if(!variables)\n                return -1;\n\n            ret = NtEnumerateSystemEnvironmentValuesEx(SystemEnvironmentNameInformation, variables, &variables_size);\n            last_winapi_function = _T(\"NtEnumerateSystemEnvironmentValuesEx\");\n        } while(ret == STATUS_BUFFER_TOO_SMALL || ret == STATUS_INFO_LENGTH_MISMATCH);\n\n        if(ret < 0)\n            return ret;\n    }\n\n    if(efi_get_next_variable_name_progress_cb)\n        efi_get_next_variable_name_progress_cb(current_offset, variables_size);\n\n    if(current_offset >= variables_size)\n    {\n        current_offset = 0u;\n        return 0;\n    }\n\n    const variable_info_t *variable = advance_bytes(variables, current_offset);\n    if(!variable->NextEntryOffset)\n        current_offset = variables_size;\n    else\n        current_offset += variable->NextEntryOffset;\n\n    if(_sntprintf_s(current_guid.data, 39, 39, _T(\"{%08lX-%04hX-%04hX-%02hhX%02hhX-%02hhX%02hhX%02hhX%02hhX%02hhX%02hhX}\"),\n           variable->VendorGUID.Data1, variable->VendorGUID.Data2, variable->VendorGUID.Data3,\n           variable->VendorGUID.Data4[0], variable->VendorGUID.Data4[1], variable->VendorGUID.Data4[2], variable->VendorGUID.Data4[3],\n           variable->VendorGUID.Data4[4], variable->VendorGUID.Data4[5], variable->VendorGUID.Data4[6], variable->VendorGUID.Data4[7])\n        != 38)\n        return -1;\n\n    *guid = &current_guid;\n    *name = (TCHAR *)variable->Name;\n    return 1;\n}\n\nint efi_guid_cmp(const efi_guid_t *a, const efi_guid_t *b)\n{\n    return _tcsncmp(a->data, b->data, sizeof(a->data) / sizeof(a->data[0]));\n}\n\nstatic TCHAR error_buffer[1024];\n\nint efi_error_get(unsigned int n, TCHAR **const filename, TCHAR **const function, int *line, TCHAR **const message, int *error)\n{\n    if(n == 1u)\n        return 0;\n\n    if(n > 1u)\n        return -1;\n\n    *filename = _T(\"windows.h\");\n    *line = -1;\n    DWORD err = GetLastError();\n    *error = (int)err;\n    *function = last_winapi_function;\n    if(!FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS, nullptr, err, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), error_buffer, 1024, nullptr))\n        return -1;\n\n    *message = error_buffer;\n    return 1;\n}\n\nvoid efi_error_clear(void)\n{\n    // Nothing to do\n}\n"
  },
  {
    "path": "src/filepathdelegate.cpp",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#include \"compat.h\"\n\n#include \"filepathdelegate.h\"\n\nvoid FilePathDelegate::setupWidgetFromItem(Widget &widget, const Item &item, const QModelIndex & /*index*/, int role) const\n{\n    if(role != Qt::DisplayRole && role != Qt::SizeHintRole)\n        return;\n\n    widget.setText(std::visit([](const auto &obj)\n        { return obj.toString(); },\n        *item));\n}\n"
  },
  {
    "path": "src/filepathdialog.cpp",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#include \"compat.h\"\n\n#include \"filepathdialog.h\"\n#include \"form/ui_filepathdialog.h\"\n\n#include <QMessageBox>\n\n#include \"driveinfo.h\"\n\nQSize HorizontalTabStyle::sizeFromContents(ContentsType type, const QStyleOption *option, const QSize &size, const QWidget *widget) const\n{\n    QSize s = QProxyStyle::sizeFromContents(type, option, size, widget);\n    if(type == QStyle::CT_TabBarTab)\n        s.transpose();\n\n    return s;\n}\n\nvoid HorizontalTabStyle::drawControl(ControlElement element, const QStyleOption *option, QPainter *painter, const QWidget *widget) const\n{\n    if(element != CE_TabBarTabLabel)\n    {\n        QProxyStyle::drawControl(element, option, painter, widget);\n        return;\n    }\n\n    const QStyleOptionTab *tab = qstyleoption_cast<const QStyleOptionTab *>(option);\n    if(!tab)\n    {\n        QProxyStyle::drawControl(element, option, painter, widget);\n        return;\n    }\n\n    QStyleOptionTab opt(*tab);\n    opt.shape = QTabBar::RoundedNorth;\n    QProxyStyle::drawControl(element, &opt, painter, widget);\n}\n\nFilePathDialog::FilePathDialog(QWidget *parent)\n    : QDialog(parent)\n    , ui{std::make_unique<Ui::FilePathDialog>()}\n{\n    ui->setupUi(this);\n    setFilePath(nullptr);\n    ui->options->tabBar()->setStyle(&horizontal_tab_style);\n}\n\nFilePathDialog::~FilePathDialog()\n{\n}\n\nvoid FilePathDialog::setReadOnly(bool readonly)\n{\n    for(auto &widget: findChildren<QLineEdit *>())\n        widget->setReadOnly(readonly);\n\n    for(auto &widget: findChildren<QPlainTextEdit *>())\n        widget->setReadOnly(readonly);\n\n    for(auto &widget: findChildren<QSpinBox *>())\n        widget->setReadOnly(readonly);\n\n    for(auto &widget: findChildren<QComboBox *>())\n        widget->setDisabled(readonly);\n\n    for(auto &widget: findChildren<QCheckBox *>())\n        widget->setDisabled(readonly);\n\n    for(auto &widget: findChildren<QLabel *>())\n        widget->setDisabled(readonly);\n\n    ui->hd_disk_refresh->setDisabled(readonly);\n    ui->options->tabBar()->setDisabled(readonly);\n    ui->adr_additional_adr_format->setDisabled(false);\n    ui->dns_data_format->setDisabled(false);\n    ui->rest_service_data_format->setDisabled(false);\n    ui->unknown_data_format->setDisabled(false);\n    ui->vendor_data_format->setDisabled(false);\n}\n\nauto FilePathDialog::toFilePath() const -> FilePath::ANY\n{\n    switch(static_cast<FormIndex>(ui->options->currentIndex()))\n    {\n    // Hardware\n    case FormIndex::PCI:\n    {\n        FilePath::Pci value{};\n        value.function = static_cast<decltype(value.function)>(ui->pci_function->value());\n        value.device = static_cast<decltype(value.device)>(ui->pci_device->value());\n        return value;\n    }\n    case FormIndex::PCCARD:\n    {\n        FilePath::Pccard value{};\n        value.function_number = static_cast<decltype(value.function_number)>(ui->pccard_function_number->value());\n        return value;\n    }\n    case FormIndex::MEMORY_MAPPED:\n    {\n        FilePath::MemoryMapped value{};\n        value.memory_type = static_cast<decltype(value.memory_type)>(ui->memory_mapped_memory_type->currentIndex());\n        value.start_address = ui->memory_mapped_start_address->text().toULongLong(nullptr, HEX_BASE);\n        value.end_address = ui->memory_mapped_end_address->text().toULongLong(nullptr, HEX_BASE);\n        return value;\n    }\n    case FormIndex::CONTROLLER:\n    {\n        FilePath::Controller value{};\n        value.controller_number = static_cast<decltype(value.controller_number)>(ui->controller_controller_number->value());\n        return value;\n    }\n    case FormIndex::BMC:\n    {\n        FilePath::Bmc value{};\n        value.interface_type = static_cast<decltype(value.interface_type)>(ui->bmc_interface_type->currentIndex());\n        value.base_address = ui->bmc_base_address->text().toULongLong(nullptr, HEX_BASE);\n        return value;\n    }\n    // ACPI\n    case FormIndex::ACPI:\n    {\n        FilePath::Acpi value{};\n        value.hid = ui->acpi_hid->text().toUInt(nullptr, HEX_BASE);\n        value.uid = ui->acpi_uid->text().toUInt(nullptr, HEX_BASE);\n        return value;\n    }\n    case FormIndex::EXPANDED:\n    {\n        FilePath::Expanded value{};\n        value.hid = ui->expanded_hid->text().toUInt(nullptr, HEX_BASE);\n        value.uid = ui->expanded_uid->text().toUInt(nullptr, HEX_BASE);\n        value.cid = ui->expanded_cid->text().toUInt(nullptr, HEX_BASE);\n        value.hidstr = ui->expanded_hidstr->text();\n        value.uidstr = ui->expanded_uidstr->text();\n        value.cidstr = ui->expanded_cidstr->text();\n        return value;\n    }\n    case FormIndex::ADR:\n    {\n        FilePath::Adr value{};\n        value.adr = ui->adr_adr->text().toUInt(nullptr, HEX_BASE);\n        value.additional_adr = getData(*ui->adr_additional_adr, ui->adr_additional_adr_format->currentIndex());\n        return value;\n    }\n    case FormIndex::NVDIMM:\n    {\n        FilePath::Nvdimm value{};\n        value.nfit_device_handle = ui->nvdimm_nfit_device_handle->text().toUInt(nullptr, HEX_BASE);\n        return value;\n    }\n    // Messaging\n    case FormIndex::ATAPI:\n    {\n        FilePath::Atapi value{};\n        value.primary = ui->atapi_primary->isChecked();\n        value.slave = ui->atapi_slave->isChecked();\n        value.lun = static_cast<decltype(value.lun)>(ui->atapi_lun->value());\n        return value;\n    }\n    case FormIndex::SCSI:\n    {\n        FilePath::Scsi value{};\n        value.pun = static_cast<decltype(value.pun)>(ui->scsi_pun->value());\n        value.lun = static_cast<decltype(value.lun)>(ui->scsi_lun->value());\n        return value;\n    }\n    case FormIndex::FIBRE_CHANNEL:\n    {\n        FilePath::FibreChannel value{};\n        value.reserved = ui->fibre_channel_reserved->text().toUInt(nullptr, HEX_BASE);\n        value.world_wide_name = ui->fibre_channel_world_wide_name->text().toULongLong(nullptr, HEX_BASE);\n        value.lun = ui->fibre_channel_lun->text().toULongLong(nullptr, HEX_BASE);\n        return value;\n    }\n    case FormIndex::FIREWIRE:\n    {\n        FilePath::Firewire value{};\n        value.reserved = ui->firewire_reserved->text().toUInt(nullptr, HEX_BASE);\n        value.guid = ui->firewire_guid->text().toULongLong(nullptr, HEX_BASE);\n        return value;\n    }\n    case FormIndex::USB:\n    {\n        FilePath::Usb value{};\n        value.parent_port_number = static_cast<decltype(value.parent_port_number)>(ui->usb_parent_port_number->value());\n        value.interface_number = static_cast<decltype(value.interface_number)>(ui->usb_interface_number->value());\n        return value;\n    }\n    case FormIndex::I2O:\n    {\n        FilePath::I2o value{};\n        value.tid = static_cast<decltype(value.tid)>(ui->i2o_tid->value());\n        return value;\n    }\n    case FormIndex::INFINIBAND:\n    {\n        FilePath::Infiniband value{};\n        value.resource_flags = ui->infiniband_resource_flags->text().toUInt(nullptr, HEX_BASE);\n        value.port_gid = QUuid::fromString(ui->infiniband_port_gid->text());\n        value.ioc_guid_service_id = ui->infiniband_ioc_guid_service_id->text().toULongLong(nullptr, HEX_BASE);\n        value.target_port_id = ui->infiniband_target_port_id->text().toULongLong(nullptr, HEX_BASE);\n        value.device_id = ui->infiniband_device_id->text().toULongLong(nullptr, HEX_BASE);\n        return value;\n    }\n    case FormIndex::MAC_ADDRESS:\n    {\n        FilePath::MacAddress value{};\n        value.address = ui->mac_address_address->text();\n        value.if_type = static_cast<decltype(value.if_type)>(ui->mac_address_if_type->value());\n        return value;\n    }\n    case FormIndex::IPV4:\n    {\n        FilePath::Ipv4 value{};\n        value.local_ip_address.setAddress(ui->ipv4_local_ip_address->text());\n        value.remote_ip_address.setAddress(ui->ipv4_remote_ip_address->text());\n        value.local_port = static_cast<decltype(value.local_port)>(ui->ipv4_local_port->value());\n        value.remote_port = static_cast<decltype(value.remote_port)>(ui->ipv4_remote_port->value());\n        value.protocol = static_cast<decltype(value.protocol)>(ui->ipv4_protocol->value());\n        value.static_ip_address = ui->ipv4_static_ip_address->isChecked();\n        value.gateway_ip_address.setAddress(ui->ipv4_gateway_ip_address->text());\n        value.subnet_mask.setAddress(ui->ipv4_subnet_mask->text());\n        return value;\n    }\n    case FormIndex::IPV6:\n    {\n        FilePath::Ipv6 value{};\n        value.local_ip_address.setAddress(ui->ipv6_local_ip_address->text());\n        value.remote_ip_address.setAddress(ui->ipv6_remote_ip_address->text());\n        value.local_port = static_cast<decltype(value.local_port)>(ui->ipv6_local_port->value());\n        value.remote_port = static_cast<decltype(value.remote_port)>(ui->ipv6_remote_port->value());\n        value.protocol = static_cast<decltype(value.protocol)>(ui->ipv6_protocol->value());\n        value.ip_address_origin = static_cast<decltype(value.ip_address_origin)>(ui->ipv6_ip_address_origin->currentIndex());\n        value.prefix_length = static_cast<decltype(value.prefix_length)>(ui->ipv6_prefix_length->value());\n        value.gateway_ip_address.setAddress(ui->ipv6_gateway_ip_address->text());\n        return value;\n    }\n    case FormIndex::UART:\n    {\n        FilePath::Uart value{};\n        value.reserved = ui->uart_reserved->text().toUInt(nullptr, HEX_BASE);\n        value.baud_rate = ui->uart_baud_rate->text().toULongLong(nullptr, HEX_BASE);\n        value.data_bits = static_cast<decltype(value.data_bits)>(ui->uart_data_bits->value());\n        value.parity = static_cast<decltype(value.parity)>(ui->uart_parity->currentIndex());\n        value.stop_bits = static_cast<decltype(value.stop_bits)>(ui->uart_stop_bits->currentIndex());\n        return value;\n    }\n    case FormIndex::USB_CLASS:\n    {\n        FilePath::UsbClass value{};\n        value.vendor_id = ui->usb_class_vendor_id->text().toUShort(nullptr, HEX_BASE);\n        value.product_id = ui->usb_class_product_id->text().toUShort(nullptr, HEX_BASE);\n        value.device_class = static_cast<decltype(value.device_class)>(ui->usb_class_device_class->text().toUShort(nullptr, HEX_BASE));\n        value.device_subclass = static_cast<decltype(value.device_subclass)>(ui->usb_class_device_subclass->text().toUShort(nullptr, HEX_BASE));\n        value.device_protocol = static_cast<decltype(value.device_protocol)>(ui->usb_class_device_protocol->text().toUShort(nullptr, HEX_BASE));\n        return value;\n    }\n    case FormIndex::USB_WWID:\n    {\n        FilePath::UsbWwid value{};\n        value.interface_number = static_cast<decltype(value.interface_number)>(ui->usb_wwid_interface_number->value());\n        value.device_vendor_id = ui->usb_wwid_device_vendor_id->text().toUShort(nullptr, HEX_BASE);\n        value.device_product_id = ui->usb_wwid_device_product_id->text().toUShort(nullptr, HEX_BASE);\n        value.serial_number = ui->usb_wwid_serial_number->text();\n        return value;\n    }\n    case FormIndex::DEVICE_LOGICAL_UNIT:\n    {\n        FilePath::DeviceLogicalUnit value{};\n        value.lun = static_cast<decltype(value.lun)>(ui->device_logical_unit_lun->value());\n        return value;\n    }\n    case FormIndex::SATA:\n    {\n        FilePath::Sata value{};\n        value.hba_port_number = static_cast<decltype(value.hba_port_number)>(ui->sata_hba_port_number->value());\n        value.port_multiplier_port_number = static_cast<decltype(value.port_multiplier_port_number)>(ui->sata_port_multiplier_port_number->value());\n        value.lun = static_cast<decltype(value.lun)>(ui->sata_lun->value());\n        return value;\n    }\n    case FormIndex::ISCSI:\n    {\n        FilePath::Iscsi value{};\n        value.protocol = static_cast<decltype(value.protocol)>(ui->iscsi_protocol->value());\n        value.options = ui->iscsi_options->text().toUShort(nullptr, HEX_BASE);\n        value.lun = ui->iscsi_lun->text().toULongLong(nullptr, HEX_BASE);\n        value.target_portal_group = static_cast<decltype(value.target_portal_group)>(ui->iscsi_target_portal_group->value());\n        value.target_name = ui->iscsi_target_name->text();\n        return value;\n    }\n    case FormIndex::VLAN:\n    {\n        FilePath::Vlan value{};\n        value.vlan_id = static_cast<decltype(value.vlan_id)>(ui->vlan_vlan_id->value());\n        return value;\n    }\n    case FormIndex::FIBRE_CHANNEL_EX:\n    {\n        FilePath::FibreChannelEx value{};\n        value.reserved = ui->fibre_channel_ex_reserved->text().toUInt(nullptr, HEX_BASE);\n        value.world_wide_name = ui->fibre_channel_ex_world_wide_name->text().toULongLong(nullptr, HEX_BASE);\n        value.lun = ui->fibre_channel_ex_lun->text().toULongLong(nullptr, HEX_BASE);\n        return value;\n    }\n    case FormIndex::SAS_EXTENDED_MESSAGING:\n    {\n        FilePath::SasExtendedMessaging value{};\n        value.sas_address = ui->sas_extended_messaging_sas_address->text().toULongLong(nullptr, HEX_BASE);\n        value.lun = ui->sas_extended_messaging_lun->text().toULongLong(nullptr, HEX_BASE);\n        value.device_and_topology_info = ui->sas_extended_messaging_device_and_topology_info->text().toUShort(nullptr, HEX_BASE);\n        value.relative_target_port = static_cast<decltype(value.relative_target_port)>(ui->sas_extended_messaging_relative_target_port->value());\n        return value;\n    }\n    case FormIndex::NVM_EXPRESS_NS:\n    {\n        FilePath::NvmExpressNs value{};\n        value.namespace_identifier = ui->nvm_express_ns_namespace_identifier->text().toUInt(nullptr, HEX_BASE);\n        value.ieee_extended_unique_identifier = ui->nvm_express_ns_ieee_extended_unique_identifier->text().toULongLong(nullptr, HEX_BASE);\n        return value;\n    }\n    case FormIndex::URI:\n    {\n        FilePath::Uri value{};\n        value.uri = QUrl::fromUserInput(ui->uri_uri->text());\n        return value;\n    }\n    case FormIndex::UFS:\n    {\n        FilePath::Ufs value{};\n        value.pun = static_cast<decltype(value.pun)>(ui->ufs_pun->text().toUShort(nullptr, HEX_BASE));\n        value.lun = static_cast<decltype(value.lun)>(ui->ufs_lun->text().toUShort(nullptr, HEX_BASE));\n        return value;\n    }\n    case FormIndex::SD:\n    {\n        FilePath::Sd value{};\n        value.slot_number = static_cast<decltype(value.slot_number)>(ui->sd_slot_number->value());\n        return value;\n    }\n    case FormIndex::BLUETOOTH:\n    {\n        FilePath::Bluetooth value{};\n        value.device_address = ui->bluetooth_device_address->text();\n        return value;\n    }\n    case FormIndex::WI_FI:\n    {\n        FilePath::WiFi value{};\n        value.ssid = ui->wi_fi_ssid->text();\n        return value;\n    }\n    case FormIndex::EMMC:\n    {\n        FilePath::Emmc value{};\n        value.slot_number = static_cast<decltype(value.slot_number)>(ui->emmc_slot_number->value());\n        return value;\n    }\n    case FormIndex::BLUETOOTHLE:\n    {\n        FilePath::Bluetoothle value{};\n        value.device_address = ui->bluetoothle_device_address->text();\n        value.address_type = static_cast<decltype(value.address_type)>(ui->bluetoothle_address_type->currentIndex());\n        return value;\n    }\n    case FormIndex::DNS:\n    {\n        FilePath::Dns value{};\n        value.ipv6 = ui->dns_ipv6->isChecked();\n        value.data = getData(*ui->dns_data, ui->dns_data_format->currentIndex());\n        return value;\n    }\n    case FormIndex::NVDIMM_NS:\n    {\n        FilePath::NvdimmNs value{};\n        value.uuid = QUuid::fromString(ui->nvdimm_ns_uuid->text());\n        return value;\n    }\n    case FormIndex::REST_SERVICE:\n    {\n        FilePath::RestService value{};\n        value.rest_service = static_cast<decltype(value.rest_service)>(ui->rest_service_rest_service->currentIndex());\n        value.access_mode = static_cast<decltype(value.access_mode)>(ui->rest_service_access_mode->currentIndex());\n        value.guid = QUuid::fromString(ui->rest_service_guid->text());\n        value.data = getData(*ui->rest_service_data, ui->rest_service_data_format->currentIndex());\n        return value;\n    }\n    case FormIndex::NVME_OF_NS:\n    {\n        FilePath::NvmeOfNs value{};\n        value.nidt = static_cast<decltype(value.nidt)>(ui->nvme_of_ns_nidt->value());\n        value.nid = QUuid::fromString(ui->nvme_of_ns_nid->text());\n        value.subsystem_nqn = ui->nvme_of_ns_subsystem_nqn->text();\n        return value;\n    }\n    // Media\n    case FormIndex::HD:\n    {\n        FilePath::Hd value{};\n        value.partition_number = static_cast<decltype(value.partition_number)>(ui->hd_partition_number->value());\n        value.partition_start = ui->hd_partition_start->text().toULongLong(nullptr, HEX_BASE);\n        value.partition_size = ui->hd_partition_size->text().toULongLong(nullptr, HEX_BASE);\n        value.signature_type = static_cast<decltype(value.signature_type)>(ui->hd_signature_type->currentIndex());\n        value.partition_format = static_cast<decltype(value.partition_format)>(value.signature_type != EFIBoot::File_path::MEDIA::Hd::SIGNATURE_TYPE::NONE ? value.signature_type : EFIBoot::File_path::MEDIA::Hd::SIGNATURE_TYPE::MBR);\n\n        switch(value.signature_type)\n        {\n        case EFIBoot::File_path::MEDIA::Hd::SIGNATURE_TYPE::GUID:\n            value.partition_signature = QUuid::fromString(ui->hd_partition_signature->text());\n            break;\n\n        case EFIBoot::File_path::MEDIA::Hd::SIGNATURE_TYPE::MBR:\n            value.partition_signature = QUuid{ui->hd_partition_signature->text().toUInt(nullptr, HEX_BASE), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};\n            break;\n\n        case EFIBoot::File_path::MEDIA::Hd::SIGNATURE_TYPE::NONE:\n            value.partition_signature = QUuid{};\n            break;\n        }\n\n        return value;\n    }\n    case FormIndex::CD_ROM:\n    {\n        FilePath::CdRom value{};\n        value.boot_entry = static_cast<decltype(value.boot_entry)>(ui->cd_rom_boot_entry->value());\n        value.partition_start = ui->cd_rom_partition_start->text().toULongLong(nullptr, HEX_BASE);\n        value.partition_size = ui->cd_rom_partition_size->text().toULongLong(nullptr, HEX_BASE);\n        return value;\n    }\n    case FormIndex::FILE_PATH:\n    {\n        FilePath::FilePath value{};\n        value.path_name = ui->file_path_path_name->text();\n        return value;\n    }\n    case FormIndex::PROTOCOL:\n    {\n        FilePath::Protocol value{};\n        value.guid = QUuid::fromString(ui->protocol_guid->text());\n        return value;\n    }\n    case FormIndex::FIRMWARE_FILE:\n    {\n        FilePath::FirmwareFile value{};\n        value.name = QUuid::fromString(ui->firmware_file_name->text());\n        return value;\n    }\n    case FormIndex::FIRMWARE_VOLUME:\n    {\n        FilePath::FirmwareVolume value{};\n        value.name = QUuid::fromString(ui->firmware_volume_name->text());\n        return value;\n    }\n    case FormIndex::RELATIVE_OFFSET_RANGE:\n    {\n        FilePath::RelativeOffsetRange value{};\n        value.reserved = ui->relative_offset_range_reserved->text().toUInt(nullptr, HEX_BASE);\n        value.starting_offset = ui->relative_offset_range_starting_offset->text().toULongLong(nullptr, HEX_BASE);\n        value.ending_offset = ui->relative_offset_range_ending_offset->text().toULongLong(nullptr, HEX_BASE);\n        return value;\n    }\n    case FormIndex::RAM_DISK:\n    {\n        FilePath::RamDisk value{};\n        value.starting_address = ui->ram_disk_starting_address->text().toULongLong(nullptr, HEX_BASE);\n        value.ending_address = ui->ram_disk_ending_address->text().toULongLong(nullptr, HEX_BASE);\n        value.guid = QUuid::fromString(ui->ram_disk_guid->text());\n        value.disk_instance = static_cast<decltype(value.disk_instance)>(ui->ram_disk_disk_instance->value());\n        return value;\n    }\n    // BIOS\n    case FormIndex::BOOT_SPECIFICATION:\n    {\n        FilePath::BootSpecification value{};\n        value.device_type = ui->boot_specification_device_type->text().toUShort(nullptr, HEX_BASE);\n        value.status_flag = ui->boot_specification_status_flag->text().toUShort(nullptr, HEX_BASE);\n        value.description = ui->boot_specification_description->text();\n        return value;\n    }\n    // Rest\n    case FormIndex::VENDOR:\n    {\n        FilePath::Vendor vendor;\n        switch(static_cast<VendorTypeIndex>(ui->vendor_type->currentIndex()))\n        {\n        case VendorTypeIndex::HW:\n            vendor._type = EFIBoot::File_path::HW::Vendor::TYPE;\n            break;\n\n        case VendorTypeIndex::MSG:\n            vendor._type = EFIBoot::File_path::MSG::Vendor::TYPE;\n            break;\n\n        case VendorTypeIndex::MEDIA:\n            vendor._type = EFIBoot::File_path::MEDIA::Vendor::TYPE;\n            break;\n        }\n\n        vendor.guid = QUuid::fromString(ui->vendor_guid->text());\n        vendor.data = getData(*ui->vendor_data, ui->vendor_data_format->currentIndex());\n        return vendor;\n    }\n    case FormIndex::END:\n    {\n        FilePath::End end;\n        if(ui->end_subtype->currentIndex() == 0)\n            end._subtype = EFIBoot::File_path::END::Instance::SUBTYPE;\n\n        else\n            end._subtype = EFIBoot::File_path::END::Entire::SUBTYPE;\n\n        return end;\n    }\n    case FormIndex::UNKNOWN:\n    {\n        FilePath::Unknown unknown;\n        unknown._type = static_cast<uint8_t>(ui->unknown_type->text().toUShort(nullptr, HEX_BASE));\n        unknown._subtype = static_cast<uint8_t>(ui->unknown_subtype->text().toUShort(nullptr, HEX_BASE));\n        unknown.data = getData(*ui->unknown_data, ui->unknown_data_format->currentIndex());\n        return unknown;\n    }\n    }\n\n    return {};\n}\n\nstruct FilePathVisitor\n{\n    FilePathDialog *parent;\n    explicit FilePathVisitor(FilePathDialog *parent_)\n        : parent{parent_}\n    {\n    }\n\n    void operator()(const FilePath::Pci &pci) { parent->setPciForm(pci); }\n    void operator()(const FilePath::Pccard &pccard) { parent->setPccardForm(pccard); }\n    void operator()(const FilePath::MemoryMapped &memory_mapped) { parent->setMemoryMappedForm(memory_mapped); }\n    void operator()(const FilePath::Controller &controller) { parent->setControllerForm(controller); }\n    void operator()(const FilePath::Bmc &bmc) { parent->setBmcForm(bmc); }\n    void operator()(const FilePath::Acpi &acpi) { parent->setAcpiForm(acpi); }\n    void operator()(const FilePath::Expanded &expanded) { parent->setExpandedForm(expanded); }\n    void operator()(const FilePath::Adr &adr) { parent->setAdrForm(adr); }\n    void operator()(const FilePath::Nvdimm &nvdimm) { parent->setNvdimmForm(nvdimm); }\n    void operator()(const FilePath::Atapi &atapi) { parent->setAtapiForm(atapi); }\n    void operator()(const FilePath::Scsi &scsi) { parent->setScsiForm(scsi); }\n    void operator()(const FilePath::FibreChannel &fibre_channel) { parent->setFibreChannelForm(fibre_channel); }\n    void operator()(const FilePath::Firewire &firewire) { parent->setFirewireForm(firewire); }\n    void operator()(const FilePath::Usb &usb) { parent->setUsbForm(usb); }\n    void operator()(const FilePath::I2o &i2o) { parent->setI2oForm(i2o); }\n    void operator()(const FilePath::Infiniband &infiniband) { parent->setInfinibandForm(infiniband); }\n    void operator()(const FilePath::MacAddress &mac_address) { parent->setMacAddressForm(mac_address); }\n    void operator()(const FilePath::Ipv4 &ipv4) { parent->setIpv4Form(ipv4); }\n    void operator()(const FilePath::Ipv6 &ipv6) { parent->setIpv6Form(ipv6); }\n    void operator()(const FilePath::Uart &uart) { parent->setUartForm(uart); }\n    void operator()(const FilePath::UsbClass &usb_class) { parent->setUsbClassForm(usb_class); }\n    void operator()(const FilePath::UsbWwid &usb_wwid) { parent->setUsbWwidForm(usb_wwid); }\n    void operator()(const FilePath::DeviceLogicalUnit &device_logical_unit) { parent->setDeviceLogicalUnitForm(device_logical_unit); }\n    void operator()(const FilePath::Sata &sata) { parent->setSataForm(sata); }\n    void operator()(const FilePath::Iscsi &iscsi) { parent->setIscsiForm(iscsi); }\n    void operator()(const FilePath::Vlan &vlan) { parent->setVlanForm(vlan); }\n    void operator()(const FilePath::FibreChannelEx &fibre_channel_ex) { parent->setFibreChannelExForm(fibre_channel_ex); }\n    void operator()(const FilePath::SasExtendedMessaging &sas_extended_messaging) { parent->setSasExtendedMessagingForm(sas_extended_messaging); }\n    void operator()(const FilePath::NvmExpressNs &nvm_express_ns) { parent->setNvmExpressNsForm(nvm_express_ns); }\n    void operator()(const FilePath::Uri &uri) { parent->setUriForm(uri); }\n    void operator()(const FilePath::Ufs &ufs) { parent->setUfsForm(ufs); }\n    void operator()(const FilePath::Sd &sd) { parent->setSdForm(sd); }\n    void operator()(const FilePath::Bluetooth &bluetooth) { parent->setBluetoothForm(bluetooth); }\n    void operator()(const FilePath::WiFi &wi_fi) { parent->setWiFiForm(wi_fi); }\n    void operator()(const FilePath::Emmc &emmc) { parent->setEmmcForm(emmc); }\n    void operator()(const FilePath::Bluetoothle &bluetoothle) { parent->setBluetoothleForm(bluetoothle); }\n    void operator()(const FilePath::Dns &dns) { parent->setDnsForm(dns); }\n    void operator()(const FilePath::NvdimmNs &nvdimm_ns) { parent->setNvdimmNsForm(nvdimm_ns); }\n    void operator()(const FilePath::RestService &rest_service) { parent->setRestServiceForm(rest_service); }\n    void operator()(const FilePath::NvmeOfNs &nvme_of_ns) { parent->setNvmeOfNsForm(nvme_of_ns); }\n    void operator()(const FilePath::Hd &hd) { parent->setHdForm(hd); }\n    void operator()(const FilePath::CdRom &cd_rom) { parent->setCdRomForm(cd_rom); }\n    void operator()(const FilePath::FilePath &file_path) { parent->setFilePathForm(file_path); }\n    void operator()(const FilePath::Protocol &protocol) { parent->setProtocolForm(protocol); }\n    void operator()(const FilePath::FirmwareFile &firmware_file) { parent->setFirmwareFileForm(firmware_file); }\n    void operator()(const FilePath::FirmwareVolume &firmware_volume) { parent->setFirmwareVolumeForm(firmware_volume); }\n    void operator()(const FilePath::RelativeOffsetRange &relative_offset_range) { parent->setRelativeOffsetRangeForm(relative_offset_range); }\n    void operator()(const FilePath::RamDisk &ram_disk) { parent->setRamDiskForm(ram_disk); }\n    void operator()(const FilePath::BootSpecification &boot_specification) { parent->setBootSpecificationForm(boot_specification); }\n    void operator()(const FilePath::Vendor &vendor) { parent->setVendorForm(vendor); }\n    void operator()(const FilePath::End &end) { parent->setEndForm(end._subtype); }\n    void operator()(const FilePath::Unknown &unknown) { parent->setUnknownForm(unknown); }\n};\n\nvoid FilePathDialog::setFilePath(const FilePath::ANY *_file_path)\n{\n    resetForms();\n    if(!_file_path)\n    {\n        update();\n        return;\n    }\n\n    std::visit(FilePathVisitor(this), *_file_path);\n    update();\n}\n\n// Hardware\n\nvoid FilePathDialog::setPciForm(const FilePath::Pci &pci)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::PCI));\n    ui->pci_function->setValue(static_cast<int>(pci.function));\n    ui->pci_device->setValue(static_cast<int>(pci.device));\n}\n\nvoid FilePathDialog::setPccardForm(const FilePath::Pccard &pccard)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::PCCARD));\n    ui->pccard_function_number->setValue(static_cast<int>(pccard.function_number));\n}\n\nvoid FilePathDialog::setMemoryMappedForm(const FilePath::MemoryMapped &memory_mapped)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::MEMORY_MAPPED));\n    ui->memory_mapped_memory_type->setCurrentIndex(static_cast<int>(memory_mapped.memory_type));\n    ui->memory_mapped_start_address->setText(toHex(memory_mapped.start_address));\n    ui->memory_mapped_end_address->setText(toHex(memory_mapped.end_address));\n}\n\nvoid FilePathDialog::setControllerForm(const FilePath::Controller &controller)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::CONTROLLER));\n    ui->controller_controller_number->setValue(static_cast<int>(controller.controller_number));\n}\n\nvoid FilePathDialog::setBmcForm(const FilePath::Bmc &bmc)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::BMC));\n    ui->bmc_interface_type->setCurrentIndex(static_cast<int>(bmc.interface_type));\n    ui->bmc_base_address->setText(toHex(bmc.base_address));\n}\n\n// ACPI\n\nvoid FilePathDialog::setAcpiForm(const FilePath::Acpi &acpi)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::ACPI));\n    ui->acpi_hid->setText(toHex(acpi.hid));\n    ui->acpi_uid->setText(toHex(acpi.uid));\n}\n\nvoid FilePathDialog::setExpandedForm(const FilePath::Expanded &expanded)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::EXPANDED));\n    ui->expanded_hid->setText(toHex(expanded.hid));\n    ui->expanded_uid->setText(toHex(expanded.uid));\n    ui->expanded_cid->setText(toHex(expanded.cid));\n    ui->expanded_hidstr->setText(expanded.hidstr);\n    ui->expanded_uidstr->setText(expanded.uidstr);\n    ui->expanded_cidstr->setText(expanded.cidstr);\n}\n\nvoid FilePathDialog::setAdrForm(const FilePath::Adr &adr)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::ADR));\n    ui->adr_adr->setText(toHex(adr.adr));\n    ui->adr_additional_adr_format->setCurrentIndex(static_cast<int>(DataFormat::Base64));\n    adr_additional_adr_format_index = 0;\n    ui->adr_additional_adr->setPlainText(adr.additional_adr.toBase64());\n}\n\nvoid FilePathDialog::setNvdimmForm(const FilePath::Nvdimm &nvdimm)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::NVDIMM));\n    ui->nvdimm_nfit_device_handle->setText(toHex(nvdimm.nfit_device_handle));\n}\n\n// Messaging\n\nvoid FilePathDialog::setAtapiForm(const FilePath::Atapi &atapi)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::ATAPI));\n    ui->atapi_primary->setChecked(atapi.primary);\n    ui->atapi_slave->setChecked(atapi.slave);\n    ui->atapi_lun->setValue(static_cast<int>(atapi.lun));\n}\n\nvoid FilePathDialog::setScsiForm(const FilePath::Scsi &scsi)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::SCSI));\n    ui->scsi_pun->setValue(static_cast<int>(scsi.pun));\n    ui->scsi_lun->setValue(static_cast<int>(scsi.lun));\n}\n\nvoid FilePathDialog::setFibreChannelForm(const FilePath::FibreChannel &fibre_channel)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::FIBRE_CHANNEL));\n    ui->fibre_channel_reserved->setText(toHex(fibre_channel.reserved));\n    ui->fibre_channel_world_wide_name->setText(toHex(fibre_channel.world_wide_name));\n    ui->fibre_channel_lun->setText(toHex(fibre_channel.lun));\n}\n\nvoid FilePathDialog::setFirewireForm(const FilePath::Firewire &firewire)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::FIREWIRE));\n    ui->firewire_reserved->setText(toHex(firewire.reserved));\n    ui->firewire_guid->setText(toHex(firewire.guid));\n}\n\nvoid FilePathDialog::setUsbForm(const FilePath::Usb &usb)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::USB));\n    ui->usb_parent_port_number->setValue(static_cast<int>(usb.parent_port_number));\n    ui->usb_interface_number->setValue(static_cast<int>(usb.interface_number));\n}\n\nvoid FilePathDialog::setI2oForm(const FilePath::I2o &i2o)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::I2O));\n    ui->i2o_tid->setValue(static_cast<int>(i2o.tid));\n}\n\nvoid FilePathDialog::setInfinibandForm(const FilePath::Infiniband &infiniband)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::INFINIBAND));\n    ui->infiniband_resource_flags->setText(toHex(infiniband.resource_flags));\n    ui->infiniband_port_gid->setText(infiniband.port_gid.toString());\n    ui->infiniband_ioc_guid_service_id->setText(toHex(infiniband.ioc_guid_service_id));\n    ui->infiniband_target_port_id->setText(toHex(infiniband.target_port_id));\n    ui->infiniband_device_id->setText(toHex(infiniband.device_id));\n}\n\nvoid FilePathDialog::setMacAddressForm(const FilePath::MacAddress &mac_address)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::MAC_ADDRESS));\n    ui->mac_address_address->setText(mac_address.address);\n    ui->mac_address_if_type->setValue(static_cast<int>(mac_address.if_type));\n}\n\nvoid FilePathDialog::setIpv4Form(const FilePath::Ipv4 &ipv4)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::IPV4));\n    ui->ipv4_local_ip_address->setText(ipv4.local_ip_address.toString());\n    ui->ipv4_remote_ip_address->setText(ipv4.remote_ip_address.toString());\n    ui->ipv4_local_port->setValue(static_cast<int>(ipv4.local_port));\n    ui->ipv4_remote_port->setValue(static_cast<int>(ipv4.remote_port));\n    ui->ipv4_protocol->setValue(static_cast<int>(ipv4.protocol));\n    ui->ipv4_static_ip_address->setChecked(ipv4.static_ip_address);\n    ui->ipv4_gateway_ip_address->setText(ipv4.gateway_ip_address.toString());\n    ui->ipv4_subnet_mask->setText(ipv4.subnet_mask.toString());\n}\n\nvoid FilePathDialog::setIpv6Form(const FilePath::Ipv6 &ipv6)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::IPV6));\n    ui->ipv6_local_ip_address->setText(ipv6.local_ip_address.toString());\n    ui->ipv6_remote_ip_address->setText(ipv6.remote_ip_address.toString());\n    ui->ipv6_local_port->setValue(static_cast<int>(ipv6.local_port));\n    ui->ipv6_remote_port->setValue(static_cast<int>(ipv6.remote_port));\n    ui->ipv6_protocol->setValue(static_cast<int>(ipv6.protocol));\n    ui->ipv6_ip_address_origin->setCurrentIndex(static_cast<int>(ipv6.ip_address_origin));\n    ui->ipv6_prefix_length->setValue(static_cast<int>(ipv6.prefix_length));\n    ui->ipv6_gateway_ip_address->setText(ipv6.gateway_ip_address.toString());\n}\n\nvoid FilePathDialog::setUartForm(const FilePath::Uart &uart)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::UART));\n    ui->uart_reserved->setText(toHex(uart.reserved));\n    ui->uart_baud_rate->setText(toHex(uart.baud_rate));\n    ui->uart_data_bits->setValue(static_cast<int>(uart.data_bits));\n    ui->uart_parity->setCurrentIndex(static_cast<int>(uart.parity));\n    ui->uart_stop_bits->setCurrentIndex(static_cast<int>(uart.stop_bits));\n}\n\nvoid FilePathDialog::setUsbClassForm(const FilePath::UsbClass &usb_class)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::USB_CLASS));\n    ui->usb_class_vendor_id->setText(toHex(usb_class.vendor_id));\n    ui->usb_class_product_id->setText(toHex(usb_class.product_id));\n    ui->usb_class_device_class->setText(toHex(usb_class.device_class));\n    ui->usb_class_device_subclass->setText(toHex(usb_class.device_subclass));\n    ui->usb_class_device_protocol->setText(toHex(usb_class.device_protocol));\n}\n\nvoid FilePathDialog::setUsbWwidForm(const FilePath::UsbWwid &usb_wwid)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::USB_WWID));\n    ui->usb_wwid_interface_number->setValue(static_cast<int>(usb_wwid.interface_number));\n    ui->usb_wwid_device_vendor_id->setText(toHex(usb_wwid.device_vendor_id));\n    ui->usb_wwid_device_product_id->setText(toHex(usb_wwid.device_product_id));\n    ui->usb_wwid_serial_number->setText(usb_wwid.serial_number);\n}\n\nvoid FilePathDialog::setDeviceLogicalUnitForm(const FilePath::DeviceLogicalUnit &device_logical_unit)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::DEVICE_LOGICAL_UNIT));\n    ui->device_logical_unit_lun->setValue(static_cast<int>(device_logical_unit.lun));\n}\n\nvoid FilePathDialog::setSataForm(const FilePath::Sata &sata)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::SATA));\n    ui->sata_hba_port_number->setValue(static_cast<int>(sata.hba_port_number));\n    ui->sata_port_multiplier_port_number->setValue(static_cast<int>(sata.port_multiplier_port_number));\n    ui->sata_lun->setValue(static_cast<int>(sata.lun));\n}\n\nvoid FilePathDialog::setIscsiForm(const FilePath::Iscsi &iscsi)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::ISCSI));\n    ui->iscsi_protocol->setValue(static_cast<int>(iscsi.protocol));\n    ui->iscsi_options->setText(toHex(iscsi.options));\n    ui->iscsi_lun->setText(toHex(iscsi.lun));\n    ui->iscsi_target_portal_group->setValue(static_cast<int>(iscsi.target_portal_group));\n    ui->iscsi_target_name->setText(iscsi.target_name);\n}\n\nvoid FilePathDialog::setVlanForm(const FilePath::Vlan &vlan)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::VLAN));\n    ui->vlan_vlan_id->setValue(static_cast<int>(vlan.vlan_id));\n}\n\nvoid FilePathDialog::setFibreChannelExForm(const FilePath::FibreChannelEx &fibre_channel_ex)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::FIBRE_CHANNEL_EX));\n    ui->fibre_channel_ex_reserved->setText(toHex(fibre_channel_ex.reserved));\n    ui->fibre_channel_ex_world_wide_name->setText(toHex(fibre_channel_ex.world_wide_name));\n    ui->fibre_channel_ex_lun->setText(toHex(fibre_channel_ex.lun));\n}\n\nvoid FilePathDialog::setSasExtendedMessagingForm(const FilePath::SasExtendedMessaging &sas_extended_messaging)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::SAS_EXTENDED_MESSAGING));\n    ui->sas_extended_messaging_sas_address->setText(toHex(sas_extended_messaging.sas_address));\n    ui->sas_extended_messaging_lun->setText(toHex(sas_extended_messaging.lun));\n    ui->sas_extended_messaging_device_and_topology_info->setText(toHex(sas_extended_messaging.device_and_topology_info));\n    ui->sas_extended_messaging_relative_target_port->setValue(static_cast<int>(sas_extended_messaging.relative_target_port));\n}\n\nvoid FilePathDialog::setNvmExpressNsForm(const FilePath::NvmExpressNs &nvm_express_ns)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::NVM_EXPRESS_NS));\n    ui->nvm_express_ns_namespace_identifier->setText(toHex(nvm_express_ns.namespace_identifier));\n    ui->nvm_express_ns_ieee_extended_unique_identifier->setText(toHex(nvm_express_ns.ieee_extended_unique_identifier));\n}\n\nvoid FilePathDialog::setUriForm(const FilePath::Uri &uri)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::URI));\n    ui->uri_uri->setText(uri.uri.toDisplayString());\n}\n\nvoid FilePathDialog::setUfsForm(const FilePath::Ufs &ufs)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::UFS));\n    ui->ufs_pun->setText(toHex(ufs.pun));\n    ui->ufs_lun->setText(toHex(ufs.lun));\n}\n\nvoid FilePathDialog::setSdForm(const FilePath::Sd &sd)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::SD));\n    ui->sd_slot_number->setValue(static_cast<int>(sd.slot_number));\n}\n\nvoid FilePathDialog::setBluetoothForm(const FilePath::Bluetooth &bluetooth)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::BLUETOOTH));\n    ui->bluetooth_device_address->setText(bluetooth.device_address);\n}\n\nvoid FilePathDialog::setWiFiForm(const FilePath::WiFi &wi_fi)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::WI_FI));\n    ui->wi_fi_ssid->setText(wi_fi.ssid);\n}\n\nvoid FilePathDialog::setEmmcForm(const FilePath::Emmc &emmc)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::EMMC));\n    ui->emmc_slot_number->setValue(static_cast<int>(emmc.slot_number));\n}\n\nvoid FilePathDialog::setBluetoothleForm(const FilePath::Bluetoothle &bluetoothle)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::BLUETOOTHLE));\n    ui->bluetoothle_device_address->setText(bluetoothle.device_address);\n    ui->bluetoothle_address_type->setCurrentIndex(static_cast<int>(bluetoothle.address_type));\n}\n\nvoid FilePathDialog::setDnsForm(const FilePath::Dns &dns)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::DNS));\n    ui->dns_ipv6->setChecked(dns.ipv6);\n    ui->dns_data_format->setCurrentIndex(static_cast<int>(DataFormat::Base64));\n    dns_data_format_index = 0;\n    ui->dns_data->setPlainText(dns.data.toBase64());\n}\n\nvoid FilePathDialog::setNvdimmNsForm(const FilePath::NvdimmNs &nvdimm_ns)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::NVDIMM_NS));\n    ui->nvdimm_ns_uuid->setText(nvdimm_ns.uuid.toString());\n}\n\nvoid FilePathDialog::setRestServiceForm(const FilePath::RestService &rest_service)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::REST_SERVICE));\n    ui->rest_service_rest_service->setCurrentIndex(static_cast<int>(rest_service.rest_service));\n    ui->rest_service_access_mode->setCurrentIndex(static_cast<int>(rest_service.access_mode));\n    ui->rest_service_guid->setText(rest_service.guid.toString());\n    ui->rest_service_data_format->setCurrentIndex(static_cast<int>(DataFormat::Base64));\n    rest_service_data_format_index = 0;\n    ui->rest_service_data->setPlainText(rest_service.data.toBase64());\n}\n\nvoid FilePathDialog::setNvmeOfNsForm(const FilePath::NvmeOfNs &nvme_of_ns)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::NVME_OF_NS));\n    ui->nvme_of_ns_nidt->setValue(static_cast<int>(nvme_of_ns.nidt));\n    ui->nvme_of_ns_nid->setText(nvme_of_ns.nid.toString());\n    ui->nvme_of_ns_subsystem_nqn->setText(nvme_of_ns.subsystem_nqn);\n}\n\n// Media\n\nvoid FilePathDialog::setHdForm(const FilePath::Hd &hd)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::HD));\n    // Match existing drive\n    for(int index = 0; index < ui->hd_disk->count() - 2; ++index)\n    {\n        const auto &drive_info = ui->hd_disk->itemData(index).value<DriveInfo>();\n        if(static_cast<std::underlying_type_t<DriveInfo::SIGNATURE>>(drive_info.signature_type) == static_cast<std::underlying_type_t<EFIBoot::File_path::MEDIA::Hd::SIGNATURE_TYPE>>(hd.signature_type) && drive_info.partition == hd.partition_number)\n        {\n            bool found = false;\n            switch(static_cast<DriveInfo::SIGNATURE>(drive_info.signature_type))\n            {\n            case DriveInfo::SIGNATURE::GUID:\n                found = drive_info.signature == hd.partition_signature;\n                break;\n            case DriveInfo::SIGNATURE::MBR:\n                found = drive_info.signature.data1 == hd.partition_signature.data1;\n                break;\n            case DriveInfo::SIGNATURE::NONE:\n                break;\n            }\n\n            if(found)\n            {\n                ui->hd_disk->setCurrentIndex(index);\n                diskChoiceChanged(index);\n                return;\n            }\n        }\n    }\n\n    // Custom\n    ui->hd_disk->setCurrentIndex(ui->hd_disk->count() - 1);\n    diskChoiceChanged(ui->hd_disk->currentIndex());\n\n    ui->hd_partition_number->setValue(static_cast<int>(hd.partition_number));\n    ui->hd_partition_start->setText(toHex(hd.partition_start));\n    ui->hd_partition_size->setText(toHex(hd.partition_size));\n    ui->hd_signature_type->setCurrentIndex(static_cast<int>(hd.signature_type));\n    signatureTypeChoiceChanged(ui->hd_signature_type->currentIndex());\n    if(hd.signature_type != EFIBoot::File_path::MEDIA::Hd::SIGNATURE_TYPE::NONE)\n        ui->hd_partition_signature->setText(hd.partition_signature.toString());\n}\n\nvoid FilePathDialog::setCdRomForm(const FilePath::CdRom &cd_rom)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::CD_ROM));\n    ui->cd_rom_boot_entry->setValue(static_cast<int>(cd_rom.boot_entry));\n    ui->cd_rom_partition_start->setText(toHex(cd_rom.partition_start));\n    ui->cd_rom_partition_size->setText(toHex(cd_rom.partition_size));\n}\n\nvoid FilePathDialog::setFilePathForm(const FilePath::FilePath &file_path)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::FILE_PATH));\n    ui->file_path_path_name->setText(file_path.path_name);\n}\n\nvoid FilePathDialog::setProtocolForm(const FilePath::Protocol &protocol)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::PROTOCOL));\n    ui->protocol_guid->setText(protocol.guid.toString());\n}\n\nvoid FilePathDialog::setFirmwareFileForm(const FilePath::FirmwareFile &firmware_file)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::FIRMWARE_FILE));\n    ui->firmware_file_name->setText(firmware_file.name.toString());\n}\n\nvoid FilePathDialog::setFirmwareVolumeForm(const FilePath::FirmwareVolume &firmware_volume)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::FIRMWARE_VOLUME));\n    ui->firmware_volume_name->setText(firmware_volume.name.toString());\n}\n\nvoid FilePathDialog::setRelativeOffsetRangeForm(const FilePath::RelativeOffsetRange &relative_offset_range)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::RELATIVE_OFFSET_RANGE));\n    ui->relative_offset_range_reserved->setText(toHex(relative_offset_range.reserved));\n    ui->relative_offset_range_starting_offset->setText(toHex(relative_offset_range.starting_offset));\n    ui->relative_offset_range_ending_offset->setText(toHex(relative_offset_range.ending_offset));\n}\n\nvoid FilePathDialog::setRamDiskForm(const FilePath::RamDisk &ram_disk)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::RAM_DISK));\n    ui->ram_disk_starting_address->setText(toHex(ram_disk.starting_address));\n    ui->ram_disk_ending_address->setText(toHex(ram_disk.ending_address));\n    ui->ram_disk_guid->setText(ram_disk.guid.toString());\n    ui->ram_disk_disk_instance->setValue(static_cast<int>(ram_disk.disk_instance));\n}\n\n// BIOS\n\nvoid FilePathDialog::setBootSpecificationForm(const FilePath::BootSpecification &boot_specification)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::BOOT_SPECIFICATION));\n    ui->boot_specification_device_type->setText(toHex(boot_specification.device_type));\n    ui->boot_specification_status_flag->setText(toHex(boot_specification.status_flag));\n    ui->boot_specification_description->setText(boot_specification.description);\n}\n\nvoid FilePathDialog::setVendorForm(const FilePath::Vendor &vendor)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::VENDOR));\n    VendorTypeIndex index{};\n    switch(vendor._type)\n    {\n    case EFIBoot::File_path::HW::Vendor::TYPE:\n        index = VendorTypeIndex::HW;\n        break;\n\n    case EFIBoot::File_path::MSG::Vendor::TYPE:\n        index = VendorTypeIndex::MSG;\n        break;\n\n    case EFIBoot::File_path::MEDIA::Vendor::TYPE:\n        index = VendorTypeIndex::MEDIA;\n        break;\n\n    default:\n        index = VendorTypeIndex::HW;\n        break;\n    }\n\n    ui->vendor_type->setCurrentIndex(static_cast<int>(index));\n    ui->vendor_guid->setText(vendor.guid.toString(QUuid::WithoutBraces));\n    ui->vendor_data_format->setCurrentIndex(static_cast<int>(DataFormat::Base64));\n    vendor_data_format_index = 0;\n    ui->vendor_data->setPlainText(vendor.data.toBase64());\n}\n\nvoid FilePathDialog::setEndForm(const uint8_t subtype)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::END));\n    ui->end_subtype->setCurrentIndex(subtype == EFIBoot::File_path::END::Instance::SUBTYPE ? 0 : 1);\n}\n\nvoid FilePathDialog::setUnknownForm(const FilePath::Unknown &unknown)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::UNKNOWN));\n    ui->unknown_type->setText(toHex(unknown._type));\n    ui->unknown_subtype->setText(toHex(unknown._subtype));\n    ui->unknown_data_format->setCurrentIndex(static_cast<int>(DataFormat::Base64));\n    unknown_data_format_index = 0;\n    ui->unknown_data->setPlainText(unknown.data.toBase64());\n}\n\nvoid FilePathDialog::resetForms()\n{\n    resetPciForm();\n    resetPccardForm();\n    resetMemoryMappedForm();\n    resetControllerForm();\n    resetBmcForm();\n    resetAcpiForm();\n    resetExpandedForm();\n    resetAdrForm();\n    resetNvdimmForm();\n    resetAtapiForm();\n    resetScsiForm();\n    resetFibreChannelForm();\n    resetFirewireForm();\n    resetUsbForm();\n    resetI2oForm();\n    resetInfinibandForm();\n    resetMacAddressForm();\n    resetIpv4Form();\n    resetIpv6Form();\n    resetUartForm();\n    resetUsbClassForm();\n    resetUsbWwidForm();\n    resetDeviceLogicalUnitForm();\n    resetSataForm();\n    resetIscsiForm();\n    resetVlanForm();\n    resetFibreChannelExForm();\n    resetSasExtendedMessagingForm();\n    resetNvmExpressNsForm();\n    resetUriForm();\n    resetUfsForm();\n    resetSdForm();\n    resetBluetoothForm();\n    resetWiFiForm();\n    resetEmmcForm();\n    resetBluetoothleForm();\n    resetDnsForm();\n    resetNvdimmNsForm();\n    resetRestServiceForm();\n    resetNvmeOfNsForm();\n    resetHdForm();\n    resetCdRomForm();\n    resetFilePathForm();\n    resetProtocolForm();\n    resetFirmwareFileForm();\n    resetFirmwareVolumeForm();\n    resetRelativeOffsetRangeForm();\n    resetRamDiskForm();\n    resetBootSpecificationForm();\n    resetVendorForm();\n    resetEndForm();\n    resetUnknownForm();\n}\n\n// Hardware\n\nvoid FilePathDialog::resetPciForm()\n{\n    ui->pci_function->clear();\n    ui->pci_device->clear();\n}\n\nvoid FilePathDialog::resetPccardForm()\n{\n    ui->pccard_function_number->clear();\n}\n\nvoid FilePathDialog::resetMemoryMappedForm()\n{\n    ui->memory_mapped_memory_type->setCurrentIndex(0);\n    ui->memory_mapped_start_address->clear();\n    ui->memory_mapped_end_address->clear();\n}\n\nvoid FilePathDialog::resetControllerForm()\n{\n    ui->controller_controller_number->clear();\n}\n\nvoid FilePathDialog::resetBmcForm()\n{\n    ui->bmc_interface_type->setCurrentIndex(0);\n    ui->bmc_base_address->clear();\n}\n\n// ACPI\n\nvoid FilePathDialog::resetAcpiForm()\n{\n    ui->acpi_hid->clear();\n    ui->acpi_uid->clear();\n}\n\nvoid FilePathDialog::resetExpandedForm()\n{\n    ui->expanded_hid->clear();\n    ui->expanded_uid->clear();\n    ui->expanded_cid->clear();\n    ui->expanded_hidstr->clear();\n    ui->expanded_uidstr->clear();\n    ui->expanded_cidstr->clear();\n}\n\nvoid FilePathDialog::resetAdrForm()\n{\n    ui->adr_adr->clear();\n    ui->adr_additional_adr_format->setCurrentIndex(static_cast<int>(DataFormat::Base64));\n    adr_additional_adr_format_index = 0;\n    ui->adr_additional_adr->clear();\n}\n\nvoid FilePathDialog::resetNvdimmForm()\n{\n    ui->nvdimm_nfit_device_handle->clear();\n}\n\n// Messaging\n\nvoid FilePathDialog::resetAtapiForm()\n{\n    ui->atapi_primary->setChecked(false);\n    ui->atapi_slave->setChecked(false);\n    ui->atapi_lun->clear();\n}\n\nvoid FilePathDialog::resetScsiForm()\n{\n    ui->scsi_pun->clear();\n    ui->scsi_lun->clear();\n}\n\nvoid FilePathDialog::resetFibreChannelForm()\n{\n    ui->fibre_channel_reserved->clear();\n    ui->fibre_channel_world_wide_name->clear();\n    ui->fibre_channel_lun->clear();\n}\n\nvoid FilePathDialog::resetFirewireForm()\n{\n    ui->firewire_reserved->clear();\n    ui->firewire_guid->clear();\n}\n\nvoid FilePathDialog::resetUsbForm()\n{\n    ui->usb_parent_port_number->clear();\n    ui->usb_interface_number->clear();\n}\n\nvoid FilePathDialog::resetI2oForm()\n{\n    ui->i2o_tid->clear();\n}\n\nvoid FilePathDialog::resetInfinibandForm()\n{\n    ui->infiniband_resource_flags->clear();\n    ui->infiniband_port_gid->clear();\n    ui->infiniband_ioc_guid_service_id->clear();\n    ui->infiniband_target_port_id->clear();\n    ui->infiniband_device_id->clear();\n}\n\nvoid FilePathDialog::resetMacAddressForm()\n{\n    ui->mac_address_address->clear();\n    ui->mac_address_if_type->clear();\n}\n\nvoid FilePathDialog::resetIpv4Form()\n{\n    ui->ipv4_local_ip_address->clear();\n    ui->ipv4_remote_ip_address->clear();\n    ui->ipv4_local_port->clear();\n    ui->ipv4_remote_port->clear();\n    ui->ipv4_protocol->clear();\n    ui->ipv4_static_ip_address->setChecked(false);\n    ui->ipv4_gateway_ip_address->clear();\n    ui->ipv4_subnet_mask->clear();\n}\n\nvoid FilePathDialog::resetIpv6Form()\n{\n    ui->ipv6_local_ip_address->clear();\n    ui->ipv6_remote_ip_address->clear();\n    ui->ipv6_local_port->clear();\n    ui->ipv6_remote_port->clear();\n    ui->ipv6_protocol->clear();\n    ui->ipv6_ip_address_origin->setCurrentIndex(0);\n    ui->ipv6_prefix_length->clear();\n    ui->ipv6_gateway_ip_address->clear();\n}\n\nvoid FilePathDialog::resetUartForm()\n{\n    ui->uart_reserved->clear();\n    ui->uart_baud_rate->clear();\n    ui->uart_data_bits->clear();\n    ui->uart_parity->setCurrentIndex(0);\n    ui->uart_stop_bits->setCurrentIndex(0);\n}\n\nvoid FilePathDialog::resetUsbClassForm()\n{\n    ui->usb_class_vendor_id->clear();\n    ui->usb_class_product_id->clear();\n    ui->usb_class_device_class->clear();\n    ui->usb_class_device_subclass->clear();\n    ui->usb_class_device_protocol->clear();\n}\n\nvoid FilePathDialog::resetUsbWwidForm()\n{\n    ui->usb_wwid_interface_number->clear();\n    ui->usb_wwid_device_vendor_id->clear();\n    ui->usb_wwid_device_product_id->clear();\n    ui->usb_wwid_serial_number->clear();\n}\n\nvoid FilePathDialog::resetDeviceLogicalUnitForm()\n{\n    ui->device_logical_unit_lun->clear();\n}\n\nvoid FilePathDialog::resetSataForm()\n{\n    ui->sata_hba_port_number->clear();\n    ui->sata_port_multiplier_port_number->clear();\n    ui->sata_lun->clear();\n}\n\nvoid FilePathDialog::resetIscsiForm()\n{\n    ui->iscsi_protocol->clear();\n    ui->iscsi_options->clear();\n    ui->iscsi_lun->clear();\n    ui->iscsi_target_portal_group->clear();\n    ui->iscsi_target_name->clear();\n}\n\nvoid FilePathDialog::resetVlanForm()\n{\n    ui->vlan_vlan_id->clear();\n}\n\nvoid FilePathDialog::resetFibreChannelExForm()\n{\n    ui->fibre_channel_ex_reserved->clear();\n    ui->fibre_channel_ex_world_wide_name->clear();\n    ui->fibre_channel_ex_lun->clear();\n}\n\nvoid FilePathDialog::resetSasExtendedMessagingForm()\n{\n    ui->sas_extended_messaging_sas_address->clear();\n    ui->sas_extended_messaging_lun->clear();\n    ui->sas_extended_messaging_device_and_topology_info->clear();\n    ui->sas_extended_messaging_relative_target_port->clear();\n}\n\nvoid FilePathDialog::resetNvmExpressNsForm()\n{\n    ui->nvm_express_ns_namespace_identifier->clear();\n    ui->nvm_express_ns_ieee_extended_unique_identifier->clear();\n}\n\nvoid FilePathDialog::resetUriForm()\n{\n    ui->uri_uri->clear();\n}\n\nvoid FilePathDialog::resetUfsForm()\n{\n    ui->ufs_pun->clear();\n    ui->ufs_lun->clear();\n}\n\nvoid FilePathDialog::resetSdForm()\n{\n    ui->sd_slot_number->clear();\n}\n\nvoid FilePathDialog::resetBluetoothForm()\n{\n    ui->bluetooth_device_address->clear();\n}\n\nvoid FilePathDialog::resetWiFiForm()\n{\n    ui->wi_fi_ssid->clear();\n}\n\nvoid FilePathDialog::resetEmmcForm()\n{\n    ui->emmc_slot_number->clear();\n}\n\nvoid FilePathDialog::resetBluetoothleForm()\n{\n    ui->bluetoothle_device_address->clear();\n    ui->bluetoothle_address_type->setCurrentIndex(0);\n}\n\nvoid FilePathDialog::resetDnsForm()\n{\n    ui->dns_ipv6->setChecked(false);\n    ui->dns_data_format->setCurrentIndex(static_cast<int>(DataFormat::Base64));\n    dns_data_format_index = 0;\n    ui->dns_data->clear();\n}\n\nvoid FilePathDialog::resetNvdimmNsForm()\n{\n    ui->nvdimm_ns_uuid->clear();\n}\n\nvoid FilePathDialog::resetRestServiceForm()\n{\n    ui->rest_service_rest_service->setCurrentIndex(0);\n    ui->rest_service_access_mode->setCurrentIndex(0);\n    ui->rest_service_guid->clear();\n    ui->rest_service_data_format->setCurrentIndex(static_cast<int>(DataFormat::Base64));\n    rest_service_data_format_index = 0;\n    ui->rest_service_data->clear();\n}\n\nvoid FilePathDialog::resetNvmeOfNsForm()\n{\n    ui->nvme_of_ns_nidt->clear();\n    ui->nvme_of_ns_nid->clear();\n    ui->nvme_of_ns_subsystem_nqn->clear();\n}\n\n// Media\n\nvoid FilePathDialog::resetHdForm()\n{\n    refreshDiskCombo(false);\n    signatureTypeChoiceChanged(ui->hd_signature_type->currentIndex());\n    ui->hd_partition_number->clear();\n    ui->hd_partition_start->clear();\n    ui->hd_partition_size->clear();\n    ui->hd_signature_type->setCurrentIndex(0);\n}\n\nvoid FilePathDialog::resetCdRomForm()\n{\n    ui->cd_rom_boot_entry->clear();\n    ui->cd_rom_partition_start->clear();\n    ui->cd_rom_partition_size->clear();\n}\n\nvoid FilePathDialog::resetFilePathForm()\n{\n    ui->file_path_path_name->clear();\n}\n\nvoid FilePathDialog::resetProtocolForm()\n{\n    ui->protocol_guid->clear();\n}\n\nvoid FilePathDialog::resetFirmwareFileForm()\n{\n    ui->firmware_file_name->clear();\n}\n\nvoid FilePathDialog::resetFirmwareVolumeForm()\n{\n    ui->firmware_volume_name->clear();\n}\n\nvoid FilePathDialog::resetRelativeOffsetRangeForm()\n{\n    ui->relative_offset_range_reserved->clear();\n    ui->relative_offset_range_starting_offset->clear();\n    ui->relative_offset_range_ending_offset->clear();\n}\n\nvoid FilePathDialog::resetRamDiskForm()\n{\n    ui->ram_disk_starting_address->clear();\n    ui->ram_disk_ending_address->clear();\n    ui->ram_disk_guid->clear();\n    ui->ram_disk_disk_instance->clear();\n}\n\n// BIOS\n\nvoid FilePathDialog::resetBootSpecificationForm()\n{\n    ui->boot_specification_device_type->clear();\n    ui->boot_specification_status_flag->clear();\n    ui->boot_specification_description->clear();\n}\n\nvoid FilePathDialog::resetVendorForm()\n{\n    ui->vendor_guid->clear();\n    ui->vendor_type->setCurrentIndex(0);\n    ui->vendor_data_format->setCurrentIndex(static_cast<int>(DataFormat::Base64));\n    vendor_data_format_index = 0;\n    ui->vendor_data->clear();\n}\n\nvoid FilePathDialog::resetEndForm()\n{\n    ui->end_subtype->setCurrentIndex(0);\n}\n\nvoid FilePathDialog::resetUnknownForm()\n{\n    ui->unknown_type->clear();\n    ui->unknown_subtype->clear();\n    ui->unknown_data_format->setCurrentIndex(static_cast<int>(DataFormat::Base64));\n    unknown_data_format_index = 0;\n    ui->unknown_data->clear();\n}\n\nvoid FilePathDialog::refreshDiskCombo(bool force)\n{\n    ui->hd_disk->clear();\n    const auto drives = DriveInfo::getAll(force);\n    for(const auto &drive: drives)\n    {\n        QVariant item;\n        item.setValue(drive);\n        ui->hd_disk->addItem(drive.name, item);\n    }\n\n    ui->hd_disk->insertSeparator(ui->hd_disk->count());\n    ui->hd_disk->addItem(\"Custom\");\n\n    int index = ui->hd_disk->count() - 1;\n    ui->hd_disk->setCurrentIndex(index);\n    diskChoiceChanged(index);\n}\n\nQByteArray FilePathDialog::getData(const QPlainTextEdit &_data, int index) const\n{\n    switch(static_cast<DataFormat>(index))\n    {\n    case DataFormat::Base64:\n        return QByteArray::fromBase64(_data.toPlainText().toUtf8());\n\n    case DataFormat::Utf16:\n        return fromUnicode(_data.toPlainText(), \"UTF-16\");\n\n    case DataFormat::Utf8:\n        return fromUnicode(_data.toPlainText(), \"UTF-8\");\n\n    case DataFormat::Hex:\n        return QByteArray::fromHex(_data.toPlainText().toUtf8());\n    }\n\n    return {};\n}\n\nvoid FilePathDialog::dataFormatChanged(int &index, int new_index, QPlainTextEdit &_data, QComboBox &format)\n{\n    bool success = false;\n    QByteArray input = getData(_data, index);\n    QString output;\n    switch(static_cast<DataFormat>(new_index))\n    {\n    case DataFormat::Base64:\n        output = input.toBase64();\n        success = true;\n        break;\n\n    case DataFormat::Utf16:\n        if(static_cast<uint>(input.size()) % sizeof(char16_t) == 0)\n            success = toUnicode(output, input, \"UTF-16\");\n\n        break;\n\n    case DataFormat::Utf8:\n        success = toUnicode(output, input, \"UTF-8\");\n        break;\n\n    case DataFormat::Hex:\n        output = input.toHex();\n        success = true;\n        break;\n    }\n\n    if(output.contains(QChar(0)))\n        success = false;\n\n    if(!success)\n    {\n        QMessageBox::critical(this, qApp->applicationName(), tr(\"Couldn't change data format!\"));\n        format.setCurrentIndex(index);\n        return;\n    }\n\n    _data.setPlainText(output);\n    index = new_index;\n}\n\nvoid FilePathDialog::resetDiskCombo()\n{\n    refreshDiskCombo(true);\n}\n\nvoid FilePathDialog::diskChoiceChanged(int index)\n{\n    bool disabled = index + 1 != ui->hd_disk->count();\n    ui->hd_signature_type->setDisabled(disabled);\n    ui->hd_partition_signature->setDisabled(disabled);\n    ui->hd_partition_number->setDisabled(disabled);\n    ui->hd_partition_start->setDisabled(disabled);\n    ui->hd_partition_size->setDisabled(disabled);\n\n    if(index + 1 == ui->hd_disk->count())\n        return;\n\n    ui->hd_signature_type->setCurrentIndex(0);\n    signatureTypeChoiceChanged(ui->hd_signature_type->currentIndex());\n    ui->hd_partition_number->clear();\n    ui->hd_partition_start->clear();\n    ui->hd_partition_size->clear();\n\n    const auto &driveinfo = ui->hd_disk->itemData(index).value<DriveInfo>();\n    switch(static_cast<DriveInfo::SIGNATURE>(driveinfo.signature_type))\n    {\n    case DriveInfo::SIGNATURE::NONE:\n        ui->hd_signature_type->setCurrentIndex(0);\n        break;\n\n    case DriveInfo::SIGNATURE::MBR:\n        ui->hd_signature_type->setCurrentIndex(1);\n        break;\n\n    case DriveInfo::SIGNATURE::GUID:\n        ui->hd_signature_type->setCurrentIndex(2);\n        break;\n    }\n\n    signatureTypeChoiceChanged(ui->hd_signature_type->currentIndex());\n    if(driveinfo.signature_type != DriveInfo::SIGNATURE::NONE)\n        ui->hd_partition_signature->setText(driveinfo.signature.toString());\n\n    ui->hd_partition_number->setValue(static_cast<int>(driveinfo.partition));\n    ui->hd_partition_start->setText(toHex(driveinfo.start));\n    ui->hd_partition_size->setText(toHex(driveinfo.size));\n}\n\nvoid FilePathDialog::signatureTypeChoiceChanged(int index)\n{\n    switch(static_cast<DriveInfo::SIGNATURE>(index))\n    {\n    case DriveInfo::SIGNATURE::NONE:\n        ui->hd_partition_signature->setDisabled(true);\n        ui->hd_partition_signature->setInputMask(\"\");\n        ui->hd_partition_signature->clear();\n        ui->hd_partition_number->setMaximum(INT_MAX);\n        break;\n\n    case DriveInfo::SIGNATURE::MBR:\n        ui->hd_partition_signature->setDisabled(ui->hd_disk->currentIndex() + 1 != ui->hd_disk->count());\n        ui->hd_partition_signature->setInputMask(\"<\\\\0\\\\xHHHHHHHH;_\");\n        ui->hd_partition_signature->clear();\n        ui->hd_partition_number->setMaximum(4);\n        break;\n\n    case DriveInfo::SIGNATURE::GUID:\n        ui->hd_partition_signature->setDisabled(ui->hd_disk->currentIndex() + 1 != ui->hd_disk->count());\n        ui->hd_partition_signature->setInputMask(\"<HHHHHHHH-HHHH-HHHH-HHHH-HHHHHHHHHHHH;_\");\n        ui->hd_partition_signature->clear();\n        ui->hd_partition_number->setMaximum(128);\n        break;\n    }\n}\n\nvoid FilePathDialog::AdrAdditionalAdrChanged(int index)\n{\n    return dataFormatChanged(adr_additional_adr_format_index, index, *ui->adr_additional_adr, *ui->adr_additional_adr_format);\n}\n\nvoid FilePathDialog::DnsDataChanged(int index)\n{\n    return dataFormatChanged(dns_data_format_index, index, *ui->dns_data, *ui->dns_data_format);\n}\n\nvoid FilePathDialog::RestServiceDataChanged(int index)\n{\n    return dataFormatChanged(rest_service_data_format_index, index, *ui->rest_service_data, *ui->rest_service_data_format);\n}\n\nvoid FilePathDialog::VendorDataFormatChanged(int index)\n{\n    dataFormatChanged(vendor_data_format_index, index, *ui->vendor_data, *ui->vendor_data_format);\n}\n\nvoid FilePathDialog::UnknownDataFormatChanged(int index)\n{\n    dataFormatChanged(unknown_data_format_index, index, *ui->unknown_data, *ui->unknown_data_format);\n}\n"
  },
  {
    "path": "src/filepathdialog.cpp.j2",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#include \"compat.h\"\n\n#include \"filepathdialog.h\"\n#include \"form/ui_filepathdialog.h\"\n\n#include <QMessageBox>\n\n#include \"driveinfo.h\"\n\nQSize HorizontalTabStyle::sizeFromContents(ContentsType type, const QStyleOption *option, const QSize &size, const QWidget *widget) const\n{\n    QSize s = QProxyStyle::sizeFromContents(type, option, size, widget);\n    if(type == QStyle::CT_TabBarTab)\n        s.transpose();\n\n    return s;\n}\n\nvoid HorizontalTabStyle::drawControl(ControlElement element, const QStyleOption *option, QPainter *painter, const QWidget *widget) const\n{\n    if(element != CE_TabBarTabLabel)\n    {\n        QProxyStyle::drawControl(element, option, painter, widget);\n        return;\n    }\n\n    const QStyleOptionTab *tab = qstyleoption_cast<const QStyleOptionTab *>(option);\n    if(!tab)\n    {\n        QProxyStyle::drawControl(element, option, painter, widget);\n        return;\n    }\n\n    QStyleOptionTab opt(*tab);\n    opt.shape = QTabBar::RoundedNorth;\n    QProxyStyle::drawControl(element, &opt, painter, widget);\n}\n\nFilePathDialog::FilePathDialog(QWidget *parent)\n    : QDialog(parent)\n    , ui{std::make_unique<Ui::FilePathDialog>()}\n{\n    ui->setupUi(this);\n    setFilePath(nullptr);\n    ui->options->tabBar()->setStyle(&horizontal_tab_style);\n}\n\nFilePathDialog::~FilePathDialog()\n{\n}\n\nvoid FilePathDialog::setReadOnly(bool readonly)\n{\n    for(auto &widget: findChildren<QLineEdit *>())\n        widget->setReadOnly(readonly);\n\n    for(auto &widget: findChildren<QPlainTextEdit *>())\n        widget->setReadOnly(readonly);\n\n    for(auto &widget: findChildren<QSpinBox *>())\n        widget->setReadOnly(readonly);\n\n    for(auto &widget: findChildren<QComboBox *>())\n        widget->setDisabled(readonly);\n\n    for(auto &widget: findChildren<QCheckBox *>())\n        widget->setDisabled(readonly);\n\n    for(auto &widget: findChildren<QLabel *>())\n        widget->setDisabled(readonly);\n\n    ui->hd_disk_refresh->setDisabled(readonly);\n    ui->options->tabBar()->setDisabled(readonly);\n{% for category in device_paths.values() %}{% for node in category.nodes if node.slug not in (\"vendor\", \"instance\", \"entire\") %}{% for field in node.fields if field.type == \"raw_data\" %}\n    ui->{{ node.slug }}_{{ field.slug }}_format->setDisabled(false);\n{% endfor %}{% endfor %}{% endfor %}\n    ui->unknown_data_format->setDisabled(false);\n    ui->vendor_data_format->setDisabled(false);\n}\n\nauto FilePathDialog::toFilePath() const -> FilePath::ANY\n{\n    switch(static_cast<FormIndex>(ui->options->currentIndex()))\n    {\n{% for category in device_paths.values() %}\n    // {{ category.name }}\n{% for node in category.nodes if node.slug not in (\"vendor\", \"instance\", \"entire\") %}\n    case FormIndex::{{ node.slug.upper() }}:\n    {\n        FilePath::{{ node.slug.split(\"_\")|map(\"capitalize\")|join }} value{};\n        {% for field in node.fields %}\n        {% set ui_slug = node.slug + \"_\" + field.slug %}\n        {% if field.type in (\"mac\", \"string\", \"wstring\") %}\n        value.{{ field.slug }} = ui->{{ ui_slug }}->text();\n        {% elif field.type == \"raw_data\" %}\n        value.{{ field.slug }} = getData(*ui->{{ ui_slug }}, ui->{{ ui_slug }}_format->currentIndex());\n        {% elif field.type in (\"ip4\", \"ip6\") %}\n        value.{{ field.slug }}.setAddress(ui->{{ ui_slug }}->text());\n        {% elif field.type == \"guid\" %}\n        value.{{ field.slug }} = QUuid::fromString(ui->{{ ui_slug }}->text());\n        {% elif field.type == \"uri\" %}\n        value.{{ field.slug }} = QUrl::fromUserInput(ui->{{ ui_slug }}->text());\n        {% elif field.type == \"bool\" %}\n        value.{{ field.slug }} = ui->{{ ui_slug }}->isChecked();\n        {% elif field.type == \"enum\" %}\n        value.{{ field.slug }} = static_cast<decltype(value.{{ field.slug }})>(ui->{{ ui_slug }}->currentIndex());\n        {% elif field.type == \"hex\" %}\n        {% if field.size > 4 %}\n        value.{{ field.slug }} = ui->{{ ui_slug }}->text().toULongLong(nullptr, HEX_BASE);\n        {% elif field.size > 2 %}\n        value.{{ field.slug }} = ui->{{ ui_slug }}->text().toUInt(nullptr, HEX_BASE);\n        {% elif field.size > 1 %}\n        value.{{ field.slug }} = ui->{{ ui_slug }}->text().toUShort(nullptr, HEX_BASE);\n        {% else %}\n        value.{{ field.slug }} = static_cast<decltype(value.{{ field.slug }})>(ui->{{ ui_slug }}->text().toUShort(nullptr, HEX_BASE));\n        {% endif %}\n        {% else %}\n        value.{{ field.slug }} = static_cast<decltype(value.{{ field.slug }})>(ui->{{ ui_slug }}->value());\n        {% endif %}\n        {% endfor %}\n        return value;\n    }\n{% endfor %}{% endfor %}\n    case FormIndex::VENDOR:\n    {\n        FilePath::Vendor vendor;\n        switch(static_cast<VendorTypeIndex>(ui->vendor_type->currentIndex()))\n        {\n        case VendorTypeIndex::HW:\n            vendor._type = EFIBoot::File_path::HW::Vendor::TYPE;\n            break;\n\n        case VendorTypeIndex::MSG:\n            vendor._type = EFIBoot::File_path::MSG::Vendor::TYPE;\n            break;\n\n        case VendorTypeIndex::MEDIA:\n            vendor._type = EFIBoot::File_path::MEDIA::Vendor::TYPE;\n            break;\n        }\n\n        vendor.guid = QUuid::fromString(ui->vendor_guid->text());\n        vendor.data = getData(*ui->vendor_data, ui->vendor_data_format->currentIndex());\n        return vendor;\n    }\n    case FormIndex::END:\n    {\n        FilePath::End end;\n        if(ui->end_subtype->currentIndex() == 0)\n            end._subtype = EFIBoot::File_path::END::Instance::SUBTYPE;\n\n        else\n            end._subtype = EFIBoot::File_path::END::Entire::SUBTYPE;\n\n        return end;\n    }\n    case FormIndex::UNKNOWN:\n    {\n        FilePath::Unknown unknown;\n        unknown._type = static_cast<uint8_t>(ui->unknown_type->text().toUShort(nullptr, HEX_BASE));\n        unknown._subtype = static_cast<uint8_t>(ui->unknown_subtype->text().toUShort(nullptr, HEX_BASE));\n        unknown.data = getData(*ui->unknown_data, ui->unknown_data_format->currentIndex());\n        return unknown;\n    }\n    }\n\n    return {};\n}\n\nstruct FilePathVisitor\n{\n    FilePathDialog *parent;\n    explicit FilePathVisitor(FilePathDialog *parent_)\n        : parent{parent_}\n    {\n    }\n\n{% for category in device_paths.values() %}{% for node in category.nodes if node.slug not in (\"vendor\", \"instance\", \"entire\") %}\n{% set qslug = node.slug.split(\"_\")|map(\"capitalize\")|join %}\n    void operator()(const FilePath::{{ qslug }} &{{ node.slug }}) { parent->set{{ qslug }}Form({{ node.slug }}); }\n{% endfor %}{% endfor %}\n    void operator()(const FilePath::Vendor &vendor) { parent->setVendorForm(vendor); }\n    void operator()(const FilePath::End &end) { parent->setEndForm(end._subtype); }\n    void operator()(const FilePath::Unknown &unknown) { parent->setUnknownForm(unknown); }\n};\n\nvoid FilePathDialog::setFilePath(const FilePath::ANY *_file_path)\n{\n    resetForms();\n    if(!_file_path)\n    {\n        update();\n        return;\n    }\n\n    std::visit(FilePathVisitor(this), *_file_path);\n    update();\n}\n\n{% for category in device_paths.values() %}\n// {{ category.name }}\n\n{% for node in category.nodes if node.slug not in (\"vendor\", \"instance\", \"entire\") %}\n{% set qslug = node.slug.split(\"_\")|map(\"capitalize\")|join %}\nvoid FilePathDialog::set{{ qslug }}Form(const FilePath::{{ qslug }} &{{ node.slug }})\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::{{ node.slug.upper() }}));\n    {% for field in node.fields %}\n    {% set ui_slug = node.slug + \"_\" + field.slug %}\n    {% if field.type in (\"mac\", \"string\", \"wstring\") %}\n    ui->{{ ui_slug }}->setText({{ node.slug }}.{{ field.slug }});\n    {% elif field.type == \"raw_data\" %}\n    ui->{{ ui_slug }}_format->setCurrentIndex(static_cast<int>(DataFormat::Base64));\n    {{ ui_slug }}_format_index = 0;\n    ui->{{ ui_slug }}->setPlainText({{ node.slug }}.{{ field.slug }}.toBase64());\n    {% elif field.type in (\"ip4\", \"ip6\", \"guid\") %}\n    ui->{{ ui_slug }}->setText({{ node.slug }}.{{ field.slug }}.toString());\n    {% elif field.type == \"uri\" %}\n    ui->{{ ui_slug }}->setText({{ node.slug }}.{{ field.slug }}.toDisplayString());\n    {% elif field.type == \"bool\" %}\n    ui->{{ ui_slug }}->setChecked({{ node.slug }}.{{ field.slug }});\n    {% elif field.type == \"enum\" %}\n    ui->{{ ui_slug }}->setCurrentIndex(static_cast<int>({{ node.slug }}.{{ field.slug }}));\n    {% elif field.type == \"hex\" %}\n    ui->{{ ui_slug }}->setText(toHex({{ node.slug }}.{{ field.slug }}));\n    {% else %}\n    ui->{{ ui_slug }}->setValue(static_cast<int>({{ node.slug }}.{{ field.slug }}));\n    {% endif %}\n    {% endfor %}\n}\n\n{% endfor %}{% endfor %}\nvoid FilePathDialog::setVendorForm(const FilePath::Vendor &vendor)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::VENDOR));\n    VendorTypeIndex index{};\n    switch(vendor._type)\n    {\n    case EFIBoot::File_path::HW::Vendor::TYPE:\n        index = VendorTypeIndex::HW;\n        break;\n\n    case EFIBoot::File_path::MSG::Vendor::TYPE:\n        index = VendorTypeIndex::MSG;\n        break;\n\n    case EFIBoot::File_path::MEDIA::Vendor::TYPE:\n        index = VendorTypeIndex::MEDIA;\n        break;\n\n    default:\n        index = VendorTypeIndex::HW;\n        break;\n    }\n\n    ui->vendor_type->setCurrentIndex(static_cast<int>(index));\n    ui->vendor_guid->setText(vendor.guid.toString(QUuid::WithoutBraces));\n    ui->vendor_data_format->setCurrentIndex(static_cast<int>(DataFormat::Base64));\n    vendor_data_format_index = 0;\n    ui->vendor_data->setPlainText(vendor.data.toBase64());\n}\n\nvoid FilePathDialog::setEndForm(const uint8_t subtype)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::END));\n    ui->end_subtype->setCurrentIndex(subtype == EFIBoot::File_path::END::Instance::SUBTYPE ? 0 : 1);\n}\n\nvoid FilePathDialog::setUnknownForm(const FilePath::Unknown &unknown)\n{\n    ui->options->setCurrentIndex(static_cast<int>(FormIndex::UNKNOWN));\n    ui->unknown_type->setText(toHex(unknown._type));\n    ui->unknown_subtype->setText(toHex(unknown._subtype));\n    ui->unknown_data_format->setCurrentIndex(static_cast<int>(DataFormat::Base64));\n    unknown_data_format_index = 0;\n    ui->unknown_data->setPlainText(unknown.data.toBase64());\n}\n\nvoid FilePathDialog::resetForms()\n{\n{% for category in device_paths.values() %}{% for node in category.nodes if node.slug not in (\"vendor\", \"instance\", \"entire\") %}\n    reset{{ node.slug.split(\"_\")|map(\"capitalize\")|join }}Form();\n{% endfor %}{% endfor %}\n    resetVendorForm();\n    resetEndForm();\n    resetUnknownForm();\n}\n\n{% for category in device_paths.values() %}\n// {{ category.name }}\n\n{% for node in category.nodes if node.slug not in (\"vendor\", \"instance\", \"entire\") %}\n{% set qslug = node.slug.split(\"_\")|map(\"capitalize\")|join %}\nvoid FilePathDialog::reset{{ qslug }}Form()\n{\n    {% for field in node.fields %}\n    {% set ui_slug = node.slug + \"_\" + field.slug %}\n    {% if field.type == \"bool\" %}\n    ui->{{ ui_slug }}->setChecked(false);\n    {% elif field.type == \"enum\" %}\n    ui->{{ ui_slug }}->setCurrentIndex(0);\n    {% elif field.type == \"raw_data\" %}\n    ui->{{ ui_slug }}_format->setCurrentIndex(static_cast<int>(DataFormat::Base64));\n    {{ ui_slug }}_format_index = 0;\n    ui->{{ ui_slug }}->clear();\n    {% else %}\n    ui->{{ ui_slug }}->clear();\n    {% endif %}\n    {% endfor %}\n}\n\n{% endfor %}{% endfor %}\nvoid FilePathDialog::resetVendorForm()\n{\n    ui->vendor_guid->clear();\n    ui->vendor_type->setCurrentIndex(0);\n    ui->vendor_data_format->setCurrentIndex(static_cast<int>(DataFormat::Base64));\n    vendor_data_format_index = 0;\n    ui->vendor_data->clear();\n}\n\nvoid FilePathDialog::resetEndForm()\n{\n    ui->end_subtype->setCurrentIndex(0);\n}\n\nvoid FilePathDialog::resetUnknownForm()\n{\n    ui->unknown_type->clear();\n    ui->unknown_subtype->clear();\n    ui->unknown_data_format->setCurrentIndex(static_cast<int>(DataFormat::Base64));\n    unknown_data_format_index = 0;\n    ui->unknown_data->clear();\n}\n\nvoid FilePathDialog::refreshDiskCombo(bool force)\n{\n    ui->hd_disk->clear();\n    const auto drives = DriveInfo::getAll(force);\n    for(const auto &drive: drives)\n    {\n        QVariant item;\n        item.setValue(drive);\n        ui->hd_disk->addItem(drive.name, item);\n    }\n\n    ui->hd_disk->insertSeparator(ui->hd_disk->count());\n    ui->hd_disk->addItem(\"Custom\");\n\n    int index = ui->hd_disk->count() - 1;\n    ui->hd_disk->setCurrentIndex(index);\n    diskChoiceChanged(index);\n}\n\nQByteArray FilePathDialog::getData(const QPlainTextEdit &_data, int index) const\n{\n    switch(static_cast<DataFormat>(index))\n    {\n    case DataFormat::Base64:\n        return QByteArray::fromBase64(_data.toPlainText().toUtf8());\n\n    case DataFormat::Utf16:\n        return fromUnicode(_data.toPlainText(), \"UTF-16\");\n\n    case DataFormat::Utf8:\n        return fromUnicode(_data.toPlainText(), \"UTF-8\");\n\n    case DataFormat::Hex:\n        return QByteArray::fromHex(_data.toPlainText().toUtf8());\n    }\n\n    return {};\n}\n\nvoid FilePathDialog::dataFormatChanged(int &index, int new_index, QPlainTextEdit &_data, QComboBox &format)\n{\n    bool success = false;\n    QByteArray input = getData(_data, index);\n    QString output;\n    switch(static_cast<DataFormat>(new_index))\n    {\n    case DataFormat::Base64:\n        output = input.toBase64();\n        success = true;\n        break;\n\n    case DataFormat::Utf16:\n        if(static_cast<uint>(input.size()) % sizeof(char16_t) == 0)\n            success = toUnicode(output, input, \"UTF-16\");\n\n        break;\n\n    case DataFormat::Utf8:\n        success = toUnicode(output, input, \"UTF-8\");\n        break;\n\n    case DataFormat::Hex:\n        output = input.toHex();\n        success = true;\n        break;\n    }\n\n    if(output.contains(QChar(0)))\n        success = false;\n\n    if(!success)\n    {\n        QMessageBox::critical(this, qApp->applicationName(), tr(\"Couldn't change data format!\"));\n        format.setCurrentIndex(index);\n        return;\n    }\n\n    _data.setPlainText(output);\n    index = new_index;\n}\n\nvoid FilePathDialog::resetDiskCombo()\n{\n    refreshDiskCombo(true);\n}\n\nvoid FilePathDialog::diskChoiceChanged(int index)\n{\n    bool disabled = index + 1 != ui->hd_disk->count();\n    ui->hd_signature_type->setDisabled(disabled);\n    ui->hd_partition_signature->setDisabled(disabled);\n    ui->hd_partition_number->setDisabled(disabled);\n    ui->hd_partition_start->setDisabled(disabled);\n    ui->hd_partition_size->setDisabled(disabled);\n\n    if(index + 1 == ui->hd_disk->count())\n        return;\n\n    ui->hd_signature_type->setCurrentIndex(0);\n    signatureTypeChoiceChanged(ui->hd_signature_type->currentIndex());\n    ui->hd_partition_number->clear();\n    ui->hd_partition_start->clear();\n    ui->hd_partition_size->clear();\n\n    const auto &driveinfo = ui->hd_disk->itemData(index).value<DriveInfo>();\n    switch(static_cast<DriveInfo::SIGNATURE>(driveinfo.signature_type))\n    {\n    case DriveInfo::SIGNATURE::NONE:\n        ui->hd_signature_type->setCurrentIndex(0);\n        break;\n\n    case DriveInfo::SIGNATURE::MBR:\n        ui->hd_signature_type->setCurrentIndex(1);\n        break;\n\n    case DriveInfo::SIGNATURE::GUID:\n        ui->hd_signature_type->setCurrentIndex(2);\n        break;\n    }\n\n    signatureTypeChoiceChanged(ui->hd_signature_type->currentIndex());\n    if(driveinfo.signature_type != DriveInfo::SIGNATURE::NONE)\n        ui->hd_partition_signature->setText(driveinfo.signature.toString());\n\n    ui->hd_partition_number->setValue(static_cast<int>(driveinfo.partition));\n    ui->hd_partition_start->setText(toHex(driveinfo.start));\n    ui->hd_partition_size->setText(toHex(driveinfo.size));\n}\n\nvoid FilePathDialog::signatureTypeChoiceChanged(int index)\n{\n    switch(static_cast<DriveInfo::SIGNATURE>(index))\n    {\n    case DriveInfo::SIGNATURE::NONE:\n        ui->hd_partition_signature->setDisabled(true);\n        ui->hd_partition_signature->setInputMask(\"\");\n        ui->hd_partition_signature->clear();\n        ui->hd_partition_number->setMaximum(INT_MAX);\n        break;\n\n    case DriveInfo::SIGNATURE::MBR:\n        ui->hd_partition_signature->setDisabled(ui->hd_disk->currentIndex() + 1 != ui->hd_disk->count());\n        ui->hd_partition_signature->setInputMask(\"<\\\\0\\\\xHHHHHHHH;_\");\n        ui->hd_partition_signature->clear();\n        ui->hd_partition_number->setMaximum(4);\n        break;\n\n    case DriveInfo::SIGNATURE::GUID:\n        ui->hd_partition_signature->setDisabled(ui->hd_disk->currentIndex() + 1 != ui->hd_disk->count());\n        ui->hd_partition_signature->setInputMask(\"<HHHHHHHH-HHHH-HHHH-HHHH-HHHHHHHHHHHH;_\");\n        ui->hd_partition_signature->clear();\n        ui->hd_partition_number->setMaximum(128);\n        break;\n    }\n}\n\n{% for category in device_paths.values() %}{% for node in category.nodes if node.slug not in (\"vendor\", \"instance\", \"entire\") %}{% for field in node.fields if field.type == \"raw_data\" %}\n{% set ui_slug = node.slug + \"_\" + field.slug %}\nvoid FilePathDialog::{{ node.slug.split(\"_\")|map(\"capitalize\")|join }}{{ field.slug.split(\"_\")|map(\"capitalize\")|join }}Changed(int index)\n{\n    return dataFormatChanged({{ ui_slug }}_format_index, index, *ui->{{ ui_slug }}, *ui->{{ ui_slug }}_format);\n}\n\n{% endfor %}{% endfor %}{% endfor %}\nvoid FilePathDialog::VendorDataFormatChanged(int index)\n{\n    dataFormatChanged(vendor_data_format_index, index, *ui->vendor_data, *ui->vendor_data_format);\n}\n\nvoid FilePathDialog::UnknownDataFormatChanged(int index)\n{\n    dataFormatChanged(unknown_data_format_index, index, *ui->unknown_data, *ui->unknown_data_format);\n}\n\n"
  },
  {
    "path": "src/form/bootentryform.ui",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<ui version=\"4.0\">\n <class>BootEntryForm</class>\n <widget class=\"QWidget\" name=\"BootEntryForm\">\n  <property name=\"windowTitle\">\n   <string>Boot entry form</string>\n  </property>\n  <layout class=\"QVBoxLayout\" name=\"verticalLayout\">\n   <property name=\"leftMargin\">\n    <number>0</number>\n   </property>\n   <property name=\"topMargin\">\n    <number>0</number>\n   </property>\n   <property name=\"rightMargin\">\n    <number>0</number>\n   </property>\n   <property name=\"bottomMargin\">\n    <number>0</number>\n   </property>\n   <item>\n    <widget class=\"QLabel\" name=\"error_text\">\n     <property name=\"toolTip\">\n      <string>Error</string>\n     </property>\n     <property name=\"statusTip\">\n      <string>Error</string>\n     </property>\n     <property name=\"text\">\n      <string notr=\"true\"/>\n     </property>\n     <property name=\"alignment\">\n      <set>Qt::AlignmentFlag::AlignCenter</set>\n     </property>\n    </widget>\n   </item>\n   <item>\n    <widget class=\"QLabel\" name=\"error_note\">\n     <property name=\"toolTip\">\n      <string>Error note</string>\n     </property>\n     <property name=\"statusTip\">\n      <string>Error note</string>\n     </property>\n     <property name=\"text\">\n      <string>This entry placeholder is shown here to indicate it's referenced in boot order. It won't be modified on save, just left as is.</string>\n     </property>\n     <property name=\"alignment\">\n      <set>Qt::AlignmentFlag::AlignCenter</set>\n     </property>\n     <property name=\"wordWrap\">\n      <bool>true</bool>\n     </property>\n    </widget>\n   </item>\n   <item>\n    <widget class=\"QWidget\" name=\"form_fields\" native=\"true\">\n     <layout class=\"QFormLayout\" name=\"form_fields_layout\">\n      <property name=\"fieldGrowthPolicy\">\n       <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n      </property>\n      <property name=\"labelAlignment\">\n       <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n      </property>\n      <item row=\"0\" column=\"0\">\n       <widget class=\"QLabel\" name=\"index_label\">\n        <property name=\"toolTip\">\n         <string>Index</string>\n        </property>\n        <property name=\"statusTip\">\n         <string>Index</string>\n        </property>\n        <property name=\"text\">\n         <string>Index</string>\n        </property>\n       </widget>\n      </item>\n      <item row=\"0\" column=\"1\">\n       <widget class=\"QWidget\" name=\"index_box\" native=\"true\">\n        <property name=\"sizePolicy\">\n         <sizepolicy hsizetype=\"Preferred\" vsizetype=\"Fixed\">\n          <horstretch>0</horstretch>\n          <verstretch>0</verstretch>\n         </sizepolicy>\n        </property>\n        <layout class=\"QHBoxLayout\" name=\"index_box_layout\" stretch=\"1,0\">\n         <property name=\"spacing\">\n          <number>0</number>\n         </property>\n         <property name=\"leftMargin\">\n          <number>0</number>\n         </property>\n         <property name=\"topMargin\">\n          <number>0</number>\n         </property>\n         <property name=\"rightMargin\">\n          <number>0</number>\n         </property>\n         <property name=\"bottomMargin\">\n          <number>0</number>\n         </property>\n         <item>\n          <widget class=\"QLineEdit\" name=\"index_text\">\n           <property name=\"sizePolicy\">\n            <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Preferred\">\n             <horstretch>0</horstretch>\n             <verstretch>0</verstretch>\n            </sizepolicy>\n           </property>\n           <property name=\"font\">\n            <font>\n             <family>Monospace</family>\n            </font>\n           </property>\n           <property name=\"toolTip\">\n            <string>Index</string>\n           </property>\n           <property name=\"statusTip\">\n            <string>Index</string>\n           </property>\n           <property name=\"whatsThis\">\n            <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n           </property>\n           <property name=\"inputMask\">\n            <string notr=\"true\">&gt;\\0\\xHHHH;_</string>\n           </property>\n           <property name=\"text\">\n            <string notr=\"true\">0x</string>\n           </property>\n          </widget>\n         </item>\n         <item>\n          <widget class=\"QPushButton\" name=\"hot_keys\">\n           <property name=\"sizePolicy\">\n            <sizepolicy hsizetype=\"Minimum\" vsizetype=\"Minimum\">\n             <horstretch>0</horstretch>\n             <verstretch>0</verstretch>\n            </sizepolicy>\n           </property>\n           <property name=\"maximumSize\">\n            <size>\n             <width>40</width>\n             <height>40</height>\n            </size>\n           </property>\n           <property name=\"toolTip\">\n            <string>Hot Keys</string>\n           </property>\n           <property name=\"statusTip\">\n            <string>Hot Keys</string>\n           </property>\n           <property name=\"whatsThis\">\n            <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n           </property>\n           <property name=\"text\">\n            <string/>\n           </property>\n           <property name=\"icon\">\n            <iconset theme=\"emblem-symbolic-link\"/>\n           </property>\n          </widget>\n         </item>\n        </layout>\n       </widget>\n      </item>\n      <item row=\"1\" column=\"0\">\n       <widget class=\"QLabel\" name=\"description_label\">\n        <property name=\"toolTip\">\n         <string>Description</string>\n        </property>\n        <property name=\"statusTip\">\n         <string>Description</string>\n        </property>\n        <property name=\"text\">\n         <string>Description</string>\n        </property>\n       </widget>\n      </item>\n      <item row=\"1\" column=\"1\">\n       <widget class=\"QLineEdit\" name=\"description_text\">\n        <property name=\"toolTip\">\n         <string>Description</string>\n        </property>\n        <property name=\"statusTip\">\n         <string>Description</string>\n        </property>\n        <property name=\"whatsThis\">\n         <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry description.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n        </property>\n        <property name=\"inputMethodHints\">\n         <set>Qt::InputMethodHint::ImhLatinOnly|Qt::InputMethodHint::ImhNoPredictiveText</set>\n        </property>\n       </widget>\n      </item>\n      <item row=\"2\" column=\"0\">\n       <widget class=\"QLabel\" name=\"path_label\">\n        <property name=\"toolTip\">\n         <string>Path</string>\n        </property>\n        <property name=\"statusTip\">\n         <string>Path</string>\n        </property>\n        <property name=\"text\">\n         <string>Path</string>\n        </property>\n       </widget>\n      </item>\n      <item row=\"2\" column=\"1\">\n       <widget class=\"DevicePathView\" name=\"device_path\">\n        <property name=\"sizePolicy\">\n         <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Preferred\">\n          <horstretch>0</horstretch>\n          <verstretch>0</verstretch>\n         </sizepolicy>\n        </property>\n        <property name=\"font\">\n         <font>\n          <family>Monospace</family>\n         </font>\n        </property>\n        <property name=\"toolTip\">\n         <string>Device path</string>\n        </property>\n        <property name=\"statusTip\">\n         <string>Device path</string>\n        </property>\n        <property name=\"whatsThis\">\n         <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n        </property>\n        <property name=\"sizeAdjustPolicy\">\n         <enum>QAbstractScrollArea::SizeAdjustPolicy::AdjustToContents</enum>\n        </property>\n        <property name=\"alternatingRowColors\">\n         <bool>true</bool>\n        </property>\n        <property name=\"horizontalScrollMode\">\n         <enum>QAbstractItemView::ScrollMode::ScrollPerPixel</enum>\n        </property>\n        <property name=\"movement\">\n         <enum>QListView::Movement::Snap</enum>\n        </property>\n        <property name=\"resizeMode\">\n         <enum>QListView::ResizeMode::Adjust</enum>\n        </property>\n       </widget>\n      </item>\n      <item row=\"3\" column=\"1\">\n       <widget class=\"QWidget\" name=\"device_path_actions\" native=\"true\">\n        <property name=\"sizePolicy\">\n         <sizepolicy hsizetype=\"Preferred\" vsizetype=\"Fixed\">\n          <horstretch>0</horstretch>\n          <verstretch>0</verstretch>\n         </sizepolicy>\n        </property>\n        <layout class=\"QHBoxLayout\" name=\"paths_actions_layout\" stretch=\"0,0,0,0,0,1\">\n         <property name=\"spacing\">\n          <number>1</number>\n         </property>\n         <property name=\"leftMargin\">\n          <number>0</number>\n         </property>\n         <property name=\"topMargin\">\n          <number>0</number>\n         </property>\n         <property name=\"rightMargin\">\n          <number>1</number>\n         </property>\n         <property name=\"bottomMargin\">\n          <number>1</number>\n         </property>\n         <item>\n          <widget class=\"QPushButton\" name=\"path_move_up\">\n           <property name=\"maximumSize\">\n            <size>\n             <width>40</width>\n             <height>40</height>\n            </size>\n           </property>\n           <property name=\"toolTip\">\n            <string>Move file path up</string>\n           </property>\n           <property name=\"statusTip\">\n            <string>Move file path up</string>\n           </property>\n           <property name=\"whatsThis\">\n            <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n           </property>\n           <property name=\"text\">\n            <string/>\n           </property>\n           <property name=\"icon\">\n            <iconset theme=\"go-up\"/>\n           </property>\n          </widget>\n         </item>\n         <item>\n          <widget class=\"QPushButton\" name=\"path_move_down\">\n           <property name=\"maximumSize\">\n            <size>\n             <width>40</width>\n             <height>40</height>\n            </size>\n           </property>\n           <property name=\"toolTip\">\n            <string>Move file path down</string>\n           </property>\n           <property name=\"statusTip\">\n            <string>Move file path down</string>\n           </property>\n           <property name=\"whatsThis\">\n            <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n           </property>\n           <property name=\"text\">\n            <string/>\n           </property>\n           <property name=\"icon\">\n            <iconset theme=\"go-down\"/>\n           </property>\n          </widget>\n         </item>\n         <item>\n          <widget class=\"QPushButton\" name=\"path_remove\">\n           <property name=\"maximumSize\">\n            <size>\n             <width>40</width>\n             <height>40</height>\n            </size>\n           </property>\n           <property name=\"toolTip\">\n            <string>Remove file path</string>\n           </property>\n           <property name=\"statusTip\">\n            <string>Remove file path</string>\n           </property>\n           <property name=\"whatsThis\">\n            <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n           </property>\n           <property name=\"text\">\n            <string/>\n           </property>\n           <property name=\"icon\">\n            <iconset theme=\"list-remove\"/>\n           </property>\n          </widget>\n         </item>\n         <item>\n          <widget class=\"QPushButton\" name=\"path_edit\">\n           <property name=\"maximumSize\">\n            <size>\n             <width>40</width>\n             <height>40</height>\n            </size>\n           </property>\n           <property name=\"toolTip\">\n            <string>Edit file path</string>\n           </property>\n           <property name=\"statusTip\">\n            <string>Edit file path</string>\n           </property>\n           <property name=\"whatsThis\">\n            <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Edit file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n           </property>\n           <property name=\"text\">\n            <string/>\n           </property>\n           <property name=\"icon\">\n            <iconset theme=\"document-properties\"/>\n           </property>\n          </widget>\n         </item>\n         <item>\n          <widget class=\"QPushButton\" name=\"path_add\">\n           <property name=\"maximumSize\">\n            <size>\n             <width>40</width>\n             <height>40</height>\n            </size>\n           </property>\n           <property name=\"toolTip\">\n            <string>Add file path</string>\n           </property>\n           <property name=\"statusTip\">\n            <string>Add file path</string>\n           </property>\n           <property name=\"whatsThis\">\n            <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n           </property>\n           <property name=\"text\">\n            <string/>\n           </property>\n           <property name=\"icon\">\n            <iconset theme=\"list-add\"/>\n           </property>\n          </widget>\n         </item>\n         <item>\n          <spacer name=\"paths_actions_spacer\">\n           <property name=\"orientation\">\n            <enum>Qt::Orientation::Horizontal</enum>\n           </property>\n           <property name=\"sizeHint\" stdset=\"0\">\n            <size>\n             <width>40</width>\n             <height>20</height>\n            </size>\n           </property>\n          </spacer>\n         </item>\n        </layout>\n       </widget>\n      </item>\n      <item row=\"4\" column=\"0\">\n       <widget class=\"QLabel\" name=\"optional_data_label\">\n        <property name=\"toolTip\">\n         <string>Optional data</string>\n        </property>\n        <property name=\"statusTip\">\n         <string>Optional data</string>\n        </property>\n        <property name=\"text\">\n         <string>Optional</string>\n        </property>\n       </widget>\n      </item>\n      <item row=\"4\" column=\"1\">\n       <widget class=\"QComboBox\" name=\"optional_data_format_combo\">\n        <property name=\"sizePolicy\">\n         <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n          <horstretch>0</horstretch>\n          <verstretch>0</verstretch>\n         </sizepolicy>\n        </property>\n        <property name=\"toolTip\">\n         <string>Optional data format</string>\n        </property>\n        <property name=\"statusTip\">\n         <string>Optional data format</string>\n        </property>\n        <property name=\"whatsThis\">\n         <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n        </property>\n        <item>\n         <property name=\"text\">\n          <string>BASE64</string>\n         </property>\n        </item>\n        <item>\n         <property name=\"text\">\n          <string>UTF-16</string>\n         </property>\n        </item>\n        <item>\n         <property name=\"text\">\n          <string>UTF-8</string>\n         </property>\n        </item>\n        <item>\n         <property name=\"text\">\n          <string>HEX</string>\n         </property>\n        </item>\n       </widget>\n      </item>\n      <item row=\"5\" column=\"1\">\n       <widget class=\"QPlainTextEdit\" name=\"optional_data_text\">\n        <property name=\"sizePolicy\">\n         <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Expanding\">\n          <horstretch>0</horstretch>\n          <verstretch>0</verstretch>\n         </sizepolicy>\n        </property>\n        <property name=\"font\">\n         <font>\n          <family>Monospace</family>\n         </font>\n        </property>\n        <property name=\"toolTip\">\n         <string>Optional data</string>\n        </property>\n        <property name=\"statusTip\">\n         <string>Optional data</string>\n        </property>\n        <property name=\"whatsThis\">\n         <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry optional data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n        </property>\n        <property name=\"sizeAdjustPolicy\">\n         <enum>QAbstractScrollArea::SizeAdjustPolicy::AdjustToContents</enum>\n        </property>\n        <property name=\"undoRedoEnabled\">\n         <bool>false</bool>\n        </property>\n       </widget>\n      </item>\n      <item row=\"6\" column=\"0\">\n       <widget class=\"QLabel\" name=\"attributes_label\">\n        <property name=\"toolTip\">\n         <string>Attributes</string>\n        </property>\n        <property name=\"statusTip\">\n         <string>Attributes</string>\n        </property>\n        <property name=\"text\">\n         <string>Attributes</string>\n        </property>\n       </widget>\n      </item>\n      <item row=\"6\" column=\"1\">\n       <widget class=\"QWidget\" name=\"attributes_box\" native=\"true\">\n        <property name=\"sizePolicy\">\n         <sizepolicy hsizetype=\"Preferred\" vsizetype=\"Fixed\">\n          <horstretch>0</horstretch>\n          <verstretch>0</verstretch>\n         </sizepolicy>\n        </property>\n        <layout class=\"QGridLayout\" name=\"attributes_box_layout\" columnstretch=\"0,0,0,1\">\n         <property name=\"leftMargin\">\n          <number>0</number>\n         </property>\n         <property name=\"topMargin\">\n          <number>0</number>\n         </property>\n         <property name=\"rightMargin\">\n          <number>0</number>\n         </property>\n         <property name=\"bottomMargin\">\n          <number>0</number>\n         </property>\n         <property name=\"spacing\">\n          <number>9</number>\n         </property>\n         <item row=\"0\" column=\"0\">\n          <widget class=\"QCheckBox\" name=\"attribute_active\">\n           <property name=\"toolTip\">\n            <string>Active</string>\n           </property>\n           <property name=\"statusTip\">\n            <string>Active</string>\n           </property>\n           <property name=\"whatsThis\">\n            <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Is entry considered for automatic boot?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n           </property>\n           <property name=\"text\">\n            <string>Active</string>\n           </property>\n          </widget>\n         </item>\n         <item row=\"0\" column=\"3\">\n          <spacer name=\"attribute_box_spacer\">\n           <property name=\"orientation\">\n            <enum>Qt::Orientation::Horizontal</enum>\n           </property>\n           <property name=\"sizeHint\" stdset=\"0\">\n            <size>\n             <width>40</width>\n             <height>20</height>\n            </size>\n           </property>\n          </spacer>\n         </item>\n         <item row=\"0\" column=\"1\">\n          <widget class=\"QCheckBox\" name=\"attribute_hidden\">\n           <property name=\"toolTip\">\n            <string>Hidden</string>\n           </property>\n           <property name=\"statusTip\">\n            <string>Hidden</string>\n           </property>\n           <property name=\"whatsThis\">\n            <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hidden.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n           </property>\n           <property name=\"text\">\n            <string>Hidden</string>\n           </property>\n          </widget>\n         </item>\n         <item row=\"0\" column=\"2\">\n          <widget class=\"QCheckBox\" name=\"attribute_force_reconnect\">\n           <property name=\"toolTip\">\n            <string>Force reconnect</string>\n           </property>\n           <property name=\"statusTip\">\n            <string>Force reconnect</string>\n           </property>\n           <property name=\"whatsThis\">\n            <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Force reconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n           </property>\n           <property name=\"text\">\n            <string>Force reconnect</string>\n           </property>\n          </widget>\n         </item>\n        </layout>\n       </widget>\n      </item>\n      <item row=\"7\" column=\"0\">\n       <widget class=\"QLabel\" name=\"category_label\">\n        <property name=\"toolTip\">\n         <string>Category</string>\n        </property>\n        <property name=\"statusTip\">\n         <string>Category</string>\n        </property>\n        <property name=\"text\">\n         <string>Category</string>\n        </property>\n       </widget>\n      </item>\n      <item row=\"7\" column=\"1\">\n       <widget class=\"QComboBox\" name=\"category_combo\">\n        <property name=\"sizePolicy\">\n         <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n          <horstretch>0</horstretch>\n          <verstretch>0</verstretch>\n         </sizepolicy>\n        </property>\n        <property name=\"toolTip\">\n         <string>Category</string>\n        </property>\n        <property name=\"statusTip\">\n         <string>Category</string>\n        </property>\n        <property name=\"whatsThis\">\n         <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry category.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n        </property>\n        <item>\n         <property name=\"text\">\n          <string>Boot</string>\n         </property>\n        </item>\n        <item>\n         <property name=\"text\">\n          <string>App</string>\n         </property>\n        </item>\n       </widget>\n      </item>\n     </layout>\n    </widget>\n   </item>\n   <item>\n    <spacer name=\"vertical_spacer\">\n     <property name=\"orientation\">\n      <enum>Qt::Orientation::Vertical</enum>\n     </property>\n     <property name=\"sizeHint\" stdset=\"0\">\n      <size>\n       <width>0</width>\n       <height>0</height>\n      </size>\n     </property>\n    </spacer>\n   </item>\n  </layout>\n </widget>\n <customwidgets>\n  <customwidget>\n   <class>DevicePathView</class>\n   <extends>QListView</extends>\n   <header>devicepathview.h</header>\n   <slots>\n    <slot>removeCurrentRow()</slot>\n    <slot>insertRow()</slot>\n    <slot>moveCurrentRowUp()</slot>\n    <slot>moveCurrentRowDown()</slot>\n    <slot>editCurrentRow()</slot>\n   </slots>\n  </customwidget>\n </customwidgets>\n <resources/>\n <connections>\n  <connection>\n   <sender>description_text</sender>\n   <signal>textEdited(QString)</signal>\n   <receiver>BootEntryForm</receiver>\n   <slot>setDescription(QString)</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>239</x>\n     <y>21</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>211</x>\n     <y>207</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>optional_data_text</sender>\n   <signal>textChanged()</signal>\n   <receiver>BootEntryForm</receiver>\n   <slot>optionalDataEdited()</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>239</x>\n     <y>305</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>211</x>\n     <y>207</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>path_add</sender>\n   <signal>clicked()</signal>\n   <receiver>device_path</receiver>\n   <slot>insertRow()</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>397</x>\n     <y>53</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>224</x>\n     <y>116</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>path_remove</sender>\n   <signal>clicked()</signal>\n   <receiver>device_path</receiver>\n   <slot>removeCurrentRow()</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>397</x>\n     <y>113</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>224</x>\n     <y>116</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>path_move_up</sender>\n   <signal>clicked()</signal>\n   <receiver>device_path</receiver>\n   <slot>moveCurrentRowUp()</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>397</x>\n     <y>143</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>224</x>\n     <y>116</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>path_move_down</sender>\n   <signal>clicked()</signal>\n   <receiver>device_path</receiver>\n   <slot>moveCurrentRowDown()</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>397</x>\n     <y>173</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>224</x>\n     <y>116</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>attribute_active</sender>\n   <signal>stateChanged(int)</signal>\n   <receiver>BootEntryForm</receiver>\n   <slot>setAttribute(int)</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>133</x>\n     <y>285</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>211</x>\n     <y>192</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>attribute_hidden</sender>\n   <signal>stateChanged(int)</signal>\n   <receiver>BootEntryForm</receiver>\n   <slot>setAttribute(int)</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>233</x>\n     <y>285</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>211</x>\n     <y>192</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>attribute_force_reconnect</sender>\n   <signal>stateChanged(int)</signal>\n   <receiver>BootEntryForm</receiver>\n   <slot>setAttribute(int)</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>133</x>\n     <y>314</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>211</x>\n     <y>192</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>category_combo</sender>\n   <signal>currentIndexChanged(int)</signal>\n   <receiver>BootEntryForm</receiver>\n   <slot>setAttribute(int)</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>243</x>\n     <y>345</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>211</x>\n     <y>192</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>path_edit</sender>\n   <signal>clicked()</signal>\n   <receiver>device_path</receiver>\n   <slot>editCurrentRow()</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>172</x>\n     <y>123</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>243</x>\n     <y>75</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>optional_data_format_combo</sender>\n   <signal>currentIndexChanged(int)</signal>\n   <receiver>BootEntryForm</receiver>\n   <slot>setOptionalDataFormat(int)</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>247</x>\n     <y>157</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>211</x>\n     <y>192</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>device_path</sender>\n   <signal>doubleClicked(QModelIndex)</signal>\n   <receiver>device_path</receiver>\n   <slot>editCurrentRow()</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>249</x>\n     <y>76</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>249</x>\n     <y>76</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>index_text</sender>\n   <signal>textEdited(QString)</signal>\n   <receiver>BootEntryForm</receiver>\n   <slot>setIndex(QString)</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>247</x>\n     <y>21</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>211</x>\n     <y>192</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>hot_keys</sender>\n   <signal>clicked()</signal>\n   <receiver>BootEntryForm</receiver>\n   <slot>showHotKeysDialog()</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>392</x>\n     <y>87</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>207</x>\n     <y>217</y>\n    </hint>\n   </hints>\n  </connection>\n </connections>\n <slots>\n  <slot>setOptionalDataFormat(int)</slot>\n  <slot>optionalDataEdited()</slot>\n  <slot>setDescription(QString)</slot>\n  <slot>setAttribute(int)</slot>\n  <slot>setIndex(QString)</slot>\n  <slot>showHotKeysDialog()</slot>\n </slots>\n</ui>\n"
  },
  {
    "path": "src/form/bootentrywidget.ui",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<ui version=\"4.0\">\n <class>BootEntryWidget</class>\n <widget class=\"QWidget\" name=\"BootEntryWidget\">\n  <property name=\"focusPolicy\">\n   <enum>Qt::TabFocus</enum>\n  </property>\n  <property name=\"contextMenuPolicy\">\n   <enum>Qt::NoContextMenu</enum>\n  </property>\n  <property name=\"windowTitle\">\n   <string>Boot entry</string>\n  </property>\n  <layout class=\"QGridLayout\" name=\"boot_entry_widget_layout\" columnstretch=\"0,1\" columnminimumwidth=\"8,0\">\n   <property name=\"leftMargin\">\n    <number>2</number>\n   </property>\n   <property name=\"topMargin\">\n    <number>2</number>\n   </property>\n   <property name=\"rightMargin\">\n    <number>0</number>\n   </property>\n   <property name=\"bottomMargin\">\n    <number>2</number>\n   </property>\n   <property name=\"horizontalSpacing\">\n    <number>2</number>\n   </property>\n   <property name=\"verticalSpacing\">\n    <number>0</number>\n   </property>\n   <item row=\"2\" column=\"0\">\n    <widget class=\"QRadioButton\" name=\"next_boot\">\n     <property name=\"toolTip\">\n      <string>Next boot</string>\n     </property>\n     <property name=\"statusTip\">\n      <string>Run at next boot</string>\n     </property>\n     <property name=\"whatsThis\">\n      <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;When chosen, entry will run at next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n     </property>\n     <property name=\"autoExclusive\">\n      <bool>false</bool>\n     </property>\n    </widget>\n   </item>\n   <item row=\"2\" column=\"1\">\n    <layout class=\"QVBoxLayout\" name=\"data_box\" stretch=\"0,0\">\n     <item>\n      <widget class=\"QLabelWrapped\" name=\"device_path\">\n       <property name=\"sizePolicy\">\n        <sizepolicy hsizetype=\"MinimumExpanding\" vsizetype=\"Minimum\">\n         <horstretch>0</horstretch>\n         <verstretch>0</verstretch>\n        </sizepolicy>\n       </property>\n       <property name=\"font\">\n        <font>\n         <family>Monospace</family>\n         <pointsize>11</pointsize>\n         <italic>true</italic>\n        </font>\n       </property>\n       <property name=\"toolTip\">\n        <string>Device path</string>\n       </property>\n       <property name=\"statusTip\">\n        <string>Device path</string>\n       </property>\n       <property name=\"whatsThis\">\n        <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n       </property>\n       <property name=\"text\">\n        <string>Device path</string>\n       </property>\n       <property name=\"textFormat\">\n        <enum>Qt::PlainText</enum>\n       </property>\n       <property name=\"alignment\">\n        <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>\n       </property>\n       <property name=\"wordWrap\">\n        <bool>true</bool>\n       </property>\n       <property name=\"textInteractionFlags\">\n        <set>Qt::TextSelectableByMouse</set>\n       </property>\n      </widget>\n     </item>\n     <item>\n      <widget class=\"QLabelWrapped\" name=\"data\">\n       <property name=\"sizePolicy\">\n        <sizepolicy hsizetype=\"MinimumExpanding\" vsizetype=\"MinimumExpanding\">\n         <horstretch>0</horstretch>\n         <verstretch>0</verstretch>\n        </sizepolicy>\n       </property>\n       <property name=\"font\">\n        <font>\n         <family>Monospace</family>\n         <pointsize>9</pointsize>\n        </font>\n       </property>\n       <property name=\"toolTip\">\n        <string>Optional data</string>\n       </property>\n       <property name=\"statusTip\">\n        <string>Optional data</string>\n       </property>\n       <property name=\"whatsThis\">\n        <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data, arguments passed to boot executable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n       </property>\n       <property name=\"text\">\n        <string>Optional data</string>\n       </property>\n       <property name=\"textFormat\">\n        <enum>Qt::PlainText</enum>\n       </property>\n       <property name=\"alignment\">\n        <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>\n       </property>\n       <property name=\"wordWrap\">\n        <bool>true</bool>\n       </property>\n       <property name=\"margin\">\n        <number>3</number>\n       </property>\n       <property name=\"textInteractionFlags\">\n        <set>Qt::TextSelectableByMouse</set>\n       </property>\n      </widget>\n     </item>\n    </layout>\n   </item>\n   <item row=\"1\" column=\"0\">\n    <widget class=\"QIndicatorWidget\" name=\"current_boot\">\n     <property name=\"toolTip\">\n      <string>Current boot</string>\n     </property>\n     <property name=\"statusTip\">\n      <string>Current boot</string>\n     </property>\n     <property name=\"whatsThis\">\n      <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This entry is currently booted.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n     </property>\n     <property name=\"autoExclusive\">\n      <bool>false</bool>\n     </property>\n    </widget>\n   </item>\n   <item row=\"1\" column=\"1\">\n    <layout class=\"QHBoxLayout\" name=\"title\" stretch=\"0,1\">\n     <property name=\"spacing\">\n      <number>6</number>\n     </property>\n     <item>\n      <widget class=\"QLabel\" name=\"index\">\n       <property name=\"sizePolicy\">\n        <sizepolicy hsizetype=\"Minimum\" vsizetype=\"Minimum\">\n         <horstretch>0</horstretch>\n         <verstretch>0</verstretch>\n        </sizepolicy>\n       </property>\n       <property name=\"font\">\n        <font>\n         <family>Monospace</family>\n         <pointsize>12</pointsize>\n         <italic>false</italic>\n         <bold>false</bold>\n        </font>\n       </property>\n       <property name=\"toolTip\">\n        <string>Boot entry index</string>\n       </property>\n       <property name=\"statusTip\">\n        <string>Boot entry index</string>\n       </property>\n       <property name=\"whatsThis\">\n        <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n       </property>\n       <property name=\"text\">\n        <string>Index</string>\n       </property>\n       <property name=\"textFormat\">\n        <enum>Qt::PlainText</enum>\n       </property>\n       <property name=\"alignment\">\n        <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>\n       </property>\n       <property name=\"textInteractionFlags\">\n        <set>Qt::NoTextInteraction</set>\n       </property>\n      </widget>\n     </item>\n     <item>\n      <widget class=\"QLabel\" name=\"description\">\n       <property name=\"sizePolicy\">\n        <sizepolicy hsizetype=\"MinimumExpanding\" vsizetype=\"Minimum\">\n         <horstretch>0</horstretch>\n         <verstretch>0</verstretch>\n        </sizepolicy>\n       </property>\n       <property name=\"font\">\n        <font>\n         <pointsize>12</pointsize>\n         <bold>true</bold>\n        </font>\n       </property>\n       <property name=\"toolTip\">\n        <string>Boot entry description</string>\n       </property>\n       <property name=\"statusTip\">\n        <string>Boot entry description</string>\n       </property>\n       <property name=\"whatsThis\">\n        <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry description, human readable name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n       </property>\n       <property name=\"text\">\n        <string>Boot entry</string>\n       </property>\n       <property name=\"textFormat\">\n        <enum>Qt::PlainText</enum>\n       </property>\n       <property name=\"alignment\">\n        <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>\n       </property>\n       <property name=\"textInteractionFlags\">\n        <set>Qt::TextSelectableByMouse</set>\n       </property>\n      </widget>\n     </item>\n    </layout>\n   </item>\n  </layout>\n </widget>\n <customwidgets>\n  <customwidget>\n   <class>QIndicatorWidget</class>\n   <extends>QRadioButton</extends>\n   <header>qindicatorwidget.h</header>\n  </customwidget>\n  <customwidget>\n   <class>QLabelWrapped</class>\n   <extends>QLabel</extends>\n   <header>qlabelwrapped.h</header>\n  </customwidget>\n </customwidgets>\n <resources/>\n <connections/>\n</ui>\n"
  },
  {
    "path": "src/form/efibooteditor.ui",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<ui version=\"4.0\">\n <class>EFIBootEditor</class>\n <widget class=\"QMainWindow\" name=\"EFIBootEditor\">\n  <property name=\"sizePolicy\">\n   <sizepolicy hsizetype=\"MinimumExpanding\" vsizetype=\"MinimumExpanding\">\n    <horstretch>0</horstretch>\n    <verstretch>0</verstretch>\n   </sizepolicy>\n  </property>\n  <property name=\"minimumSize\">\n   <size>\n    <width>800</width>\n    <height>600</height>\n   </size>\n  </property>\n  <property name=\"windowTitle\">\n   <string>EFI Boot Editor</string>\n  </property>\n  <property name=\"windowIcon\">\n   <iconset theme=\"preferences-system\"/>\n  </property>\n  <widget class=\"QWidget\" name=\"main\">\n   <property name=\"sizePolicy\">\n    <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Expanding\">\n     <horstretch>0</horstretch>\n     <verstretch>0</verstretch>\n    </sizepolicy>\n   </property>\n   <layout class=\"QVBoxLayout\" name=\"main_layout\" stretch=\"1,0\">\n    <item>\n     <widget class=\"QWidget\" name=\"boot\" native=\"true\">\n      <property name=\"sizePolicy\">\n       <sizepolicy hsizetype=\"Preferred\" vsizetype=\"Expanding\">\n        <horstretch>0</horstretch>\n        <verstretch>0</verstretch>\n       </sizepolicy>\n      </property>\n      <layout class=\"QHBoxLayout\" name=\"boot_layout\" stretch=\"3,0,6\">\n       <property name=\"spacing\">\n        <number>6</number>\n       </property>\n       <property name=\"leftMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item>\n        <widget class=\"QTabWidget\" name=\"entries\">\n         <property name=\"minimumSize\">\n          <size>\n           <width>295</width>\n           <height>0</height>\n          </size>\n         </property>\n         <property name=\"tabPosition\">\n          <enum>QTabWidget::TabPosition::South</enum>\n         </property>\n         <property name=\"documentMode\">\n          <bool>true</bool>\n         </property>\n         <widget class=\"QWidget\" name=\"boot_tab\">\n          <attribute name=\"title\">\n           <string>Boot</string>\n          </attribute>\n          <attribute name=\"toolTip\">\n           <string>Boot entries</string>\n          </attribute>\n          <attribute name=\"whatsThis\">\n           <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Boot entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n          </attribute>\n          <layout class=\"QVBoxLayout\" name=\"boot_tab_layout\">\n           <property name=\"spacing\">\n            <number>0</number>\n           </property>\n           <property name=\"leftMargin\">\n            <number>0</number>\n           </property>\n           <property name=\"topMargin\">\n            <number>0</number>\n           </property>\n           <property name=\"rightMargin\">\n            <number>0</number>\n           </property>\n           <property name=\"bottomMargin\">\n            <number>0</number>\n           </property>\n           <item>\n            <widget class=\"BootEntryListView\" name=\"boot_entries_list\">\n             <property name=\"toolTip\">\n              <string>Boot entries</string>\n             </property>\n             <property name=\"statusTip\">\n              <string>Boot entries</string>\n             </property>\n             <property name=\"whatsThis\">\n              <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Boot entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n             </property>\n             <property name=\"editTriggers\">\n              <set>QAbstractItemView::EditTrigger::NoEditTriggers</set>\n             </property>\n             <property name=\"alternatingRowColors\">\n              <bool>true</bool>\n             </property>\n             <property name=\"selectionBehavior\">\n              <enum>QAbstractItemView::SelectionBehavior::SelectRows</enum>\n             </property>\n             <property name=\"horizontalScrollMode\">\n              <enum>QAbstractItemView::ScrollMode::ScrollPerPixel</enum>\n             </property>\n             <property name=\"movement\">\n              <enum>QListView::Movement::Snap</enum>\n             </property>\n             <property name=\"resizeMode\">\n              <enum>QListView::ResizeMode::Adjust</enum>\n             </property>\n             <property name=\"wordWrap\">\n              <bool>true</bool>\n             </property>\n            </widget>\n           </item>\n          </layout>\n         </widget>\n         <widget class=\"QWidget\" name=\"driver_tab\">\n          <attribute name=\"title\">\n           <string>Driver</string>\n          </attribute>\n          <attribute name=\"toolTip\">\n           <string>Driver entries</string>\n          </attribute>\n          <attribute name=\"whatsThis\">\n           <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Driver entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n          </attribute>\n          <layout class=\"QVBoxLayout\" name=\"driver_tab_layout\">\n           <property name=\"spacing\">\n            <number>0</number>\n           </property>\n           <property name=\"leftMargin\">\n            <number>0</number>\n           </property>\n           <property name=\"topMargin\">\n            <number>0</number>\n           </property>\n           <property name=\"rightMargin\">\n            <number>0</number>\n           </property>\n           <property name=\"bottomMargin\">\n            <number>0</number>\n           </property>\n           <item>\n            <widget class=\"BootEntryListView\" name=\"driver_entries_list\">\n             <property name=\"toolTip\">\n              <string>Driver entries</string>\n             </property>\n             <property name=\"statusTip\">\n              <string>Driver entries</string>\n             </property>\n             <property name=\"whatsThis\">\n              <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Driver entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n             </property>\n             <property name=\"editTriggers\">\n              <set>QAbstractItemView::EditTrigger::NoEditTriggers</set>\n             </property>\n             <property name=\"alternatingRowColors\">\n              <bool>true</bool>\n             </property>\n             <property name=\"selectionBehavior\">\n              <enum>QAbstractItemView::SelectionBehavior::SelectRows</enum>\n             </property>\n             <property name=\"horizontalScrollMode\">\n              <enum>QAbstractItemView::ScrollMode::ScrollPerPixel</enum>\n             </property>\n             <property name=\"movement\">\n              <enum>QListView::Movement::Snap</enum>\n             </property>\n             <property name=\"resizeMode\">\n              <enum>QListView::ResizeMode::Adjust</enum>\n             </property>\n             <property name=\"wordWrap\">\n              <bool>true</bool>\n             </property>\n            </widget>\n           </item>\n          </layout>\n         </widget>\n         <widget class=\"QWidget\" name=\"sysprep_tab\">\n          <attribute name=\"title\">\n           <string>System Preparation</string>\n          </attribute>\n          <attribute name=\"toolTip\">\n           <string>SysPrep entries</string>\n          </attribute>\n          <attribute name=\"whatsThis\">\n           <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of SysPrep entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n          </attribute>\n          <layout class=\"QVBoxLayout\" name=\"sysprep_tab_layout\">\n           <property name=\"spacing\">\n            <number>0</number>\n           </property>\n           <property name=\"leftMargin\">\n            <number>0</number>\n           </property>\n           <property name=\"topMargin\">\n            <number>0</number>\n           </property>\n           <property name=\"rightMargin\">\n            <number>0</number>\n           </property>\n           <property name=\"bottomMargin\">\n            <number>0</number>\n           </property>\n           <item>\n            <widget class=\"BootEntryListView\" name=\"sysprep_entries_list\">\n             <property name=\"toolTip\">\n              <string>SysPrep entries</string>\n             </property>\n             <property name=\"statusTip\">\n              <string>SysPrep entries</string>\n             </property>\n             <property name=\"whatsThis\">\n              <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of SysPrep entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n             </property>\n             <property name=\"editTriggers\">\n              <set>QAbstractItemView::EditTrigger::NoEditTriggers</set>\n             </property>\n             <property name=\"alternatingRowColors\">\n              <bool>true</bool>\n             </property>\n             <property name=\"selectionBehavior\">\n              <enum>QAbstractItemView::SelectionBehavior::SelectRows</enum>\n             </property>\n             <property name=\"horizontalScrollMode\">\n              <enum>QAbstractItemView::ScrollMode::ScrollPerPixel</enum>\n             </property>\n             <property name=\"movement\">\n              <enum>QListView::Movement::Snap</enum>\n             </property>\n             <property name=\"resizeMode\">\n              <enum>QListView::ResizeMode::Adjust</enum>\n             </property>\n             <property name=\"wordWrap\">\n              <bool>true</bool>\n             </property>\n            </widget>\n           </item>\n          </layout>\n         </widget>\n         <widget class=\"QWidget\" name=\"platform_recovery_tab\">\n          <attribute name=\"title\">\n           <string>Platform Recovery</string>\n          </attribute>\n          <attribute name=\"toolTip\">\n           <string>PlatformRecovery entries</string>\n          </attribute>\n          <attribute name=\"whatsThis\">\n           <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of PlatformRecovery entries (READONLY).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n          </attribute>\n          <layout class=\"QVBoxLayout\" name=\"platform_recovery_tab_layout\">\n           <property name=\"spacing\">\n            <number>0</number>\n           </property>\n           <property name=\"leftMargin\">\n            <number>0</number>\n           </property>\n           <property name=\"topMargin\">\n            <number>0</number>\n           </property>\n           <property name=\"rightMargin\">\n            <number>0</number>\n           </property>\n           <property name=\"bottomMargin\">\n            <number>0</number>\n           </property>\n           <item>\n            <widget class=\"BootEntryListView\" name=\"platform_recovery_entries_list\">\n             <property name=\"toolTip\">\n              <string>PlatformRecovery entries (READONLY)</string>\n             </property>\n             <property name=\"statusTip\">\n              <string>PlatformRecovery entries (READONLY)</string>\n             </property>\n             <property name=\"whatsThis\">\n              <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of PlatformRecovery entries (READONLY).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n             </property>\n             <property name=\"editTriggers\">\n              <set>QAbstractItemView::EditTrigger::NoEditTriggers</set>\n             </property>\n             <property name=\"alternatingRowColors\">\n              <bool>true</bool>\n             </property>\n             <property name=\"selectionBehavior\">\n              <enum>QAbstractItemView::SelectionBehavior::SelectRows</enum>\n             </property>\n             <property name=\"horizontalScrollMode\">\n              <enum>QAbstractItemView::ScrollMode::ScrollPerPixel</enum>\n             </property>\n             <property name=\"movement\">\n              <enum>QListView::Movement::Snap</enum>\n             </property>\n             <property name=\"resizeMode\">\n              <enum>QListView::ResizeMode::Adjust</enum>\n             </property>\n             <property name=\"wordWrap\">\n              <bool>true</bool>\n             </property>\n            </widget>\n           </item>\n          </layout>\n         </widget>\n        </widget>\n       </item>\n       <item>\n        <widget class=\"QWidget\" name=\"entries_actions\" native=\"true\">\n         <layout class=\"QVBoxLayout\" name=\"entries_actions_layout\" stretch=\"0,0,0,0,0,0,1\">\n          <property name=\"spacing\">\n           <number>6</number>\n          </property>\n          <property name=\"leftMargin\">\n           <number>0</number>\n          </property>\n          <property name=\"topMargin\">\n           <number>0</number>\n          </property>\n          <property name=\"rightMargin\">\n           <number>0</number>\n          </property>\n          <property name=\"bottomMargin\">\n           <number>0</number>\n          </property>\n          <item>\n           <widget class=\"QPushButton\" name=\"entry_add\">\n            <property name=\"maximumSize\">\n             <size>\n              <width>48</width>\n              <height>48</height>\n             </size>\n            </property>\n            <property name=\"toolTip\">\n             <string>Add new entry</string>\n            </property>\n            <property name=\"statusTip\">\n             <string>Add new entry</string>\n            </property>\n            <property name=\"whatsThis\">\n             <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to add new boot entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n            </property>\n            <property name=\"text\">\n             <string/>\n            </property>\n            <property name=\"icon\">\n             <iconset theme=\"list-add\"/>\n            </property>\n            <property name=\"iconSize\">\n             <size>\n              <width>24</width>\n              <height>24</height>\n             </size>\n            </property>\n           </widget>\n          </item>\n          <item>\n           <widget class=\"QPushButton\" name=\"entry_duplcate\">\n            <property name=\"maximumSize\">\n             <size>\n              <width>48</width>\n              <height>48</height>\n             </size>\n            </property>\n            <property name=\"toolTip\">\n             <string>Duplicate entry</string>\n            </property>\n            <property name=\"statusTip\">\n             <string>Duplicate entry</string>\n            </property>\n            <property name=\"whatsThis\">\n             <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Duplicate entry&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n            </property>\n            <property name=\"text\">\n             <string/>\n            </property>\n            <property name=\"icon\">\n             <iconset theme=\"edit-copy\"/>\n            </property>\n            <property name=\"iconSize\">\n             <size>\n              <width>24</width>\n              <height>24</height>\n             </size>\n            </property>\n           </widget>\n          </item>\n          <item>\n           <widget class=\"QPushButton\" name=\"entry_remove\">\n            <property name=\"maximumSize\">\n             <size>\n              <width>48</width>\n              <height>48</height>\n             </size>\n            </property>\n            <property name=\"toolTip\">\n             <string>Remove entry</string>\n            </property>\n            <property name=\"statusTip\">\n             <string>Remove entry</string>\n            </property>\n            <property name=\"whatsThis\">\n             <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to remove currently selected entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n            </property>\n            <property name=\"text\">\n             <string/>\n            </property>\n            <property name=\"icon\">\n             <iconset theme=\"list-remove\"/>\n            </property>\n            <property name=\"iconSize\">\n             <size>\n              <width>24</width>\n              <height>24</height>\n             </size>\n            </property>\n           </widget>\n          </item>\n          <item>\n           <widget class=\"QPushButton\" name=\"entry_move_up\">\n            <property name=\"maximumSize\">\n             <size>\n              <width>48</width>\n              <height>48</height>\n             </size>\n            </property>\n            <property name=\"toolTip\">\n             <string>Move entry up</string>\n            </property>\n            <property name=\"statusTip\">\n             <string>Move entry up</string>\n            </property>\n            <property name=\"whatsThis\">\n             <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n            </property>\n            <property name=\"text\">\n             <string/>\n            </property>\n            <property name=\"icon\">\n             <iconset theme=\"go-up\"/>\n            </property>\n            <property name=\"iconSize\">\n             <size>\n              <width>24</width>\n              <height>24</height>\n             </size>\n            </property>\n           </widget>\n          </item>\n          <item>\n           <widget class=\"QPushButton\" name=\"entry_move_down\">\n            <property name=\"maximumSize\">\n             <size>\n              <width>48</width>\n              <height>48</height>\n             </size>\n            </property>\n            <property name=\"toolTip\">\n             <string>Move entry down</string>\n            </property>\n            <property name=\"statusTip\">\n             <string>Move entry down</string>\n            </property>\n            <property name=\"whatsThis\">\n             <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n            </property>\n            <property name=\"text\">\n             <string/>\n            </property>\n            <property name=\"icon\">\n             <iconset theme=\"go-down\"/>\n            </property>\n            <property name=\"iconSize\">\n             <size>\n              <width>24</width>\n              <height>24</height>\n             </size>\n            </property>\n           </widget>\n          </item>\n          <item>\n           <widget class=\"QPushButton\" name=\"entries_reorder\">\n            <property name=\"maximumSize\">\n             <size>\n              <width>48</width>\n              <height>48</height>\n             </size>\n            </property>\n            <property name=\"toolTip\">\n             <string>Reorder entries</string>\n            </property>\n            <property name=\"statusTip\">\n             <string>Reorder entries</string>\n            </property>\n            <property name=\"whatsThis\">\n             <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click here to adjust the order of all entries based on their position on the list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n            </property>\n            <property name=\"text\">\n             <string/>\n            </property>\n            <property name=\"icon\">\n             <iconset theme=\"format-justify-left\"/>\n            </property>\n            <property name=\"iconSize\">\n             <size>\n              <width>24</width>\n              <height>24</height>\n             </size>\n            </property>\n           </widget>\n          </item>\n          <item>\n           <spacer name=\"entries_actions_spacer\">\n            <property name=\"orientation\">\n             <enum>Qt::Orientation::Vertical</enum>\n            </property>\n            <property name=\"sizeHint\" stdset=\"0\">\n             <size>\n              <width>0</width>\n              <height>0</height>\n             </size>\n            </property>\n           </spacer>\n          </item>\n         </layout>\n        </widget>\n       </item>\n       <item>\n        <widget class=\"QWidget\" name=\"details\" native=\"true\">\n         <layout class=\"QVBoxLayout\" name=\"details_layout\" stretch=\"1,0,0\">\n          <property name=\"spacing\">\n           <number>6</number>\n          </property>\n          <property name=\"leftMargin\">\n           <number>0</number>\n          </property>\n          <property name=\"topMargin\">\n           <number>0</number>\n          </property>\n          <property name=\"rightMargin\">\n           <number>0</number>\n          </property>\n          <property name=\"bottomMargin\">\n           <number>0</number>\n          </property>\n          <item>\n           <widget class=\"BootEntryForm\" name=\"entry_form\" native=\"true\">\n            <property name=\"sizePolicy\">\n             <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Expanding\">\n              <horstretch>0</horstretch>\n              <verstretch>0</verstretch>\n             </sizepolicy>\n            </property>\n           </widget>\n          </item>\n          <item>\n           <widget class=\"Line\" name=\"settings_line\">\n            <property name=\"orientation\">\n             <enum>Qt::Orientation::Horizontal</enum>\n            </property>\n           </widget>\n          </item>\n          <item>\n           <widget class=\"QResizableTabWidget\" name=\"settings\">\n            <property name=\"enabled\">\n             <bool>true</bool>\n            </property>\n            <property name=\"sizePolicy\">\n             <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Minimum\">\n              <horstretch>0</horstretch>\n              <verstretch>0</verstretch>\n             </sizepolicy>\n            </property>\n            <property name=\"tabPosition\">\n             <enum>QTabWidget::TabPosition::South</enum>\n            </property>\n            <property name=\"documentMode\">\n             <bool>true</bool>\n            </property>\n            <widget class=\"QWidget\" name=\"global_tab\">\n             <property name=\"toolTip\">\n              <string>Global settings</string>\n             </property>\n             <property name=\"statusTip\">\n              <string>Global settings</string>\n             </property>\n             <property name=\"whatsThis\">\n              <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Global settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n             </property>\n             <attribute name=\"title\">\n              <string>Global</string>\n             </attribute>\n             <attribute name=\"toolTip\">\n              <string>Global settings</string>\n             </attribute>\n             <attribute name=\"whatsThis\">\n              <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Global settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n             </attribute>\n             <layout class=\"QFormLayout\" name=\"global_layout\">\n              <property name=\"fieldGrowthPolicy\">\n               <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n              </property>\n              <property name=\"labelAlignment\">\n               <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n              </property>\n              <property name=\"leftMargin\">\n               <number>0</number>\n              </property>\n              <property name=\"topMargin\">\n               <number>6</number>\n              </property>\n              <property name=\"rightMargin\">\n               <number>0</number>\n              </property>\n              <property name=\"bottomMargin\">\n               <number>6</number>\n              </property>\n              <item row=\"0\" column=\"0\">\n               <widget class=\"QLabel\" name=\"timeout_label\">\n                <property name=\"toolTip\">\n                 <string>Boot manager timeout</string>\n                </property>\n                <property name=\"statusTip\">\n                 <string>Boot manager timeout</string>\n                </property>\n                <property name=\"whatsThis\">\n                 <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot manager timeout.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n                </property>\n                <property name=\"text\">\n                 <string>Timeout</string>\n                </property>\n               </widget>\n              </item>\n              <item row=\"0\" column=\"1\">\n               <widget class=\"QSpinBox\" name=\"timeout_number\">\n                <property name=\"sizePolicy\">\n                 <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n                  <horstretch>0</horstretch>\n                  <verstretch>0</verstretch>\n                 </sizepolicy>\n                </property>\n                <property name=\"toolTip\">\n                 <string>Boot manager timeout</string>\n                </property>\n                <property name=\"statusTip\">\n                 <string>Boot manager timeout</string>\n                </property>\n                <property name=\"whatsThis\">\n                 <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot manager timeout.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n                </property>\n                <property name=\"suffix\">\n                 <string>s</string>\n                </property>\n                <property name=\"maximum\">\n                 <number>65535</number>\n                </property>\n               </widget>\n              </item>\n             </layout>\n            </widget>\n            <widget class=\"QWidget\" name=\"firmware_tab\">\n             <property name=\"toolTip\">\n              <string>Firmware details</string>\n             </property>\n             <property name=\"statusTip\">\n              <string>Firmware details</string>\n             </property>\n             <property name=\"whatsThis\">\n              <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n             </property>\n             <attribute name=\"title\">\n              <string>Firmware</string>\n             </attribute>\n             <attribute name=\"toolTip\">\n              <string>Firmware details</string>\n             </attribute>\n             <attribute name=\"whatsThis\">\n              <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n             </attribute>\n             <layout class=\"QFormLayout\" name=\"firmware_layout\">\n              <property name=\"fieldGrowthPolicy\">\n               <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n              </property>\n              <property name=\"labelAlignment\">\n               <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n              </property>\n              <property name=\"leftMargin\">\n               <number>0</number>\n              </property>\n              <property name=\"topMargin\">\n               <number>6</number>\n              </property>\n              <property name=\"rightMargin\">\n               <number>0</number>\n              </property>\n              <property name=\"bottomMargin\">\n               <number>6</number>\n              </property>\n              <item row=\"0\" column=\"0\">\n               <widget class=\"QLabel\" name=\"firmware_features_label\">\n                <property name=\"sizePolicy\">\n                 <sizepolicy hsizetype=\"Preferred\" vsizetype=\"Preferred\">\n                  <horstretch>0</horstretch>\n                  <verstretch>0</verstretch>\n                 </sizepolicy>\n                </property>\n                <property name=\"toolTip\">\n                 <string>Available firmware features</string>\n                </property>\n                <property name=\"statusTip\">\n                 <string>Available firmware features</string>\n                </property>\n                <property name=\"whatsThis\">\n                 <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware features.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n                </property>\n                <property name=\"text\">\n                 <string>Features</string>\n                </property>\n               </widget>\n              </item>\n              <item row=\"0\" column=\"1\">\n               <layout class=\"QGridLayout\" name=\"firmware_features\" columnstretch=\"0,0,1\">\n                <item row=\"2\" column=\"1\">\n                 <widget class=\"QIndicatorWidget\" name=\"capsule_reporting_support\">\n                  <property name=\"toolTip\">\n                   <string>Platform supports reporting of deferred capsule processing by creation of result variable</string>\n                  </property>\n                  <property name=\"statusTip\">\n                   <string>Platform supports reporting of deferred capsule processing by creation of result variable</string>\n                  </property>\n                  <property name=\"whatsThis\">\n                   <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports reporting of deferred capsule processing by creation of result variable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n                  </property>\n                  <property name=\"text\">\n                   <string>Capsule Reporting</string>\n                  </property>\n                  <property name=\"autoExclusive\">\n                   <bool>false</bool>\n                  </property>\n                 </widget>\n                </item>\n                <item row=\"2\" column=\"0\">\n                 <widget class=\"QIndicatorWidget\" name=\"timestamp_based_revocation\">\n                  <property name=\"toolTip\">\n                   <string>Firmware supports timestamp based revocation</string>\n                  </property>\n                  <property name=\"statusTip\">\n                   <string>Firmware supports timestamp based revocation</string>\n                  </property>\n                  <property name=\"whatsThis\">\n                   <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware supports timestamp based revocation.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n                  </property>\n                  <property name=\"text\">\n                   <string>Timestamp based revocation</string>\n                  </property>\n                  <property name=\"autoExclusive\">\n                   <bool>false</bool>\n                  </property>\n                 </widget>\n                </item>\n                <item row=\"1\" column=\"0\">\n                 <widget class=\"QIndicatorWidget\" name=\"fmp_capsule_support\">\n                  <property name=\"toolTip\">\n                   <string>Platform supports processing of Firmware Management Protocol update capsule</string>\n                  </property>\n                  <property name=\"statusTip\">\n                   <string>Platform supports processing of Firmware Management Protocol update capsule</string>\n                  </property>\n                  <property name=\"whatsThis\">\n                   <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of Firmware Management Protocol update capsule.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n                  </property>\n                  <property name=\"text\">\n                   <string>FMP Capsule</string>\n                  </property>\n                  <property name=\"autoExclusive\">\n                   <bool>false</bool>\n                  </property>\n                 </widget>\n                </item>\n                <item row=\"1\" column=\"1\">\n                 <widget class=\"QIndicatorWidget\" name=\"file_capsule_support\">\n                  <property name=\"toolTip\">\n                   <string>Platform supports processing of file capsules</string>\n                  </property>\n                  <property name=\"statusTip\">\n                   <string>Platform supports processing of file capsules</string>\n                  </property>\n                  <property name=\"whatsThis\">\n                   <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of file capsules.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n                  </property>\n                  <property name=\"text\">\n                   <string>File Capsule</string>\n                  </property>\n                  <property name=\"autoExclusive\">\n                   <bool>false</bool>\n                  </property>\n                 </widget>\n                </item>\n                <item row=\"2\" column=\"2\">\n                 <spacer name=\"firmware_features_hspacer\">\n                  <property name=\"orientation\">\n                   <enum>Qt::Orientation::Horizontal</enum>\n                  </property>\n                  <property name=\"sizeHint\" stdset=\"0\">\n                   <size>\n                    <width>0</width>\n                    <height>0</height>\n                   </size>\n                  </property>\n                 </spacer>\n                </item>\n               </layout>\n              </item>\n              <item row=\"1\" column=\"0\">\n               <widget class=\"QLabel\" name=\"firmware_actions_label\">\n                <property name=\"toolTip\">\n                 <string>Available firmware actions</string>\n                </property>\n                <property name=\"statusTip\">\n                 <string>Available firmware actions</string>\n                </property>\n                <property name=\"whatsThis\">\n                 <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware actions.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n                </property>\n                <property name=\"text\">\n                 <string>Actions</string>\n                </property>\n               </widget>\n              </item>\n              <item row=\"1\" column=\"1\">\n               <layout class=\"QGridLayout\" name=\"firmware_actions\" columnstretch=\"0,0,1\">\n                <item row=\"0\" column=\"0\">\n                 <widget class=\"QCheckBox\" name=\"boot_to_firmware_ui\">\n                  <property name=\"toolTip\">\n                   <string>Stop at a firmware user interface on the next boot</string>\n                  </property>\n                  <property name=\"statusTip\">\n                   <string>Stop at a firmware user interface on the next boot</string>\n                  </property>\n                  <property name=\"whatsThis\">\n                   <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Stop at a firmware user interface on the next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n                  </property>\n                  <property name=\"text\">\n                   <string>Boot to firmware UI</string>\n                  </property>\n                 </widget>\n                </item>\n                <item row=\"1\" column=\"0\">\n                 <widget class=\"QCheckBox\" name=\"collect_current_config\">\n                  <property name=\"toolTip\">\n                   <string>Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot</string>\n                  </property>\n                  <property name=\"statusTip\">\n                   <string>Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot</string>\n                  </property>\n                  <property name=\"whatsThis\">\n                   <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n                  </property>\n                  <property name=\"text\">\n                   <string>Collect current config</string>\n                  </property>\n                 </widget>\n                </item>\n                <item row=\"1\" column=\"1\">\n                 <widget class=\"QCheckBox\" name=\"start_platform_recovery\">\n                  <property name=\"toolTip\">\n                   <string>Indicate that Platform-defined recovery should commence upon reboot</string>\n                  </property>\n                  <property name=\"statusTip\">\n                   <string>Indicate that Platform-defined recovery should commence upon reboot</string>\n                  </property>\n                  <property name=\"whatsThis\">\n                   <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that Platform-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n                  </property>\n                  <property name=\"text\">\n                   <string>Start Platform recovery</string>\n                  </property>\n                 </widget>\n                </item>\n                <item row=\"0\" column=\"1\">\n                 <widget class=\"QCheckBox\" name=\"start_os_recovery\">\n                  <property name=\"toolTip\">\n                   <string>Indicate that OS-defined recovery should commence upon reboot</string>\n                  </property>\n                  <property name=\"statusTip\">\n                   <string>Indicate that OS-defined recovery should commence upon reboot</string>\n                  </property>\n                  <property name=\"whatsThis\">\n                   <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that OS-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n                  </property>\n                  <property name=\"text\">\n                   <string>Start OS recovery</string>\n                  </property>\n                 </widget>\n                </item>\n                <item row=\"0\" column=\"2\">\n                 <spacer name=\"firmware_actions_hspacer\">\n                  <property name=\"orientation\">\n                   <enum>Qt::Orientation::Horizontal</enum>\n                  </property>\n                  <property name=\"sizeHint\" stdset=\"0\">\n                   <size>\n                    <width>0</width>\n                    <height>0</height>\n                   </size>\n                  </property>\n                 </spacer>\n                </item>\n               </layout>\n              </item>\n             </layout>\n            </widget>\n            <widget class=\"QWidget\" name=\"secure_boot_tab\">\n             <property name=\"sizePolicy\">\n              <sizepolicy hsizetype=\"Preferred\" vsizetype=\"Preferred\">\n               <horstretch>0</horstretch>\n               <verstretch>0</verstretch>\n              </sizepolicy>\n             </property>\n             <property name=\"toolTip\">\n              <string>Secure boot settings</string>\n             </property>\n             <property name=\"statusTip\">\n              <string>Secure boot settings</string>\n             </property>\n             <property name=\"whatsThis\">\n              <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Secure boot settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n             </property>\n             <attribute name=\"title\">\n              <string>Secure Boot</string>\n             </attribute>\n             <attribute name=\"toolTip\">\n              <string>Secure boot settings</string>\n             </attribute>\n             <attribute name=\"whatsThis\">\n              <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Secure boot settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n             </attribute>\n             <layout class=\"QGridLayout\" name=\"secure_boot_layout\" columnstretch=\"0,0,0,1\">\n              <property name=\"leftMargin\">\n               <number>0</number>\n              </property>\n              <property name=\"topMargin\">\n               <number>6</number>\n              </property>\n              <property name=\"rightMargin\">\n               <number>0</number>\n              </property>\n              <property name=\"bottomMargin\">\n               <number>6</number>\n              </property>\n              <item row=\"1\" column=\"3\">\n               <spacer name=\"secure_boot_hspacer\">\n                <property name=\"orientation\">\n                 <enum>Qt::Orientation::Horizontal</enum>\n                </property>\n                <property name=\"sizeHint\" stdset=\"0\">\n                 <size>\n                  <width>0</width>\n                  <height>0</height>\n                 </size>\n                </property>\n               </spacer>\n              </item>\n              <item row=\"1\" column=\"1\">\n               <widget class=\"QIndicatorWidget\" name=\"audit_mode\">\n                <property name=\"toolTip\">\n                 <string>Defines whether the system is currently operating in Audit Mode</string>\n                </property>\n                <property name=\"statusTip\">\n                 <string>Defines whether the system is currently operating in Audit Mode</string>\n                </property>\n                <property name=\"whatsThis\">\n                 <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Audit Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n                </property>\n                <property name=\"text\">\n                 <string>Audit Mode</string>\n                </property>\n                <property name=\"autoExclusive\">\n                 <bool>false</bool>\n                </property>\n               </widget>\n              </item>\n              <item row=\"1\" column=\"2\">\n               <widget class=\"QIndicatorWidget\" name=\"deployed_mode\">\n                <property name=\"toolTip\">\n                 <string>Defines whether the system is currently operating in Deployed Mode</string>\n                </property>\n                <property name=\"statusTip\">\n                 <string>Defines whether the system is currently operating in Deployed Mode</string>\n                </property>\n                <property name=\"whatsThis\">\n                 <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Deployed Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n                </property>\n                <property name=\"text\">\n                 <string>Deployed Mode</string>\n                </property>\n                <property name=\"autoExclusive\">\n                 <bool>false</bool>\n                </property>\n               </widget>\n              </item>\n              <item row=\"0\" column=\"0\">\n               <widget class=\"QIndicatorWidget\" name=\"secure_boot\">\n                <property name=\"toolTip\">\n                 <string>Defines whether the platform firmware is operating with Secure Boot enabled</string>\n                </property>\n                <property name=\"statusTip\">\n                 <string>Defines whether the platform firmware is operating with Secure Boot enabled</string>\n                </property>\n                <property name=\"whatsThis\">\n                 <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the platform firmware is operating with Secure Boot enabled.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n                </property>\n                <property name=\"text\">\n                 <string>Secure Boot</string>\n                </property>\n                <property name=\"autoExclusive\">\n                 <bool>false</bool>\n                </property>\n               </widget>\n              </item>\n              <item row=\"1\" column=\"0\">\n               <widget class=\"QIndicatorWidget\" name=\"setup_mode\">\n                <property name=\"toolTip\">\n                 <string>Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables</string>\n                </property>\n                <property name=\"statusTip\">\n                 <string>Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables</string>\n                </property>\n                <property name=\"whatsThis\">\n                 <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n                </property>\n                <property name=\"text\">\n                 <string>Setup Mode</string>\n                </property>\n                <property name=\"autoExclusive\">\n                 <bool>false</bool>\n                </property>\n               </widget>\n              </item>\n              <item row=\"0\" column=\"1\">\n               <widget class=\"QIndicatorWidget\" name=\"vendor_keys\">\n                <property name=\"toolTip\">\n                 <string>Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys</string>\n                </property>\n                <property name=\"statusTip\">\n                 <string>Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys</string>\n                </property>\n                <property name=\"whatsThis\">\n                 <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n                </property>\n                <property name=\"text\">\n                 <string>Vendor Keys</string>\n                </property>\n                <property name=\"autoExclusive\">\n                 <bool>false</bool>\n                </property>\n               </widget>\n              </item>\n             </layout>\n            </widget>\n            <widget class=\"QWidget\" name=\"apple_tab\">\n             <property name=\"toolTip\">\n              <string>Apple settings</string>\n             </property>\n             <property name=\"statusTip\">\n              <string>Apple settings</string>\n             </property>\n             <property name=\"whatsThis\">\n              <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apple settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n             </property>\n             <attribute name=\"title\">\n              <string>Apple</string>\n             </attribute>\n             <attribute name=\"toolTip\">\n              <string>Apple settings</string>\n             </attribute>\n             <attribute name=\"whatsThis\">\n              <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apple settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n             </attribute>\n             <layout class=\"QFormLayout\" name=\"apple_layout\">\n              <property name=\"fieldGrowthPolicy\">\n               <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n              </property>\n              <property name=\"labelAlignment\">\n               <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n              </property>\n              <property name=\"leftMargin\">\n               <number>0</number>\n              </property>\n              <property name=\"topMargin\">\n               <number>6</number>\n              </property>\n              <property name=\"rightMargin\">\n               <number>0</number>\n              </property>\n              <property name=\"bottomMargin\">\n               <number>6</number>\n              </property>\n              <item row=\"0\" column=\"0\">\n               <widget class=\"QLabel\" name=\"boot_args_label\">\n                <property name=\"toolTip\">\n                 <string>macOS boot arguments</string>\n                </property>\n                <property name=\"statusTip\">\n                 <string>macOS boot arguments</string>\n                </property>\n                <property name=\"whatsThis\">\n                 <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;macOS boot arguments.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n                </property>\n                <property name=\"text\">\n                 <string>Boot args</string>\n                </property>\n               </widget>\n              </item>\n              <item row=\"0\" column=\"1\">\n               <widget class=\"QLineEdit\" name=\"boot_args_text\">\n                <property name=\"toolTip\">\n                 <string>macOS boot arguments</string>\n                </property>\n                <property name=\"statusTip\">\n                 <string>macOS boot arguments</string>\n                </property>\n                <property name=\"whatsThis\">\n                 <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;macOS boot arguments.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n                </property>\n               </widget>\n              </item>\n             </layout>\n            </widget>\n           </widget>\n          </item>\n         </layout>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n    </item>\n    <item>\n     <widget class=\"QUndoView\" name=\"undo_view\">\n      <property name=\"enabled\">\n       <bool>true</bool>\n      </property>\n      <property name=\"focusPolicy\">\n       <enum>Qt::FocusPolicy::NoFocus</enum>\n      </property>\n      <property name=\"contextMenuPolicy\">\n       <enum>Qt::ContextMenuPolicy::NoContextMenu</enum>\n      </property>\n      <property name=\"toolTip\">\n       <string>Undo stack</string>\n      </property>\n      <property name=\"statusTip\">\n       <string>Undo stack</string>\n      </property>\n      <property name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo stack&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </property>\n      <property name=\"editTriggers\">\n       <set>QAbstractItemView::EditTrigger::NoEditTriggers</set>\n      </property>\n      <property name=\"showDropIndicator\" stdset=\"0\">\n       <bool>false</bool>\n      </property>\n      <property name=\"alternatingRowColors\">\n       <bool>true</bool>\n      </property>\n      <property name=\"selectionMode\">\n       <enum>QAbstractItemView::SelectionMode::NoSelection</enum>\n      </property>\n     </widget>\n    </item>\n   </layout>\n  </widget>\n  <widget class=\"QMenuBar\" name=\"menu\">\n   <widget class=\"QMenu\" name=\"file\">\n    <property name=\"toolTip\">\n     <string>File</string>\n    </property>\n    <property name=\"statusTip\">\n     <string>File</string>\n    </property>\n    <property name=\"whatsThis\">\n     <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n    </property>\n    <property name=\"title\">\n     <string>&amp;File</string>\n    </property>\n    <addaction name=\"save\"/>\n    <addaction name=\"export_\"/>\n    <addaction name=\"import_\"/>\n    <addaction name=\"reload\"/>\n    <addaction name=\"separator\"/>\n    <addaction name=\"exit\"/>\n   </widget>\n   <widget class=\"QMenu\" name=\"help\">\n    <property name=\"toolTip\">\n     <string>Help</string>\n    </property>\n    <property name=\"statusTip\">\n     <string>Help</string>\n    </property>\n    <property name=\"whatsThis\">\n     <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Help menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n    </property>\n    <property name=\"title\">\n     <string>&amp;Help</string>\n    </property>\n    <addaction name=\"about\"/>\n    <addaction name=\"separator\"/>\n    <addaction name=\"dump_raw_efi_data\"/>\n   </widget>\n   <widget class=\"QMenu\" name=\"edit\">\n    <property name=\"title\">\n     <string>&amp;Edit</string>\n    </property>\n    <addaction name=\"undo\"/>\n    <addaction name=\"redo\"/>\n    <addaction name=\"separator\"/>\n    <addaction name=\"hot_keys\"/>\n   </widget>\n   <addaction name=\"file\"/>\n   <addaction name=\"edit\"/>\n   <addaction name=\"help\"/>\n  </widget>\n  <widget class=\"QStatusBar\" name=\"status\">\n   <property name=\"sizePolicy\">\n    <sizepolicy hsizetype=\"MinimumExpanding\" vsizetype=\"Minimum\">\n     <horstretch>0</horstretch>\n     <verstretch>0</verstretch>\n    </sizepolicy>\n   </property>\n  </widget>\n  <action name=\"exit\">\n   <property name=\"icon\">\n    <iconset theme=\"application-exit\"/>\n   </property>\n   <property name=\"text\">\n    <string>&amp;Quit</string>\n   </property>\n   <property name=\"statusTip\">\n    <string>Quit</string>\n   </property>\n   <property name=\"whatsThis\">\n    <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Exit the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n   </property>\n   <property name=\"shortcut\">\n    <string>Ctrl+Q</string>\n   </property>\n  </action>\n  <action name=\"save\">\n   <property name=\"icon\">\n    <iconset theme=\"document-save\"/>\n   </property>\n   <property name=\"text\">\n    <string>&amp;Save</string>\n   </property>\n   <property name=\"statusTip\">\n    <string>Save</string>\n   </property>\n   <property name=\"whatsThis\">\n    <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apply changes to the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n   </property>\n   <property name=\"shortcut\">\n    <string>Ctrl+S</string>\n   </property>\n  </action>\n  <action name=\"reload\">\n   <property name=\"icon\">\n    <iconset theme=\"document-revert\"/>\n   </property>\n   <property name=\"text\">\n    <string>&amp;Reload</string>\n   </property>\n   <property name=\"statusTip\">\n    <string>Reload</string>\n   </property>\n   <property name=\"whatsThis\">\n    <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reloads EFI data from the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n   </property>\n   <property name=\"shortcut\">\n    <string>Ctrl+R</string>\n   </property>\n  </action>\n  <action name=\"about\">\n   <property name=\"icon\">\n    <iconset theme=\"help-browser\"/>\n   </property>\n   <property name=\"text\">\n    <string>About &amp;EFI Boot Editor</string>\n   </property>\n   <property name=\"statusTip\">\n    <string>About EFI Boot Editor</string>\n   </property>\n   <property name=\"whatsThis\">\n    <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Show information about the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n   </property>\n  </action>\n  <action name=\"export_\">\n   <property name=\"icon\">\n    <iconset theme=\"document-save-as\"/>\n   </property>\n   <property name=\"text\">\n    <string>&amp;Export</string>\n   </property>\n   <property name=\"statusTip\">\n    <string>Export</string>\n   </property>\n   <property name=\"whatsThis\">\n    <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Export current entries into JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n   </property>\n   <property name=\"shortcut\">\n    <string>Ctrl+E</string>\n   </property>\n  </action>\n  <action name=\"import_\">\n   <property name=\"icon\">\n    <iconset theme=\"document-open\"/>\n   </property>\n   <property name=\"text\">\n    <string>&amp;Import</string>\n   </property>\n   <property name=\"statusTip\">\n    <string>Import</string>\n   </property>\n   <property name=\"whatsThis\">\n    <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Import EFI data from JSON dump.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n   </property>\n   <property name=\"shortcut\">\n    <string>Ctrl+I</string>\n   </property>\n  </action>\n  <action name=\"dump_raw_efi_data\">\n   <property name=\"icon\">\n    <iconset theme=\"document-save-as\"/>\n   </property>\n   <property name=\"text\">\n    <string>&amp;Dump raw EFI data</string>\n   </property>\n   <property name=\"statusTip\">\n    <string>Dump raw EFI data</string>\n   </property>\n   <property name=\"whatsThis\">\n    <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dumps raw EFI data for debugging purposes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n   </property>\n  </action>\n  <action name=\"undo\">\n   <property name=\"icon\">\n    <iconset theme=\"edit-undo\"/>\n   </property>\n   <property name=\"text\">\n    <string>&amp;Undo</string>\n   </property>\n   <property name=\"statusTip\">\n    <string>Undo</string>\n   </property>\n   <property name=\"whatsThis\">\n    <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n   </property>\n   <property name=\"shortcut\">\n    <string>Ctrl+Z</string>\n   </property>\n  </action>\n  <action name=\"redo\">\n   <property name=\"icon\">\n    <iconset theme=\"edit-redo\"/>\n   </property>\n   <property name=\"text\">\n    <string>&amp;Redo</string>\n   </property>\n   <property name=\"statusTip\">\n    <string>Redo</string>\n   </property>\n   <property name=\"whatsThis\">\n    <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Redo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n   </property>\n   <property name=\"shortcut\">\n    <string>Ctrl+Shift+Z</string>\n   </property>\n  </action>\n  <action name=\"hot_keys\">\n   <property name=\"icon\">\n    <iconset theme=\"emblem-symbolic-link\"/>\n   </property>\n   <property name=\"text\">\n    <string>Hot &amp;keys</string>\n   </property>\n   <property name=\"statusTip\">\n    <string>Hot Keys</string>\n   </property>\n   <property name=\"whatsThis\">\n    <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n   </property>\n  </action>\n </widget>\n <customwidgets>\n  <customwidget>\n   <class>BootEntryListView</class>\n   <extends>QListView</extends>\n   <header>bootentrylistview.h</header>\n   <slots>\n    <signal>selected(QModelIndex)</signal>\n    <slot>removeCurrentRow()</slot>\n    <slot>insertRow()</slot>\n    <slot>moveCurrentRowUp()</slot>\n    <slot>moveCurrentRowDown()</slot>\n   </slots>\n  </customwidget>\n  <customwidget>\n   <class>BootEntryForm</class>\n   <extends>QWidget</extends>\n   <header>bootentryform.h</header>\n   <container>1</container>\n   <slots>\n    <signal>showHotKeysDialog(int)</signal>\n   </slots>\n  </customwidget>\n  <customwidget>\n   <class>QResizableTabWidget</class>\n   <extends>QTabWidget</extends>\n   <header>qresizabletabwidget.h</header>\n   <container>1</container>\n  </customwidget>\n  <customwidget>\n   <class>QIndicatorWidget</class>\n   <extends>QRadioButton</extends>\n   <header>qindicatorwidget.h</header>\n  </customwidget>\n </customwidgets>\n <resources/>\n <connections>\n  <connection>\n   <sender>entry_move_up</sender>\n   <signal>clicked()</signal>\n   <receiver>EFIBootEditor</receiver>\n   <slot>moveCurrentBootEntryUp()</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>277</x>\n     <y>118</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>399</x>\n     <y>299</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>entry_move_down</sender>\n   <signal>clicked()</signal>\n   <receiver>EFIBootEditor</receiver>\n   <slot>moveCurrentBootEntryDown()</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>277</x>\n     <y>154</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>399</x>\n     <y>299</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>entry_add</sender>\n   <signal>clicked()</signal>\n   <receiver>EFIBootEditor</receiver>\n   <slot>insertBootEntry()</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>277</x>\n     <y>46</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>399</x>\n     <y>299</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>entry_remove</sender>\n   <signal>clicked()</signal>\n   <receiver>EFIBootEditor</receiver>\n   <slot>removeCurrentBootEntry()</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>277</x>\n     <y>82</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>399</x>\n     <y>299</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>reload</sender>\n   <signal>triggered()</signal>\n   <receiver>EFIBootEditor</receiver>\n   <slot>reload()</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>-1</x>\n     <y>-1</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>399</x>\n     <y>299</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>boot_entries_list</sender>\n   <signal>selected(QModelIndex)</signal>\n   <receiver>EFIBootEditor</receiver>\n   <slot>enableBootEntryEditor(QModelIndex)</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>130</x>\n     <y>299</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>399</x>\n     <y>299</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>exit</sender>\n   <signal>triggered()</signal>\n   <receiver>EFIBootEditor</receiver>\n   <slot>close()</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>-1</x>\n     <y>-1</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>399</x>\n     <y>299</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>save</sender>\n   <signal>triggered()</signal>\n   <receiver>EFIBootEditor</receiver>\n   <slot>save()</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>-1</x>\n     <y>-1</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>399</x>\n     <y>299</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>about</sender>\n   <signal>triggered()</signal>\n   <receiver>EFIBootEditor</receiver>\n   <slot>showAboutDialog()</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>-1</x>\n     <y>-1</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>399</x>\n     <y>299</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>import_</sender>\n   <signal>triggered()</signal>\n   <receiver>EFIBootEditor</receiver>\n   <slot>import_()</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>-1</x>\n     <y>-1</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>399</x>\n     <y>299</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>export_</sender>\n   <signal>triggered()</signal>\n   <receiver>EFIBootEditor</receiver>\n   <slot>export_()</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>-1</x>\n     <y>-1</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>399</x>\n     <y>299</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>dump_raw_efi_data</sender>\n   <signal>triggered()</signal>\n   <receiver>EFIBootEditor</receiver>\n   <slot>dump()</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>-1</x>\n     <y>-1</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>399</x>\n     <y>299</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>entries_reorder</sender>\n   <signal>clicked()</signal>\n   <receiver>EFIBootEditor</receiver>\n   <slot>reorder()</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>277</x>\n     <y>191</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>399</x>\n     <y>299</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>driver_entries_list</sender>\n   <signal>selected(QModelIndex)</signal>\n   <receiver>EFIBootEditor</receiver>\n   <slot>enableBootEntryEditor(QModelIndex)</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>156</x>\n     <y>246</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>399</x>\n     <y>299</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>sysprep_entries_list</sender>\n   <signal>selected(QModelIndex)</signal>\n   <receiver>EFIBootEditor</receiver>\n   <slot>enableBootEntryEditor(QModelIndex)</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>156</x>\n     <y>246</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>399</x>\n     <y>299</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>platform_recovery_entries_list</sender>\n   <signal>selected(QModelIndex)</signal>\n   <receiver>EFIBootEditor</receiver>\n   <slot>enableBootEntryEditor(QModelIndex)</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>156</x>\n     <y>246</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>399</x>\n     <y>299</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>entries</sender>\n   <signal>currentChanged(int)</signal>\n   <receiver>EFIBootEditor</receiver>\n   <slot>switchBootEntryEditor(int)</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>156</x>\n     <y>261</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>399</x>\n     <y>299</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>boot_to_firmware_ui</sender>\n   <signal>toggled(bool)</signal>\n   <receiver>EFIBootEditor</receiver>\n   <slot>setOsIndication(bool)</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>489</x>\n     <y>286</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>399</x>\n     <y>299</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>collect_current_config</sender>\n   <signal>toggled(bool)</signal>\n   <receiver>EFIBootEditor</receiver>\n   <slot>setOsIndication(bool)</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>489</x>\n     <y>316</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>399</x>\n     <y>299</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>start_os_recovery</sender>\n   <signal>toggled(bool)</signal>\n   <receiver>EFIBootEditor</receiver>\n   <slot>setOsIndication(bool)</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>657</x>\n     <y>286</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>399</x>\n     <y>299</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>start_platform_recovery</sender>\n   <signal>toggled(bool)</signal>\n   <receiver>EFIBootEditor</receiver>\n   <slot>setOsIndication(bool)</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>657</x>\n     <y>316</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>399</x>\n     <y>299</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>undo</sender>\n   <signal>triggered()</signal>\n   <receiver>EFIBootEditor</receiver>\n   <slot>undo()</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>-1</x>\n     <y>-1</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>399</x>\n     <y>299</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>redo</sender>\n   <signal>triggered()</signal>\n   <receiver>EFIBootEditor</receiver>\n   <slot>redo()</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>-1</x>\n     <y>-1</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>399</x>\n     <y>299</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>entry_duplcate</sender>\n   <signal>clicked()</signal>\n   <receiver>EFIBootEditor</receiver>\n   <slot>duplicateBootEntry()</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>329</x>\n     <y>76</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>399</x>\n     <y>299</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>hot_keys</sender>\n   <signal>triggered()</signal>\n   <receiver>EFIBootEditor</receiver>\n   <slot>showHotKeysDialog()</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>-1</x>\n     <y>-1</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>399</x>\n     <y>299</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>entry_form</sender>\n   <signal>showHotKeysDialog(int)</signal>\n   <receiver>EFIBootEditor</receiver>\n   <slot>showHotKeysDialog(int)</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>572</x>\n     <y>111</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>399</x>\n     <y>299</y>\n    </hint>\n   </hints>\n  </connection>\n </connections>\n <slots>\n  <slot>enableBootEntryEditor(QModelIndex)</slot>\n  <slot>disableBootEntryEditor()</slot>\n  <slot>showAboutDialog()</slot>\n  <slot>reload()</slot>\n  <slot>save()</slot>\n  <slot>export_()</slot>\n  <slot>import_()</slot>\n  <slot>dump()</slot>\n  <slot>reorder()</slot>\n  <slot>switchBootEntryEditor(int)</slot>\n  <slot>settingsTabChanged(int)</slot>\n  <slot>removeCurrentBootEntry()</slot>\n  <slot>moveCurrentBootEntryUp()</slot>\n  <slot>moveCurrentBootEntryDown()</slot>\n  <slot>insertBootEntry()</slot>\n  <slot>editConsoleIn()</slot>\n  <slot>editConsoleOut()</slot>\n  <slot>editErrorOut()</slot>\n  <slot>setOsIndication(bool)</slot>\n  <slot>undo()</slot>\n  <slot>redo()</slot>\n  <slot>duplicateBootEntry()</slot>\n  <slot>showHotKeysDialog(int)</slot>\n  <slot>showHotKeysDialog()</slot>\n </slots>\n</ui>\n"
  },
  {
    "path": "src/form/filepathdialog.ui",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<ui version=\"4.0\">\n <class>FilePathDialog</class>\n <widget class=\"QDialog\" name=\"FilePathDialog\">\n  <property name=\"minimumSize\">\n   <size>\n    <width>750</width>\n    <height>350</height>\n   </size>\n  </property>\n  <property name=\"windowTitle\">\n   <string>File path editor</string>\n  </property>\n  <property name=\"modal\">\n   <bool>true</bool>\n  </property>\n  <layout class=\"QHBoxLayout\" name=\"file_path_dialog_layout\" stretch=\"1,0\">\n   <property name=\"leftMargin\">\n    <number>6</number>\n   </property>\n   <property name=\"topMargin\">\n    <number>6</number>\n   </property>\n   <property name=\"rightMargin\">\n    <number>6</number>\n   </property>\n   <property name=\"bottomMargin\">\n    <number>6</number>\n   </property>\n   <item>\n    <widget class=\"QTabWidget\" name=\"options\">\n     <property name=\"tabPosition\">\n      <enum>QTabWidget::TabPosition::West</enum>\n     </property>\n     <property name=\"usesScrollButtons\">\n      <bool>true</bool>\n     </property>\n     <property name=\"documentMode\">\n      <bool>true</bool>\n     </property>\n     <!-- Hardware -->\n     <widget class=\"QWidget\" name=\"pci_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"audio-card\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>PCI</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"pci_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"pci_function_label\">\n         <property name=\"toolTip\">\n          <string>PCI Function Number.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Function</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Function Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Function</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QSpinBox\" name=\"pci_function\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>PCI Function Number.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Function</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Function Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"minimum\">\n          <number>0</number>\n         </property>\n         <property name=\"maximum\">\n          <number>7</number>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"0\">\n        <widget class=\"QLabel\" name=\"pci_device_label\">\n         <property name=\"toolTip\">\n          <string>PCI Device Number.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Device</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Device Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Device</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"1\">\n        <widget class=\"QSpinBox\" name=\"pci_device\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>PCI Device Number.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Device</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Device Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"minimum\">\n          <number>0</number>\n         </property>\n         <property name=\"maximum\">\n          <number>31</number>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"pccard_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"audio-card\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>PCCARD</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>PCCARD Settings.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCCARD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"pccard_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"pccard_function_number_label\">\n         <property name=\"toolTip\">\n          <string>Function Number (0 = First Function).</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Function</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Function Number (0 = First Function).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Function</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QSpinBox\" name=\"pccard_function_number\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>Function Number (0 = First Function).</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Function</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Function Number (0 = First Function).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"minimum\">\n          <number>0</number>\n         </property>\n         <property name=\"maximum\">\n          <number>255</number>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"memory_mapped_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"media-flash\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>Memory Mapped</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>Memory Mapped Settings.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Memory Mapped Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"memory_mapped_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"memory_mapped_memory_type_label\">\n         <property name=\"toolTip\">\n          <string>The type of memory to allocate.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Memory Type</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The type of memory to allocate.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Memory Type</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QComboBox\" name=\"memory_mapped_memory_type\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>The type of memory to allocate.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Memory Type</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The type of memory to allocate.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <item>\n          <property name=\"text\">\n           <string>Reserved</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>Loader Code</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>Loader Data</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>Boot Services Code</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>Boot Services Data</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>Runtime Services Code</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>Runtime Services Data</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>Conventional</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>Unusable</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>ACPI Reclaim</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>ACPI Memory NVS</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>Memory Mapped IO</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>Memory Mapped IO Port Space</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>Pal Code</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>Persistent</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>Unaccepted</string>\n          </property>\n         </item>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"0\">\n        <widget class=\"QLabel\" name=\"memory_mapped_start_address_label\">\n         <property name=\"toolTip\">\n          <string>Starting Memory Address.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Start Address</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Start Address</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"memory_mapped_start_address\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Starting Memory Address.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Start Address</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHHHHHHHHHHHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"0\">\n        <widget class=\"QLabel\" name=\"memory_mapped_end_address_label\">\n         <property name=\"toolTip\">\n          <string>Ending Memory Address.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>End Address</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ending Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>End Address</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"memory_mapped_end_address\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Ending Memory Address.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>End Address</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ending Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHHHHHHHHHHHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"controller_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"input-gaming\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>Controller</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>Controller settings.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"controller_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"controller_controller_number_label\">\n         <property name=\"toolTip\">\n          <string>Controller number.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Controller</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Controller</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QSpinBox\" name=\"controller_controller_number\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>Controller number.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Controller</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"minimum\">\n          <number>0</number>\n         </property>\n         <property name=\"maximum\">\n          <number>2147483647</number>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"bmc_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"audio-card\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>BMC</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>The Device Path for a Baseboard Management Controller (BMC) host interface.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for a Baseboard Management Controller (BMC) host interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"bmc_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"bmc_interface_type_label\">\n         <property name=\"toolTip\">\n          <string>The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Interface Type</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Interface Type</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QComboBox\" name=\"bmc_interface_type\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Interface Type</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <item>\n          <property name=\"text\">\n           <string>Unknown</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>Keyboard Controller Style</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>Server Management Interface Chip</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>Block Transfer</string>\n          </property>\n         </item>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"0\">\n        <widget class=\"QLabel\" name=\"bmc_base_address_label\">\n         <property name=\"toolTip\">\n          <string>Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Base Address</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Base Address</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"bmc_base_address\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Base Address</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHHHHHHHHHHHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <!-- ACPI -->\n     <widget class=\"QWidget\" name=\"acpi_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"computer\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>ACPI</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"acpi_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"acpi_hid_label\">\n         <property name=\"toolTip\">\n          <string>Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>HID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>HID</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"acpi_hid\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>HID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHHHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"0\">\n        <widget class=\"QLabel\" name=\"acpi_uid_label\">\n         <property name=\"toolTip\">\n          <string>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>UID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>UID</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"acpi_uid\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>UID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHHHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"expanded_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"computer\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>Expanded</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"expanded_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"expanded_hid_label\">\n         <property name=\"toolTip\">\n          <string>Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>HID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>HID</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"expanded_hid\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>HID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHHHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"0\">\n        <widget class=\"QLabel\" name=\"expanded_uid_label\">\n         <property name=\"toolTip\">\n          <string>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>UID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>UID</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"expanded_uid\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>UID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHHHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"0\">\n        <widget class=\"QLabel\" name=\"expanded_cid_label\">\n         <property name=\"toolTip\">\n          <string>Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>CID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>CID</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"expanded_cid\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>CID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHHHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"3\" column=\"0\">\n        <widget class=\"QLabel\" name=\"expanded_hidstr_label\">\n         <property name=\"toolTip\">\n          <string>Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>HIDSTR</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>HIDSTR</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"3\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"expanded_hidstr\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>HIDSTR</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"4\" column=\"0\">\n        <widget class=\"QLabel\" name=\"expanded_uidstr_label\">\n         <property name=\"toolTip\">\n          <string>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>UIDSTR</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>UIDSTR</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"4\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"expanded_uidstr\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>UIDSTR</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"5\" column=\"0\">\n        <widget class=\"QLabel\" name=\"expanded_cidstr_label\">\n         <property name=\"toolTip\">\n          <string>Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>CIDSTR</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>CIDSTR</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"5\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"expanded_cidstr\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>CIDSTR</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"adr_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"computer\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>ADR</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"adr_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"adr_adr_label\">\n         <property name=\"toolTip\">\n          <string>ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>ADR</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>ADR</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"adr_adr\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>ADR</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHHHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"0\">\n        <widget class=\"QLabel\" name=\"adr_additional_adr_label\">\n         <property name=\"toolTip\">\n          <string>This device path may optionally contain more than one ADR entry.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Additional ADR</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path may optionally contain more than one ADR entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Additional ADR</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"1\">\n        <widget class=\"QComboBox\" name=\"adr_additional_adr_format\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>Additional ADR format.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Additional ADR format</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Additional ADR format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <item>\n          <property name=\"text\">\n           <string>BASE64</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>UTF-16</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>UTF-8</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>HEX</string>\n          </property>\n         </item>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"1\">\n        <widget class=\"QPlainTextEdit\" name=\"adr_additional_adr\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>This device path may optionally contain more than one ADR entry.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Additional ADR</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path may optionally contain more than one ADR entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"nvdimm_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"computer\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>NVDIMM</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"nvdimm_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"nvdimm_nfit_device_handle_label\">\n         <property name=\"toolTip\">\n          <string>NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>NFIT Device Handle</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>NFIT Device Handle</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"nvdimm_nfit_device_handle\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>NFIT Device Handle</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHHHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <!-- Messaging -->\n     <widget class=\"QWidget\" name=\"atapi_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"computer\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>ATAPI</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>ATAPI Settings.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"atapi_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"atapi_primary_label\">\n         <property name=\"toolTip\">\n          <string>Set to zero for primary or one for secondary.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Primary</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for primary or one for secondary.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Primary</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QCheckBox\" name=\"atapi_primary\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>Set to zero for primary or one for secondary.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Primary</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for primary or one for secondary.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"0\">\n        <widget class=\"QLabel\" name=\"atapi_slave_label\">\n         <property name=\"toolTip\">\n          <string>Set to zero for master or one for slave mode.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Slave</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for master or one for slave mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Slave</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"1\">\n        <widget class=\"QCheckBox\" name=\"atapi_slave\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>Set to zero for master or one for slave mode.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Slave</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for master or one for slave mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"0\">\n        <widget class=\"QLabel\" name=\"atapi_lun_label\">\n         <property name=\"toolTip\">\n          <string>Logical Unit Number.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>LUN</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>LUN</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"1\">\n        <widget class=\"QSpinBox\" name=\"atapi_lun\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>Logical Unit Number.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>LUN</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"minimum\">\n          <number>0</number>\n         </property>\n         <property name=\"maximum\">\n          <number>65535</number>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"scsi_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"network-wired\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>SCSI</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>SCSI Settings.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"scsi_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"scsi_pun_label\">\n         <property name=\"toolTip\">\n          <string>Target ID on the SCSI bus (PUN).</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Target ID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the SCSI bus (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Target ID</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QSpinBox\" name=\"scsi_pun\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>Target ID on the SCSI bus (PUN).</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Target ID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the SCSI bus (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"minimum\">\n          <number>0</number>\n         </property>\n         <property name=\"maximum\">\n          <number>65535</number>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"0\">\n        <widget class=\"QLabel\" name=\"scsi_lun_label\">\n         <property name=\"toolTip\">\n          <string>Logical Unit Number (LUN).</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>LUN</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>LUN</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"1\">\n        <widget class=\"QSpinBox\" name=\"scsi_lun\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>Logical Unit Number (LUN).</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>LUN</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"minimum\">\n          <number>0</number>\n         </property>\n         <property name=\"maximum\">\n          <number>65535</number>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"fibre_channel_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"network-wired\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>Fibre Channel</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>Fibre Channel Settings</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"fibre_channel_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"fibre_channel_reserved_label\">\n         <property name=\"toolTip\">\n          <string>Reserved.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Reserved</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Reserved</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"fibre_channel_reserved\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Reserved.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Reserved</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHHHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"0\">\n        <widget class=\"QLabel\" name=\"fibre_channel_world_wide_name_label\">\n         <property name=\"toolTip\">\n          <string>Fibre Channel World Wide Name.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>World Wide Name</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel World Wide Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>World Wide Name</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"fibre_channel_world_wide_name\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Fibre Channel World Wide Name.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>World Wide Name</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel World Wide Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHHHHHHHHHHHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"0\">\n        <widget class=\"QLabel\" name=\"fibre_channel_lun_label\">\n         <property name=\"toolTip\">\n          <string>Fibre Channel Logical Unit Number.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>LUN</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>LUN</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"fibre_channel_lun\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Fibre Channel Logical Unit Number.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>LUN</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHHHHHHHHHHHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"firewire_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"network-wired\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>Firewire</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>Firewire Settings.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firewire Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"firewire_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"firewire_reserved_label\">\n         <property name=\"toolTip\">\n          <string>Reserved.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Reserved</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Reserved</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"firewire_reserved\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Reserved.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Reserved</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHHHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"0\">\n        <widget class=\"QLabel\" name=\"firewire_guid_label\">\n         <property name=\"toolTip\">\n          <string>1394 Global Unique ID (GUID)</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>GUID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 Global Unique ID (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>GUID</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"firewire_guid\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>1394 Global Unique ID (GUID)</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>GUID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 Global Unique ID (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHHHHHHHHHHHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"usb_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"drive-removable-media\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>USB</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>USB settings.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"usb_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"usb_parent_port_number_label\">\n         <property name=\"toolTip\">\n          <string>USB Parent Port Number.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Parent Port</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Parent Port Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Parent Port</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QSpinBox\" name=\"usb_parent_port_number\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>USB Parent Port Number.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Parent Port</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Parent Port Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"minimum\">\n          <number>0</number>\n         </property>\n         <property name=\"maximum\">\n          <number>255</number>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"0\">\n        <widget class=\"QLabel\" name=\"usb_interface_number_label\">\n         <property name=\"toolTip\">\n          <string>USB Interface Number.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Interface</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Interface</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"1\">\n        <widget class=\"QSpinBox\" name=\"usb_interface_number\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>USB Interface Number.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Interface</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"minimum\">\n          <number>0</number>\n         </property>\n         <property name=\"maximum\">\n          <number>255</number>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"i2o_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"computer\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>I2O</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>I2O Settings</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;I2O Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"i2o_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"i2o_tid_label\">\n         <property name=\"toolTip\">\n          <string>Target ID (TID) for a device.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Target ID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID (TID) for a device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Target ID</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QSpinBox\" name=\"i2o_tid\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>Target ID (TID) for a device.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Target ID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID (TID) for a device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"minimum\">\n          <number>0</number>\n         </property>\n         <property name=\"maximum\">\n          <number>2147483647</number>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"infiniband_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"network-wireless\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>InfiniBand</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>InfiniBand Settings.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;InfiniBand Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"infiniband_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"infiniband_resource_flags_label\">\n         <property name=\"toolTip\">\n          <string>Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Resource Flags</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Resource Flags</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"infiniband_resource_flags\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Resource Flags</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHHHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"0\">\n        <widget class=\"QLabel\" name=\"infiniband_port_gid_label\">\n         <property name=\"toolTip\">\n          <string>128-bit Global Identifier for remote fabric port</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>PORT GID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;128-bit Global Identifier for remote fabric port&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>PORT GID</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"infiniband_port_gid\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>128-bit Global Identifier for remote fabric port</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>PORT GID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;128-bit Global Identifier for remote fabric port&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;HHHHHHHH-HHHH-HHHH-HHHH-HHHHHHHHHHHH;_</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"0\">\n        <widget class=\"QLabel\" name=\"infiniband_ioc_guid_service_id_label\">\n         <property name=\"toolTip\">\n          <string>64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>IOC GUID/Service ID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>IOC GUID/Service ID</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"infiniband_ioc_guid_service_id\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>IOC GUID/Service ID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHHHHHHHHHHHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"3\" column=\"0\">\n        <widget class=\"QLabel\" name=\"infiniband_target_port_id_label\">\n         <property name=\"toolTip\">\n          <string>64-bit persistent ID of remote IOC port.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Target Port ID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote IOC port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Target Port ID</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"3\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"infiniband_target_port_id\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>64-bit persistent ID of remote IOC port.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Target Port ID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote IOC port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHHHHHHHHHHHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"4\" column=\"0\">\n        <widget class=\"QLabel\" name=\"infiniband_device_id_label\">\n         <property name=\"toolTip\">\n          <string>64-bit persistent ID of remote device.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Device ID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Device ID</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"4\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"infiniband_device_id\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>64-bit persistent ID of remote device.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Device ID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHHHHHHHHHHHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"mac_address_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"network-wired\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>MAC Address</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>MAC settings.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;MAC settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"mac_address_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"mac_address_address_label\">\n         <property name=\"toolTip\">\n          <string>The MAC address for a network interface padded with 0s.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>MAC</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The MAC address for a network interface padded with 0s.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>MAC</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"mac_address_address\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>The MAC address for a network interface padded with 0s.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>MAC</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The MAC address for a network interface padded with 0s.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;HH:HH:HH:HH:HH:HH:HH:HH:HH:HH:HH:HH:HH:HH:HH:HH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">:::::::::::::::</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"0\">\n        <widget class=\"QLabel\" name=\"mac_address_if_type_label\">\n         <property name=\"toolTip\">\n          <string>Network interface type (i.e., 802.3, FDDI). See RFC 3232.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Interface Type</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network interface type (i.e., 802.3, FDDI). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Interface Type</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"1\">\n        <widget class=\"QSpinBox\" name=\"mac_address_if_type\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>Network interface type (i.e., 802.3, FDDI). See RFC 3232.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Interface Type</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network interface type (i.e., 802.3, FDDI). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"minimum\">\n          <number>0</number>\n         </property>\n         <property name=\"maximum\">\n          <number>255</number>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"ipv4_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"network-wired\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>IPv4</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>IPv4 settings.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv4 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"ipv4_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"ipv4_local_ip_address_label\">\n         <property name=\"toolTip\">\n          <string>The local IPv4 address.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Local IP Address</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Local IP Address</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"ipv4_local_ip_address\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>The local IPv4 address.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Local IP Address</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">000.000.000.000</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0.0.0.0</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"0\">\n        <widget class=\"QLabel\" name=\"ipv4_remote_ip_address_label\">\n         <property name=\"toolTip\">\n          <string>The remote IPv4 address.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Remote IP Address</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Remote IP Address</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"ipv4_remote_ip_address\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>The remote IPv4 address.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Remote IP Address</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">000.000.000.000</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0.0.0.0</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"0\">\n        <widget class=\"QLabel\" name=\"ipv4_local_port_label\">\n         <property name=\"toolTip\">\n          <string>The local port number.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Local Port</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Local Port</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"1\">\n        <widget class=\"QSpinBox\" name=\"ipv4_local_port\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>The local port number.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Local Port</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"minimum\">\n          <number>0</number>\n         </property>\n         <property name=\"maximum\">\n          <number>65535</number>\n         </property>\n        </widget>\n       </item>\n       <item row=\"3\" column=\"0\">\n        <widget class=\"QLabel\" name=\"ipv4_remote_port_label\">\n         <property name=\"toolTip\">\n          <string>The remote port number.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Remote Port</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Remote Port</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"3\" column=\"1\">\n        <widget class=\"QSpinBox\" name=\"ipv4_remote_port\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>The remote port number.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Remote Port</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"minimum\">\n          <number>0</number>\n         </property>\n         <property name=\"maximum\">\n          <number>65535</number>\n         </property>\n        </widget>\n       </item>\n       <item row=\"4\" column=\"0\">\n        <widget class=\"QLabel\" name=\"ipv4_protocol_label\">\n         <property name=\"toolTip\">\n          <string>The network protocol (i.e., UDP, TCP). See RFC 3232.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Protocol</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The network protocol (i.e., UDP, TCP). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Protocol</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"4\" column=\"1\">\n        <widget class=\"QSpinBox\" name=\"ipv4_protocol\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>The network protocol (i.e., UDP, TCP). See RFC 3232.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Protocol</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The network protocol (i.e., UDP, TCP). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"minimum\">\n          <number>0</number>\n         </property>\n         <property name=\"maximum\">\n          <number>65535</number>\n         </property>\n        </widget>\n       </item>\n       <item row=\"5\" column=\"0\">\n        <widget class=\"QLabel\" name=\"ipv4_static_ip_address_label\">\n         <property name=\"toolTip\">\n          <string>0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Static IP Address</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Static IP Address</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"5\" column=\"1\">\n        <widget class=\"QCheckBox\" name=\"ipv4_static_ip_address\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Static IP Address</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"6\" column=\"0\">\n        <widget class=\"QLabel\" name=\"ipv4_gateway_ip_address_label\">\n         <property name=\"toolTip\">\n          <string>The Gateway IP Address.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Gateway IP Address</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Gateway IP Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Gateway IP Address</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"6\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"ipv4_gateway_ip_address\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>The Gateway IP Address.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Gateway IP Address</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Gateway IP Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">000.000.000.000</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0.0.0.0</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"7\" column=\"0\">\n        <widget class=\"QLabel\" name=\"ipv4_subnet_mask_label\">\n         <property name=\"toolTip\">\n          <string>Subnet mask.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Subnet Mask</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Subnet mask.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Subnet Mask</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"7\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"ipv4_subnet_mask\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Subnet mask.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Subnet Mask</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Subnet mask.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">000.000.000.000</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0.0.0.0</string>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"ipv6_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"network-wired\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>IPv6</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>IPv6 settings.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv6 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"ipv6_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"ipv6_local_ip_address_label\">\n         <property name=\"toolTip\">\n          <string>The local IPv6 address.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Local IP Address</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Local IP Address</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"ipv6_local_ip_address\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>The local IPv6 address.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Local IP Address</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;HHHH:HHHH:HHHH:HHHH:HHHH:HHHH:HHHH:HHHH</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">:::::::</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"0\">\n        <widget class=\"QLabel\" name=\"ipv6_remote_ip_address_label\">\n         <property name=\"toolTip\">\n          <string>The remote IPv6 address.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Remote IP Address</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Remote IP Address</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"ipv6_remote_ip_address\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>The remote IPv6 address.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Remote IP Address</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;HHHH:HHHH:HHHH:HHHH:HHHH:HHHH:HHHH:HHHH</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">:::::::</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"0\">\n        <widget class=\"QLabel\" name=\"ipv6_local_port_label\">\n         <property name=\"toolTip\">\n          <string>The local port number.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Local Port</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Local Port</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"1\">\n        <widget class=\"QSpinBox\" name=\"ipv6_local_port\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>The local port number.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Local Port</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"minimum\">\n          <number>0</number>\n         </property>\n         <property name=\"maximum\">\n          <number>65535</number>\n         </property>\n        </widget>\n       </item>\n       <item row=\"3\" column=\"0\">\n        <widget class=\"QLabel\" name=\"ipv6_remote_port_label\">\n         <property name=\"toolTip\">\n          <string>The remote port number.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Remote Port</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Remote Port</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"3\" column=\"1\">\n        <widget class=\"QSpinBox\" name=\"ipv6_remote_port\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>The remote port number.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Remote Port</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"minimum\">\n          <number>0</number>\n         </property>\n         <property name=\"maximum\">\n          <number>65535</number>\n         </property>\n        </widget>\n       </item>\n       <item row=\"4\" column=\"0\">\n        <widget class=\"QLabel\" name=\"ipv6_protocol_label\">\n         <property name=\"toolTip\">\n          <string>The network protocol (i.e., UDP, TCP). See RFC 3232.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Protocol</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The network protocol (i.e., UDP, TCP). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Protocol</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"4\" column=\"1\">\n        <widget class=\"QSpinBox\" name=\"ipv6_protocol\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>The network protocol (i.e., UDP, TCP). See RFC 3232.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Protocol</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The network protocol (i.e., UDP, TCP). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"minimum\">\n          <number>0</number>\n         </property>\n         <property name=\"maximum\">\n          <number>65535</number>\n         </property>\n        </widget>\n       </item>\n       <item row=\"5\" column=\"0\">\n        <widget class=\"QLabel\" name=\"ipv6_ip_address_origin_label\">\n         <property name=\"toolTip\">\n          <string>0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>IP Address Origin</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>IP Address Origin</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"5\" column=\"1\">\n        <widget class=\"QComboBox\" name=\"ipv6_ip_address_origin\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>IP Address Origin</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <item>\n          <property name=\"text\">\n           <string>Static</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>Stateless auto-configuration</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>Stateful auto-configuration</string>\n          </property>\n         </item>\n        </widget>\n       </item>\n       <item row=\"6\" column=\"0\">\n        <widget class=\"QLabel\" name=\"ipv6_prefix_length_label\">\n         <property name=\"toolTip\">\n          <string>The Prefix Length.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Prefix Length</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Prefix Length.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Prefix Length</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"6\" column=\"1\">\n        <widget class=\"QSpinBox\" name=\"ipv6_prefix_length\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>The Prefix Length.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Prefix Length</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Prefix Length.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"minimum\">\n          <number>0</number>\n         </property>\n         <property name=\"maximum\">\n          <number>128</number>\n         </property>\n        </widget>\n       </item>\n       <item row=\"7\" column=\"0\">\n        <widget class=\"QLabel\" name=\"ipv6_gateway_ip_address_label\">\n         <property name=\"toolTip\">\n          <string>The Gateway IP Address.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Gateway IP Address</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Gateway IP Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Gateway IP Address</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"7\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"ipv6_gateway_ip_address\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>The Gateway IP Address.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Gateway IP Address</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Gateway IP Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;HHHH:HHHH:HHHH:HHHH:HHHH:HHHH:HHHH:HHHH</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">:::::::</string>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"uart_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"audio-card\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>UART</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>UART Settings.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"uart_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"uart_reserved_label\">\n         <property name=\"toolTip\">\n          <string>Reserved.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Reserved</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Reserved</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"uart_reserved\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Reserved.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Reserved</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHHHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"0\">\n        <widget class=\"QLabel\" name=\"uart_baud_rate_label\">\n         <property name=\"toolTip\">\n          <string>The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Baud Rate</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Baud Rate</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"uart_baud_rate\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Baud Rate</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHHHHHHHHHHHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"0\">\n        <widget class=\"QLabel\" name=\"uart_data_bits_label\">\n         <property name=\"toolTip\">\n          <string>The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Data Bits</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Data Bits</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"1\">\n        <widget class=\"QSpinBox\" name=\"uart_data_bits\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Data Bits</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"minimum\">\n          <number>0</number>\n         </property>\n         <property name=\"maximum\">\n          <number>255</number>\n         </property>\n        </widget>\n       </item>\n       <item row=\"3\" column=\"0\">\n        <widget class=\"QLabel\" name=\"uart_parity_label\">\n         <property name=\"toolTip\">\n          <string>The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Parity</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Parity</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"3\" column=\"1\">\n        <widget class=\"QComboBox\" name=\"uart_parity\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Parity</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <item>\n          <property name=\"text\">\n           <string>Default</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>No</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>Even</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>Odd</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>Mark</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>Space</string>\n          </property>\n         </item>\n        </widget>\n       </item>\n       <item row=\"4\" column=\"0\">\n        <widget class=\"QLabel\" name=\"uart_stop_bits_label\">\n         <property name=\"toolTip\">\n          <string>The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Stop Bits</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Stop Bits</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"4\" column=\"1\">\n        <widget class=\"QComboBox\" name=\"uart_stop_bits\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Stop Bits</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <item>\n          <property name=\"text\">\n           <string>Default</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>1</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>1.5</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>2</string>\n          </property>\n         </item>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"usb_class_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"drive-removable-media\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>USB Class</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>USB Class Settings.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Class Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"usb_class_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"usb_class_vendor_id_label\">\n         <property name=\"toolTip\">\n          <string>Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Vendor ID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Vendor ID</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"usb_class_vendor_id\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Vendor ID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"0\">\n        <widget class=\"QLabel\" name=\"usb_class_product_id_label\">\n         <property name=\"toolTip\">\n          <string>Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Product ID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Product ID</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"usb_class_product_id\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Product ID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"0\">\n        <widget class=\"QLabel\" name=\"usb_class_device_class_label\">\n         <property name=\"toolTip\">\n          <string>The class code assigned by the USB-IF. A value of 0xFF will match any class code.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Device Class</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The class code assigned by the USB-IF. A value of 0xFF will match any class code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Device Class</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"usb_class_device_class\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>The class code assigned by the USB-IF. A value of 0xFF will match any class code.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Device Class</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The class code assigned by the USB-IF. A value of 0xFF will match any class code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"3\" column=\"0\">\n        <widget class=\"QLabel\" name=\"usb_class_device_subclass_label\">\n         <property name=\"toolTip\">\n          <string>The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Device Subclass</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Device Subclass</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"3\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"usb_class_device_subclass\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Device Subclass</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"4\" column=\"0\">\n        <widget class=\"QLabel\" name=\"usb_class_device_protocol_label\">\n         <property name=\"toolTip\">\n          <string>The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Device Protocol</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Device Protocol</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"4\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"usb_class_device_protocol\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Device Protocol</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"usb_wwid_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"drive-removable-media\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>USB WWID</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>This device path describes a USB device using its serial number.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a USB device using its serial number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"usb_wwid_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"usb_wwid_interface_number_label\">\n         <property name=\"toolTip\">\n          <string>USB interface Number.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Interface</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Interface</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QSpinBox\" name=\"usb_wwid_interface_number\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>USB interface Number.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Interface</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"minimum\">\n          <number>0</number>\n         </property>\n         <property name=\"maximum\">\n          <number>65535</number>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"0\">\n        <widget class=\"QLabel\" name=\"usb_wwid_device_vendor_id_label\">\n         <property name=\"toolTip\">\n          <string>USB vendor id of the device.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Device Vendor Id</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB vendor id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Device Vendor Id</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"usb_wwid_device_vendor_id\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>USB vendor id of the device.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Device Vendor Id</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB vendor id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"0\">\n        <widget class=\"QLabel\" name=\"usb_wwid_device_product_id_label\">\n         <property name=\"toolTip\">\n          <string>USB product id of the device.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Device Product Id</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB product id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Device Product Id</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"usb_wwid_device_product_id\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>USB product id of the device.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Device Product Id</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB product id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"3\" column=\"0\">\n        <widget class=\"QLabel\" name=\"usb_wwid_serial_number_label\">\n         <property name=\"toolTip\">\n          <string>Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Serial Number</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Serial Number</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"3\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"usb_wwid_serial_number\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Serial Number</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"device_logical_unit_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"computer\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>Device Logical Unit</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>Device Logical Unit Settings.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device Logical Unit Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"device_logical_unit_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"device_logical_unit_lun_label\">\n         <property name=\"toolTip\">\n          <string>Logical Unit Number for the interface.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>LUN</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number for the interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>LUN</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QSpinBox\" name=\"device_logical_unit_lun\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>Logical Unit Number for the interface.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>LUN</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number for the interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"minimum\">\n          <number>0</number>\n         </property>\n         <property name=\"maximum\">\n          <number>255</number>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"sata_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"drive-harddisk\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>SATA</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>SATA settings.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SATA settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"sata_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"sata_hba_port_number_label\">\n         <property name=\"toolTip\">\n          <string>The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>HBA Port</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>HBA Port</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QSpinBox\" name=\"sata_hba_port_number\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>HBA Port</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"minimum\">\n          <number>0</number>\n         </property>\n         <property name=\"maximum\">\n          <number>65534</number>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"0\">\n        <widget class=\"QLabel\" name=\"sata_port_multiplier_port_number_label\">\n         <property name=\"toolTip\">\n          <string>The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Port Multiplier Port</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Port Multiplier Port</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"1\">\n        <widget class=\"QSpinBox\" name=\"sata_port_multiplier_port_number\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Port Multiplier Port</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"minimum\">\n          <number>0</number>\n         </property>\n         <property name=\"maximum\">\n          <number>65535</number>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"0\">\n        <widget class=\"QLabel\" name=\"sata_lun_label\">\n         <property name=\"toolTip\">\n          <string>Logical Unit Number.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>LUN</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>LUN</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"1\">\n        <widget class=\"QSpinBox\" name=\"sata_lun\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>Logical Unit Number.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>LUN</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"minimum\">\n          <number>0</number>\n         </property>\n         <property name=\"maximum\">\n          <number>65535</number>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"iscsi_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"computer\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>iSCSI</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>iSCSI Settings.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"iscsi_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"iscsi_protocol_label\">\n         <property name=\"toolTip\">\n          <string>Network Protocol (0 = TCP, 1+ = reserved).</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Protocol</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network Protocol (0 = TCP, 1+ = reserved).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Protocol</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QSpinBox\" name=\"iscsi_protocol\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>Network Protocol (0 = TCP, 1+ = reserved).</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Protocol</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network Protocol (0 = TCP, 1+ = reserved).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"minimum\">\n          <number>0</number>\n         </property>\n         <property name=\"maximum\">\n          <number>65535</number>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"0\">\n        <widget class=\"QLabel\" name=\"iscsi_options_label\">\n         <property name=\"toolTip\">\n          <string>iSCSI Login Options.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Options</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Login Options.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Options</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"iscsi_options\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>iSCSI Login Options.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Options</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Login Options.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"0\">\n        <widget class=\"QLabel\" name=\"iscsi_lun_label\">\n         <property name=\"toolTip\">\n          <string>8 byte array containing the iSCSI Logical Unit Number.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>LUN</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing the iSCSI Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>LUN</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"iscsi_lun\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>8 byte array containing the iSCSI Logical Unit Number.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>LUN</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing the iSCSI Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHHHHHHHHHHHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"3\" column=\"0\">\n        <widget class=\"QLabel\" name=\"iscsi_target_portal_group_label\">\n         <property name=\"toolTip\">\n          <string>iSCSI Target Portal group tag the initiator intends to establish a session with.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Target Portal Group</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Target Portal group tag the initiator intends to establish a session with.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Target Portal Group</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"3\" column=\"1\">\n        <widget class=\"QSpinBox\" name=\"iscsi_target_portal_group\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>iSCSI Target Portal group tag the initiator intends to establish a session with.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Target Portal Group</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Target Portal group tag the initiator intends to establish a session with.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"minimum\">\n          <number>0</number>\n         </property>\n         <property name=\"maximum\">\n          <number>65535</number>\n         </property>\n        </widget>\n       </item>\n       <item row=\"4\" column=\"0\">\n        <widget class=\"QLabel\" name=\"iscsi_target_name_label\">\n         <property name=\"toolTip\">\n          <string>iSCSI NodeTarget Name.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Target Name</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI NodeTarget Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Target Name</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"4\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"iscsi_target_name\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>iSCSI NodeTarget Name.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Target Name</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI NodeTarget Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"vlan_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"network-wired\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>VLAN</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>VLAN Settings.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"vlan_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"vlan_vlan_id_label\">\n         <property name=\"toolTip\">\n          <string>VLAN identifier (0-4094).</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Vlan ID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN identifier (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Vlan ID</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QSpinBox\" name=\"vlan_vlan_id\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>VLAN identifier (0-4094).</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Vlan ID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN identifier (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"minimum\">\n          <number>0</number>\n         </property>\n         <property name=\"maximum\">\n          <number>4094</number>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"fibre_channel_ex_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"network-wired\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>Fibre Channel Ex</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"fibre_channel_ex_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"fibre_channel_ex_reserved_label\">\n         <property name=\"toolTip\">\n          <string>Reserved.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Reserved</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Reserved</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"fibre_channel_ex_reserved\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Reserved.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Reserved</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHHHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"0\">\n        <widget class=\"QLabel\" name=\"fibre_channel_ex_world_wide_name_label\">\n         <property name=\"toolTip\">\n          <string>8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>World Wide Name</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>World Wide Name</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"fibre_channel_ex_world_wide_name\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>World Wide Name</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHHHHHHHHHHHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"0\">\n        <widget class=\"QLabel\" name=\"fibre_channel_ex_lun_label\">\n         <property name=\"toolTip\">\n          <string>8 byte array containing Fibre Channel Logical Unit Number.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>LUN</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>LUN</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"fibre_channel_ex_lun\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>8 byte array containing Fibre Channel Logical Unit Number.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>LUN</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHHHHHHHHHHHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"sas_extended_messaging_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"drive-harddisk\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>SAS Extended Messaging</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"sas_extended_messaging_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"sas_extended_messaging_sas_address_label\">\n         <property name=\"toolTip\">\n          <string>8-byte array of the SAS Address for Serial Attached SCSI Target Port.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>SAS Address</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Address for Serial Attached SCSI Target Port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>SAS Address</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"sas_extended_messaging_sas_address\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>8-byte array of the SAS Address for Serial Attached SCSI Target Port.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>SAS Address</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Address for Serial Attached SCSI Target Port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHHHHHHHHHHHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"0\">\n        <widget class=\"QLabel\" name=\"sas_extended_messaging_lun_label\">\n         <property name=\"toolTip\">\n          <string>8-byte array of the SAS Logical Unit Number.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>LUN</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>LUN</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"sas_extended_messaging_lun\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>8-byte array of the SAS Logical Unit Number.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>LUN</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHHHHHHHHHHHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"0\">\n        <widget class=\"QLabel\" name=\"sas_extended_messaging_device_and_topology_info_label\">\n         <property name=\"toolTip\">\n          <string>More Information about the device and its interconnect.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Device and Topology Info</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;More Information about the device and its interconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Device and Topology Info</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"sas_extended_messaging_device_and_topology_info\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>More Information about the device and its interconnect.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Device and Topology Info</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;More Information about the device and its interconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"3\" column=\"0\">\n        <widget class=\"QLabel\" name=\"sas_extended_messaging_relative_target_port_label\">\n         <property name=\"toolTip\">\n          <string>Relative Target Port (RTP).</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Relative Target Port</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Relative Target Port (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Relative Target Port</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"3\" column=\"1\">\n        <widget class=\"QSpinBox\" name=\"sas_extended_messaging_relative_target_port\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>Relative Target Port (RTP).</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Relative Target Port</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Relative Target Port (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"minimum\">\n          <number>0</number>\n         </property>\n         <property name=\"maximum\">\n          <number>65535</number>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"nvm_express_ns_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"drive-harddisk\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>NVM Express NS</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>NVM Express Namespace Settings.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM Express Namespace Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"nvm_express_ns_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"nvm_express_ns_namespace_identifier_label\">\n         <property name=\"toolTip\">\n          <string>Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>NSID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>NSID</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"nvm_express_ns_namespace_identifier\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>NSID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHHHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"0\">\n        <widget class=\"QLabel\" name=\"nvm_express_ns_ieee_extended_unique_identifier_label\">\n         <property name=\"toolTip\">\n          <string>This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>EUI-64</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>EUI-64</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"nvm_express_ns_ieee_extended_unique_identifier\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>EUI-64</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHHHHHHHHHHHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"uri_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"text-html\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>URI</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>Refer to RFC 3986 for details on the URI contents.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Refer to RFC 3986 for details on the URI contents.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"uri_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"uri_uri_label\">\n         <property name=\"toolTip\">\n          <string>Instance of the URI pursuant to RFC 3986.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>URI</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Instance of the URI pursuant to RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>URI</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"uri_uri\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>Instance of the URI pursuant to RFC 3986.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>URI</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Instance of the URI pursuant to RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"ufs_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"drive-removable-media\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>UFS</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>UFS Settings.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"ufs_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"ufs_pun_label\">\n         <property name=\"toolTip\">\n          <string>Target ID on the UFS interface (PUN).</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Target ID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the UFS interface (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Target ID</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"ufs_pun\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Target ID on the UFS interface (PUN).</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Target ID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the UFS interface (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"0\">\n        <widget class=\"QLabel\" name=\"ufs_lun_label\">\n         <property name=\"toolTip\">\n          <string>Logical Unit Number (LUN).</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>LUN</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>LUN</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"ufs_lun\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Logical Unit Number (LUN).</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>LUN</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"sd_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"media-flash\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>SD</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>SD Settings.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"sd_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"sd_slot_number_label\">\n         <property name=\"toolTip\">\n          <string>Slot Number</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Slot</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Slot Number&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Slot</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QSpinBox\" name=\"sd_slot_number\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>Slot Number</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Slot</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Slot Number&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"minimum\">\n          <number>0</number>\n         </property>\n         <property name=\"maximum\">\n          <number>255</number>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"bluetooth_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"network-wireless\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>Bluetooth</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>EFI Bluetooth Settings.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI Bluetooth Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"bluetooth_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"bluetooth_device_address_label\">\n         <property name=\"toolTip\">\n          <string>48-bit Bluetooth device address.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Device Address</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-bit Bluetooth device address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Device Address</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"bluetooth_device_address\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>48-bit Bluetooth device address.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Device Address</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-bit Bluetooth device address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;HH:HH:HH:HH:HH:HH:HH:HH:HH:HH:HH:HH:HH:HH:HH:HH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">:::::::::::::::</string>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"wi_fi_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"network-wireless\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>Wi-Fi</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>Wi-Fi Settings.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wi-Fi Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"wi_fi_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"wi_fi_ssid_label\">\n         <property name=\"toolTip\">\n          <string>SSID in octet string.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>SSID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID in octet string.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>SSID</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"wi_fi_ssid\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>SSID in octet string.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>SSID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID in octet string.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"emmc_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"media-flash\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>eMMC</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>Embedded Multi-Media Card Settings.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Embedded Multi-Media Card Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"emmc_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"emmc_slot_number_label\">\n         <property name=\"toolTip\">\n          <string>Slot Number</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Slot</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Slot Number&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Slot</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QSpinBox\" name=\"emmc_slot_number\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>Slot Number</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Slot</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Slot Number&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"minimum\">\n          <number>0</number>\n         </property>\n         <property name=\"maximum\">\n          <number>255</number>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"bluetoothle_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"network-wireless\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>BluetoothLE</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>EFI BluetoothLE Settings.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI BluetoothLE Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"bluetoothle_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"bluetoothle_device_address_label\">\n         <property name=\"toolTip\">\n          <string>48-bit Bluetooth device address.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Device Address</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-bit Bluetooth device address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Device Address</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"bluetoothle_device_address\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>48-bit Bluetooth device address.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Device Address</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-bit Bluetooth device address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;HH:HH:HH:HH:HH:HH:HH:HH:HH:HH:HH:HH:HH:HH:HH:HH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">:::::::::::::::</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"0\">\n        <widget class=\"QLabel\" name=\"bluetoothle_address_type_label\">\n         <property name=\"toolTip\">\n          <string>0x00 - Public Device Address.\n0x01 - Random Device Address.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Address Type</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Public Device Address.\n0x01 - Random Device Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Address Type</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"1\">\n        <widget class=\"QComboBox\" name=\"bluetoothle_address_type\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>0x00 - Public Device Address.\n0x01 - Random Device Address.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Address Type</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Public Device Address.\n0x01 - Random Device Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <item>\n          <property name=\"text\">\n           <string>Public</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>Random</string>\n          </property>\n         </item>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"dns_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"network-wired\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>DNS</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>DNS Settings.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DNS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"dns_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"dns_ipv6_label\">\n         <property name=\"toolTip\">\n          <string>0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>IPv6</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>IPv6</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QCheckBox\" name=\"dns_ipv6\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>IPv6</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"0\">\n        <widget class=\"QLabel\" name=\"dns_data_label\">\n         <property name=\"toolTip\">\n          <string>One or more instances of the DNS server address in EFI_IP_ADDRESS.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Data</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;One or more instances of the DNS server address in EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Data</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"1\">\n        <widget class=\"QComboBox\" name=\"dns_data_format\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>Data format.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Data format</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <item>\n          <property name=\"text\">\n           <string>BASE64</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>UTF-16</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>UTF-8</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>HEX</string>\n          </property>\n         </item>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"1\">\n        <widget class=\"QPlainTextEdit\" name=\"dns_data\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>One or more instances of the DNS server address in EFI_IP_ADDRESS.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Data</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;One or more instances of the DNS server address in EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"nvdimm_ns_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"drive-harddisk\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>NVDIMM NS</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>This device path describes a bootable NVDIMM namespace that is defined by a namespace label.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVDIMM namespace that is defined by a namespace label.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"nvdimm_ns_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"nvdimm_ns_uuid_label\">\n         <property name=\"toolTip\">\n          <string>Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>UUID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>UUID</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"nvdimm_ns_uuid\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>UUID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;HHHHHHHH-HHHH-HHHH-HHHH-HHHHHHHHHHHH;_</string>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"rest_service_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"network-wired\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>REST Service</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>REST Service Settings.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;REST Service Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"rest_service_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"rest_service_rest_service_label\">\n         <property name=\"toolTip\">\n          <string>0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>REST Service</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>REST Service</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QComboBox\" name=\"rest_service_rest_service\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>REST Service</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <item>\n          <property name=\"text\">\n           <string>Redfish</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>OData</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>Vendor specific</string>\n          </property>\n         </item>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"0\">\n        <widget class=\"QLabel\" name=\"rest_service_access_mode_label\">\n         <property name=\"toolTip\">\n          <string>0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Access Mode</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Access Mode</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"1\">\n        <widget class=\"QComboBox\" name=\"rest_service_access_mode\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Access Mode</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <item>\n          <property name=\"text\">\n           <string>In-Band</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>Out-of-band</string>\n          </property>\n         </item>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"0\">\n        <widget class=\"QLabel\" name=\"rest_service_guid_label\">\n         <property name=\"toolTip\">\n          <string>GUID of vendor specific REST service.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>GUID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID of vendor specific REST service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>GUID</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"rest_service_guid\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>GUID of vendor specific REST service.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>GUID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID of vendor specific REST service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;HHHHHHHH-HHHH-HHHH-HHHH-HHHHHHHHHHHH;_</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"3\" column=\"0\">\n        <widget class=\"QLabel\" name=\"rest_service_data_label\">\n         <property name=\"toolTip\">\n          <string>Vendor-defined data.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Data</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Data</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"3\" column=\"1\">\n        <widget class=\"QComboBox\" name=\"rest_service_data_format\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>Data format.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Data format</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <item>\n          <property name=\"text\">\n           <string>BASE64</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>UTF-16</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>UTF-8</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>HEX</string>\n          </property>\n         </item>\n        </widget>\n       </item>\n       <item row=\"4\" column=\"1\">\n        <widget class=\"QPlainTextEdit\" name=\"rest_service_data\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>Vendor-defined data.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Data</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"nvme_of_ns_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"network-wired\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>NVMe-oF NS</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"nvme_of_ns_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"nvme_of_ns_nidt_label\">\n         <property name=\"toolTip\">\n          <string>Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>NIDT</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>NIDT</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QSpinBox\" name=\"nvme_of_ns_nidt\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>NIDT</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"minimum\">\n          <number>0</number>\n         </property>\n         <property name=\"maximum\">\n          <number>255</number>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"0\">\n        <widget class=\"QLabel\" name=\"nvme_of_ns_nid_label\">\n         <property name=\"toolTip\">\n          <string>Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>NID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>NID</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"nvme_of_ns_nid\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>NID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;HHHHHHHH-HHHH-HHHH-HHHH-HHHHHHHHHHHH;_</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"0\">\n        <widget class=\"QLabel\" name=\"nvme_of_ns_subsystem_nqn_label\">\n         <property name=\"toolTip\">\n          <string>Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Subsystem NQN</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Subsystem NQN</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"nvme_of_ns_subsystem_nqn\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Subsystem NQN</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"maxLength\">\n          <number>224</number>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <!-- Media -->\n     <widget class=\"QWidget\" name=\"hd_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"drive-harddisk\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>Hard Drive</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>The Hard Drive Media Device Path is used to represent a partition on a hard drive.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Hard Drive Media Device Path is used to represent a partition on a hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"hd_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"hd_disk_label\">\n         <property name=\"toolTip\">\n          <string>Disk</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Disk</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Disk</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <layout class=\"QHBoxLayout\" name=\"layout_disk\" stretch=\"1,0\">\n         <property name=\"spacing\">\n          <number>0</number>\n         </property>\n         <item>\n          <widget class=\"QComboBox\" name=\"hd_disk\">\n           <property name=\"sizePolicy\">\n            <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Preferred\">\n             <horstretch>0</horstretch>\n             <verstretch>0</verstretch>\n            </sizepolicy>\n           </property>\n           <property name=\"toolTip\">\n            <string>Choose disk</string>\n           </property>\n           <property name=\"statusTip\">\n            <string>Choose disk</string>\n           </property>\n           <property name=\"whatsThis\">\n            <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Choose disk from discovered in the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n           </property>\n           <item>\n            <property name=\"text\">\n             <string>Custom</string>\n            </property>\n           </item>\n          </widget>\n         </item>\n         <item>\n          <widget class=\"QPushButton\" name=\"hd_disk_refresh\">\n           <property name=\"sizePolicy\">\n            <sizepolicy hsizetype=\"Minimum\" vsizetype=\"Minimum\">\n             <horstretch>0</horstretch>\n             <verstretch>0</verstretch>\n            </sizepolicy>\n           </property>\n           <property name=\"toolTip\">\n            <string>Reload drives</string>\n           </property>\n           <property name=\"statusTip\">\n            <string>Reload drives</string>\n           </property>\n           <property name=\"whatsThis\">\n            <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reload system drives list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n           </property>\n           <property name=\"text\">\n            <string/>\n           </property>\n           <property name=\"icon\">\n            <iconset theme=\"view-refresh\"/>\n           </property>\n           <property name=\"iconSize\">\n            <size>\n             <width>12</width>\n             <height>12</height>\n            </size>\n           </property>\n          </widget>\n         </item>\n        </layout>\n       </item>\n       <item row=\"1\" column=\"0\">\n        <widget class=\"QLabel\" name=\"hd_partition_number_label\">\n         <property name=\"toolTip\">\n          <string>Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Partition</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Partition</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"1\">\n        <widget class=\"QSpinBox\" name=\"hd_partition_number\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Partition</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"minimum\">\n          <number>1</number>\n         </property>\n         <property name=\"maximum\">\n          <number>128</number>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"0\">\n        <widget class=\"QLabel\" name=\"hd_partition_start_label\">\n         <property name=\"toolTip\">\n          <string>Starting LBA of the partition on the hard drive.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Partition Start</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting LBA of the partition on the hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Partition Start</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"hd_partition_start\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Starting LBA of the partition on the hard drive.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Partition Start</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting LBA of the partition on the hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHHHHHHHHHHHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"3\" column=\"0\">\n        <widget class=\"QLabel\" name=\"hd_partition_size_label\">\n         <property name=\"toolTip\">\n          <string>Size of the partition in units of Logical Blocks.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Partition Size</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Logical Blocks.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Partition Size</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"3\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"hd_partition_size\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Size of the partition in units of Logical Blocks.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Partition Size</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Logical Blocks.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHHHHHHHHHHHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"4\" column=\"0\">\n        <widget class=\"QLabel\" name=\"hd_partition_signature_label\">\n         <property name=\"toolTip\">\n          <string>Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Partition Signature</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Partition Signature</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"4\" column=\"1\">\n        <layout class=\"QHBoxLayout\" name=\"layout_signature\" stretch=\"0,1\">\n         <property name=\"spacing\">\n          <number>0</number>\n         </property>\n         <item>\n          <widget class=\"QComboBox\" name=\"hd_signature_type\">\n           <property name=\"toolTip\">\n            <string>PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.</string>\n           </property>\n           <property name=\"statusTip\">\n            <string>Signature Type</string>\n           </property>\n           <property name=\"whatsThis\">\n            <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n           </property>\n           <item>\n            <property name=\"text\">\n             <string>None</string>\n            </property>\n           </item>\n           <item>\n            <property name=\"text\">\n             <string>MBR</string>\n            </property>\n           </item>\n           <item>\n            <property name=\"text\">\n             <string>GUID</string>\n            </property>\n           </item>\n          </widget>\n         </item>\n         <item>\n          <widget class=\"QLineEdit\" name=\"hd_partition_signature\">\n           <property name=\"font\">\n            <font>\n             <family>Monospace</family>\n            </font>\n           </property>\n           <property name=\"toolTip\">\n            <string>Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.</string>\n           </property>\n           <property name=\"statusTip\">\n            <string>Partition Signature</string>\n           </property>\n           <property name=\"whatsThis\">\n            <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n           </property>\n           <property name=\"inputMask\">\n            <string notr=\"true\">&lt;HHHHHHHH-HHHH-HHHH-HHHH-HHHHHHHHHHHH;_</string>\n           </property>\n           <property name=\"text\">\n            <string notr=\"true\">----</string>\n           </property>\n          </widget>\n         </item>\n        </layout>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"cd_rom_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"drive-optical\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>CD-ROM</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"cd_rom_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"cd_rom_boot_entry_label\">\n         <property name=\"toolTip\">\n          <string>Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Boot Entry</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Boot Entry</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QSpinBox\" name=\"cd_rom_boot_entry\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Boot Entry</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"minimum\">\n          <number>0</number>\n         </property>\n         <property name=\"maximum\">\n          <number>2147483647</number>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"0\">\n        <widget class=\"QLabel\" name=\"cd_rom_partition_start_label\">\n         <property name=\"toolTip\">\n          <string>Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Partition Start</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Partition Start</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"cd_rom_partition_start\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Partition Start</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHHHHHHHHHHHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"0\">\n        <widget class=\"QLabel\" name=\"cd_rom_partition_size_label\">\n         <property name=\"toolTip\">\n          <string>Size of the partition in units of Blocks, also called Sectors.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Partition Size</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Blocks, also called Sectors.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Partition Size</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"cd_rom_partition_size\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Size of the partition in units of Blocks, also called Sectors.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Partition Size</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Blocks, also called Sectors.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHHHHHHHHHHHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"file_path_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"document-properties\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>File Path</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>File Path settings.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File Path settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"file_path_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"file_path_path_name_label\">\n         <property name=\"toolTip\">\n          <string>Path including directory and file names.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Path Name</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Path including directory and file names.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Path Name</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"file_path_path_name\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>Path including directory and file names.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Path Name</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Path including directory and file names.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"protocol_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"media-floppy\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>Protocol</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"protocol_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"protocol_guid_label\">\n         <property name=\"toolTip\">\n          <string>The ID of the protocol.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>GUID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ID of the protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>GUID</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"protocol_guid\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>The ID of the protocol.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>GUID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ID of the protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;HHHHHHHH-HHHH-HHHH-HHHH-HHHHHHHHHHHH;_</string>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"firmware_file_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"document-properties\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>Firmware File</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>Describes a firmware file in a firmware volume.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware file in a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"firmware_file_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"firmware_file_name_label\">\n         <property name=\"toolTip\">\n          <string>Firmware file name GUID.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Name</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware file name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Name</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"firmware_file_name\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Firmware file name GUID.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Name</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware file name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;HHHHHHHH-HHHH-HHHH-HHHH-HHHHHHHHHHHH;_</string>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"firmware_volume_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"document-properties\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>Firmware Volume</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>Describes a firmware volume.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"firmware_volume_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"firmware_volume_name_label\">\n         <property name=\"toolTip\">\n          <string>Firmware volume name GUID.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Name</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware volume name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Name</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"firmware_volume_name\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Firmware volume name GUID.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Name</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware volume name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;HHHHHHHH-HHHH-HHHH-HHHH-HHHHHHHHHHHH;_</string>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"relative_offset_range_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"computer\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>Relative Offset Range</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>This device path node specifies a range of offsets relative to the first byte available on the device.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path node specifies a range of offsets relative to the first byte available on the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"relative_offset_range_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"relative_offset_range_reserved_label\">\n         <property name=\"toolTip\">\n          <string>Reserved for future use.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Reserved</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved for future use.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Reserved</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"relative_offset_range_reserved\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Reserved for future use.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Reserved</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved for future use.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHHHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"0\">\n        <widget class=\"QLabel\" name=\"relative_offset_range_starting_offset_label\">\n         <property name=\"toolTip\">\n          <string>Offset of the first byte, relative to the parent device node.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Starting Offset</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the first byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Starting Offset</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"relative_offset_range_starting_offset\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Offset of the first byte, relative to the parent device node.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Starting Offset</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the first byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHHHHHHHHHHHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"0\">\n        <widget class=\"QLabel\" name=\"relative_offset_range_ending_offset_label\">\n         <property name=\"toolTip\">\n          <string>Offset of the last byte, relative to the parent device node.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Ending Offset</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the last byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Ending Offset</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"relative_offset_range_ending_offset\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Offset of the last byte, relative to the parent device node.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Ending Offset</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the last byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHHHHHHHHHHHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"ram_disk_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"computer\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>RAM Disk</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>RAM Disk Settings.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"ram_disk_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"ram_disk_starting_address_label\">\n         <property name=\"toolTip\">\n          <string>Starting Memory Address.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Starting Address</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Starting Address</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"ram_disk_starting_address\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Starting Memory Address.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Starting Address</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHHHHHHHHHHHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"0\">\n        <widget class=\"QLabel\" name=\"ram_disk_ending_address_label\">\n         <property name=\"toolTip\">\n          <string>Ending Memory Address.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Ending Address</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ending Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Ending Address</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"ram_disk_ending_address\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Ending Memory Address.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Ending Address</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ending Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHHHHHHHHHHHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"0\">\n        <widget class=\"QLabel\" name=\"ram_disk_guid_label\">\n         <property name=\"toolTip\">\n          <string>GUID that defines the type of the RAM Disk.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>GUID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID that defines the type of the RAM Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>GUID</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"ram_disk_guid\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>GUID that defines the type of the RAM Disk.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>GUID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID that defines the type of the RAM Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;HHHHHHHH-HHHH-HHHH-HHHH-HHHHHHHHHHHH;_</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"3\" column=\"0\">\n        <widget class=\"QLabel\" name=\"ram_disk_disk_instance_label\">\n         <property name=\"toolTip\">\n          <string>RAM Disk instance number, if supported.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Disk Instance</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk instance number, if supported.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Disk Instance</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"3\" column=\"1\">\n        <widget class=\"QSpinBox\" name=\"ram_disk_disk_instance\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>RAM Disk instance number, if supported.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Disk Instance</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk instance number, if supported.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"minimum\">\n          <number>0</number>\n         </property>\n         <property name=\"maximum\">\n          <number>65535</number>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <!-- BIOS -->\n     <widget class=\"QWidget\" name=\"boot_specification_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"computer\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>BIOS Boot Specification</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>This Device Path is used to describe the booting of non-EFI-aware operating systems.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path is used to describe the booting of non-EFI-aware operating systems.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"boot_specification_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"boot_specification_device_type_label\">\n         <property name=\"toolTip\">\n          <string>An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Device Type</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Device Type</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"boot_specification_device_type\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Device Type</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"0\">\n        <widget class=\"QLabel\" name=\"boot_specification_status_flag_label\">\n         <property name=\"toolTip\">\n          <string>Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Status Flag</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Status Flag</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"boot_specification_status_flag\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Status Flag</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"0\">\n        <widget class=\"QLabel\" name=\"boot_specification_description_label\">\n         <property name=\"toolTip\">\n          <string>String that describes the boot device to a user.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Description</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;String that describes the boot device to a user.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Description</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"boot_specification_description\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>String that describes the boot device to a user.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Description</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;String that describes the boot device to a user.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <!-- End -->\n     <widget class=\"QWidget\" name=\"vendor_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"document-properties\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>Vendor</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>Vendor settings</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"vendor_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"vendor_type_label\">\n         <property name=\"toolTip\">\n          <string>Type</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Type</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Type</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QComboBox\" name=\"vendor_type\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>Type</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Type</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <item>\n          <property name=\"text\">\n           <string>HW</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>MSG</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>MEDIA</string>\n          </property>\n         </item>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"0\">\n        <widget class=\"QLabel\" name=\"vendor_guid_label\">\n         <property name=\"toolTip\">\n          <string>Vendor-assigned GUID that defines the data that follows.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>GUID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-assigned GUID that defines the data that follows.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>GUID</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"vendor_guid\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Vendor-assigned GUID that defines the data that follows.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>GUID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-assigned GUID that defines the data that follows.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;HHHHHHHH-HHHH-HHHH-HHHH-HHHHHHHHHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">----</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"0\">\n        <widget class=\"QLabel\" name=\"vendor_data_label\">\n         <property name=\"toolTip\">\n          <string>Vendor-defined variable size data.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Vendor data</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined variable size data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Data</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"1\">\n        <widget class=\"QComboBox\" name=\"vendor_data_format\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>Data format.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Data format</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <item>\n          <property name=\"text\">\n           <string>BASE64</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>UTF-16</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>UTF-8</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>HEX</string>\n          </property>\n         </item>\n        </widget>\n       </item>\n       <item row=\"3\" column=\"1\">\n        <widget class=\"QPlainTextEdit\" name=\"vendor_data\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Vendor-defined variable size data.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Data</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined variable size data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"end_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"process-stop\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>End</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"end_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"end_subtype_label\">\n         <property name=\"toolTip\">\n          <string>Sub-Type</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Sub-Type</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Sub-Type</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QComboBox\" name=\"end_subtype\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>Sub-Type</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Sub-Type</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <item>\n          <property name=\"text\">\n           <string>End This Instance</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>End Entire</string>\n          </property>\n         </item>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"unknown_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"system-search\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>Unknown</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>Unknown file path specifier settings</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown file path specifier settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"unknown_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"unknown_type_label\">\n         <property name=\"toolTip\">\n          <string>Unknown Type</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Unknown Type</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Type</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"unknown_type\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Unknown Type</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Unknown Type</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"0\">\n        <widget class=\"QLabel\" name=\"unknown_subtype_label\">\n         <property name=\"toolTip\">\n          <string>Unknown Sub-Type</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Unknown Sub-Type</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Sub-Type</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"unknown_subtype\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Unknown Sub-Type</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Unknown Sub-Type</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"0\">\n        <widget class=\"QLabel\" name=\"unknown_data_label\">\n         <property name=\"toolTip\">\n          <string>Unknown data</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Unknown data</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Data</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"1\">\n        <widget class=\"QComboBox\" name=\"unknown_data_format\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>Data format</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Data format</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <item>\n          <property name=\"text\">\n           <string>BASE64</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>UTF-16</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>UTF-8</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>HEX</string>\n          </property>\n         </item>\n        </widget>\n       </item>\n       <item row=\"3\" column=\"1\">\n        <widget class=\"QPlainTextEdit\" name=\"unknown_data\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Data</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Data</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n    </widget>\n   </item>\n   <item>\n    <widget class=\"QDialogButtonBox\" name=\"button_box\">\n     <property name=\"orientation\">\n      <enum>Qt::Orientation::Vertical</enum>\n     </property>\n     <property name=\"standardButtons\">\n      <set>QDialogButtonBox::StandardButton::Cancel|QDialogButtonBox::StandardButton::Ok</set>\n     </property>\n    </widget>\n   </item>\n  </layout>\n </widget>\n <resources/>\n <connections>\n  <connection>\n   <sender>button_box</sender>\n   <signal>accepted()</signal>\n   <receiver>FilePathDialog</receiver>\n   <slot>accept()</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>248</x>\n     <y>254</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>157</x>\n     <y>274</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>button_box</sender>\n   <signal>rejected()</signal>\n   <receiver>FilePathDialog</receiver>\n   <slot>reject()</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>316</x>\n     <y>260</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>286</x>\n     <y>274</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>hd_disk_refresh</sender>\n   <signal>clicked()</signal>\n   <receiver>FilePathDialog</receiver>\n   <slot>resetDiskCombo()</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>362</x>\n     <y>60</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>239</x>\n     <y>119</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>hd_disk</sender>\n   <signal>currentIndexChanged(int)</signal>\n   <receiver>FilePathDialog</receiver>\n   <slot>diskChoiceChanged(int)</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>213</x>\n     <y>60</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>239</x>\n     <y>119</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>hd_signature_type</sender>\n   <signal>currentIndexChanged(int)</signal>\n   <receiver>FilePathDialog</receiver>\n   <slot>signatureTypeChoiceChanged(int)</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>99</x>\n     <y>93</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>249</x>\n     <y>119</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>adr_additional_adr_format</sender>\n   <signal>currentIndexChanged(int)</signal>\n   <receiver>FilePathDialog</receiver>\n   <slot>AdrAdditionalAdrChanged(int)</slot>\n  </connection>\n  <connection>\n   <sender>dns_data_format</sender>\n   <signal>currentIndexChanged(int)</signal>\n   <receiver>FilePathDialog</receiver>\n   <slot>DnsDataChanged(int)</slot>\n  </connection>\n  <connection>\n   <sender>rest_service_data_format</sender>\n   <signal>currentIndexChanged(int)</signal>\n   <receiver>FilePathDialog</receiver>\n   <slot>RestServiceDataChanged(int)</slot>\n  </connection>\n  <connection>\n   <sender>vendor_data_format</sender>\n   <signal>currentIndexChanged(int)</signal>\n   <receiver>FilePathDialog</receiver>\n   <slot>VendorDataFormatChanged(int)</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>226</x>\n     <y>93</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>249</x>\n     <y>119</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>unknown_data_format</sender>\n   <signal>currentIndexChanged(int)</signal>\n   <receiver>FilePathDialog</receiver>\n   <slot>UnknownDataFormatChanged(int)</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>301</x>\n     <y>95</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>299</x>\n     <y>174</y>\n    </hint>\n   </hints>\n  </connection>\n </connections>\n <slots>\n  <slot>resetDiskCombo()</slot>\n  <slot>diskChoiceChanged(int)</slot>\n  <slot>signatureTypeChoiceChanged(int)</slot>\n  <slot>AdrAdditionalAdrChanged(int)</slot>\n  <slot>DnsDataChanged(int)</slot>\n  <slot>RestServiceDataChanged(int)</slot>\n  <slot>VendorDataFormatChanged(int)</slot>\n  <slot>UnknownDataFormatChanged(int)</slot>\n </slots>\n</ui>\n"
  },
  {
    "path": "src/form/filepathdialog.ui.j2",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<ui version=\"4.0\">\n <class>FilePathDialog</class>\n <widget class=\"QDialog\" name=\"FilePathDialog\">\n  <property name=\"minimumSize\">\n   <size>\n    <width>750</width>\n    <height>350</height>\n   </size>\n  </property>\n  <property name=\"windowTitle\">\n   <string>File path editor</string>\n  </property>\n  <property name=\"modal\">\n   <bool>true</bool>\n  </property>\n  <layout class=\"QHBoxLayout\" name=\"file_path_dialog_layout\" stretch=\"1,0\">\n   <property name=\"leftMargin\">\n    <number>6</number>\n   </property>\n   <property name=\"topMargin\">\n    <number>6</number>\n   </property>\n   <property name=\"rightMargin\">\n    <number>6</number>\n   </property>\n   <property name=\"bottomMargin\">\n    <number>6</number>\n   </property>\n   <item>\n    <widget class=\"QTabWidget\" name=\"options\">\n     <property name=\"tabPosition\">\n      <enum>QTabWidget::TabPosition::West</enum>\n     </property>\n     <property name=\"usesScrollButtons\">\n      <bool>true</bool>\n     </property>\n     <property name=\"documentMode\">\n      <bool>true</bool>\n     </property>\n     {% for category in device_paths.values() %}\n     <!-- {{ category.name }} -->\n     {% for node in category.nodes if node.slug not in (\"vendor\", \"instance\", \"entire\") %}\n     <widget class=\"QWidget\" name=\"{{ node.slug }}_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"{{ node.icon|default(\"computer\") }}\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>{{ node.name }}</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>{{ node.description }}</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;{{ node.description }}&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"{{ node.slug }}_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       {% for field in node.fields %}\n       {% set ui_slug = node.slug + \"_\" + field.slug %}\n       {% if field.type in (\"guid\", \"hex\", \"ip4\", \"ip6\", \"mac\", \"string\", \"uri\", \"wstring\") %}\n       {% set ui_widget = \"QLineEdit\" %}\n       {% elif field.type == \"bool\" %}\n       {% set ui_widget = \"QCheckBox\" %}\n       {% elif field.type == \"enum\" %}\n       {% set ui_widget = \"QComboBox\" %}\n       {% elif field.type == \"raw_data\" %}\n       {% set ui_widget = \"QPlainTextEdit\" %}\n       {% else %}\n       {% set ui_widget = \"QSpinBox\" %}\n       {% endif %}\n       {% set index_offset = 0 %}\n       {% if node.slug == \"hd\" %}\n       {% set loop_index = loop.index %}\n       {% else %}\n       {% set loop_index = loop.index0 %}\n       {% endif %}\n       <item row=\"{{ loop_index + index_offset }}\" column=\"0\">\n        <widget class=\"QLabel\" name=\"{{ ui_slug }}_label\">\n         <property name=\"toolTip\">\n          <string>{{ field.description }}</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>{{ field.name }}</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;{{ field.description }}&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>{{ field.name }}</string>\n         </property>\n        </widget>\n       </item>\n       {% if field.type == \"raw_data\" %}\n       <item row=\"{{ loop_index + index_offset }}\" column=\"1\">\n        <widget class=\"QComboBox\" name=\"{{ ui_slug }}_format\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>{{ field.name }} format.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>{{ field.name }} format</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;{{ field.name }} format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <item>\n          <property name=\"text\">\n           <string>BASE64</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>UTF-16</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>UTF-8</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>HEX</string>\n          </property>\n         </item>\n        </widget>\n       </item>\n       {% set index_offset = index_offset + 1 %}\n       {% endif %}\n       <item row=\"{{ loop_index + index_offset }}\" column=\"1\">\n        <widget class=\"{{ ui_widget }}\" name=\"{{ ui_slug }}\">\n         {% if field.type in (\"guid\", \"hex\", \"ip4\", \"ip6\", \"mac\") %}\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         {% else %}\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         {% endif %}\n         <property name=\"toolTip\">\n          <string>{{ field.description }}</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>{{ field.name }}</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;{{ field.description }}&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         {% if field.type == \"guid\" %}\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;HHHHHHHH-HHHH-HHHH-HHHH-HHHHHHHHHHHH;_</string>\n         </property>\n         {% elif field.type == \"hex\" %}\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\x{{ 'HH' * field.size }};_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n         {% elif field.type == \"mac\" %}\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;HH:HH:HH:HH:HH:HH:HH:HH:HH:HH:HH:HH:HH:HH:HH:HH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">:::::::::::::::</string>\n         </property>\n         {% elif field.type == \"ip4\" %}\n         <property name=\"inputMask\">\n          <string notr=\"true\">000.000.000.000</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0.0.0.0</string>\n         </property>\n         {% elif field.type == \"ip6\" %}\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;HHHH:HHHH:HHHH:HHHH:HHHH:HHHH:HHHH:HHHH</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">:::::::</string>\n         </property>\n         {% elif field.type == \"int\" %}\n         <property name=\"minimum\">\n          <number>{{ field.int and field.int.minimum or 0 }}</number>\n         </property>\n         <property name=\"maximum\">\n          <number>{{ field.int and field.int.maximum or ([256**field.size-1, 2**31-1] | min) }}</number>\n         </property>\n         {% elif field.type == \"string\" and field.string %}\n         <property name=\"maxLength\">\n          <number>{{ field.string.max_length }}</number>\n         </property>\n         {% endif %}\n         {% for choice in field.enum %}\n         <item>\n          <property name=\"text\">\n           <string>{{ choice.name }}</string>\n          </property>\n         </item>\n         {% endfor %}\n        </widget>\n       </item>\n       {% endfor %}\n      </layout>\n     </widget>\n     {% endfor %}{% endfor %}\n     <widget class=\"QWidget\" name=\"vendor_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"document-properties\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>Vendor</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>Vendor settings</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"vendor_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"vendor_type_label\">\n         <property name=\"toolTip\">\n          <string>Type</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Type</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Type</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QComboBox\" name=\"vendor_type\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>Type</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Type</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <item>\n          <property name=\"text\">\n           <string>HW</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>MSG</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>MEDIA</string>\n          </property>\n         </item>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"0\">\n        <widget class=\"QLabel\" name=\"vendor_guid_label\">\n         <property name=\"toolTip\">\n          <string>Vendor-assigned GUID that defines the data that follows.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>GUID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-assigned GUID that defines the data that follows.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>GUID</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"vendor_guid\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Vendor-assigned GUID that defines the data that follows.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>GUID</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-assigned GUID that defines the data that follows.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;HHHHHHHH-HHHH-HHHH-HHHH-HHHHHHHHHHHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">----</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"0\">\n        <widget class=\"QLabel\" name=\"vendor_data_label\">\n         <property name=\"toolTip\">\n          <string>Vendor-defined variable size data.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Vendor data</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined variable size data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Data</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"1\">\n        <widget class=\"QComboBox\" name=\"vendor_data_format\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>Data format.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Data format</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <item>\n          <property name=\"text\">\n           <string>BASE64</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>UTF-16</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>UTF-8</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>HEX</string>\n          </property>\n         </item>\n        </widget>\n       </item>\n       <item row=\"3\" column=\"1\">\n        <widget class=\"QPlainTextEdit\" name=\"vendor_data\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Vendor-defined variable size data.</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Data</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined variable size data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"end_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"process-stop\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>End</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"end_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"end_subtype_label\">\n         <property name=\"toolTip\">\n          <string>Sub-Type</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Sub-Type</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Sub-Type</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QComboBox\" name=\"end_subtype\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>Sub-Type</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Sub-Type</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <item>\n          <property name=\"text\">\n           <string>End This Instance</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>End Entire</string>\n          </property>\n         </item>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n     <widget class=\"QWidget\" name=\"unknown_tab\">\n      <attribute name=\"icon\">\n       <iconset theme=\"system-search\"/>\n      </attribute>\n      <attribute name=\"title\">\n       <string>Unknown</string>\n      </attribute>\n      <attribute name=\"toolTip\">\n       <string>Unknown file path specifier settings</string>\n      </attribute>\n      <attribute name=\"whatsThis\">\n       <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown file path specifier settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n      </attribute>\n      <layout class=\"QFormLayout\" name=\"unknown_layout\">\n       <property name=\"fieldGrowthPolicy\">\n        <enum>QFormLayout::FieldGrowthPolicy::ExpandingFieldsGrow</enum>\n       </property>\n       <property name=\"labelAlignment\">\n        <set>Qt::AlignmentFlag::AlignRight|Qt::AlignmentFlag::AlignTrailing|Qt::AlignmentFlag::AlignVCenter</set>\n       </property>\n       <property name=\"leftMargin\">\n        <number>6</number>\n       </property>\n       <property name=\"topMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"rightMargin\">\n        <number>0</number>\n       </property>\n       <property name=\"bottomMargin\">\n        <number>0</number>\n       </property>\n       <item row=\"0\" column=\"0\">\n        <widget class=\"QLabel\" name=\"unknown_type_label\">\n         <property name=\"toolTip\">\n          <string>Unknown Type</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Unknown Type</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Type</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"0\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"unknown_type\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Unknown Type</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Unknown Type</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"0\">\n        <widget class=\"QLabel\" name=\"unknown_subtype_label\">\n         <property name=\"toolTip\">\n          <string>Unknown Sub-Type</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Unknown Sub-Type</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Sub-Type</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"1\" column=\"1\">\n        <widget class=\"QLineEdit\" name=\"unknown_subtype\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Unknown Sub-Type</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Unknown Sub-Type</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"inputMask\">\n          <string notr=\"true\">&lt;\\0\\xHH;_</string>\n         </property>\n         <property name=\"text\">\n          <string notr=\"true\">0x</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"0\">\n        <widget class=\"QLabel\" name=\"unknown_data_label\">\n         <property name=\"toolTip\">\n          <string>Unknown data</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Unknown data</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <property name=\"text\">\n          <string>Data</string>\n         </property>\n        </widget>\n       </item>\n       <item row=\"2\" column=\"1\">\n        <widget class=\"QComboBox\" name=\"unknown_data_format\">\n         <property name=\"sizePolicy\">\n          <sizepolicy hsizetype=\"Expanding\" vsizetype=\"Fixed\">\n           <horstretch>0</horstretch>\n           <verstretch>0</verstretch>\n          </sizepolicy>\n         </property>\n         <property name=\"toolTip\">\n          <string>Data format</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Data format</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n         <item>\n          <property name=\"text\">\n           <string>BASE64</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>UTF-16</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>UTF-8</string>\n          </property>\n         </item>\n         <item>\n          <property name=\"text\">\n           <string>HEX</string>\n          </property>\n         </item>\n        </widget>\n       </item>\n       <item row=\"3\" column=\"1\">\n        <widget class=\"QPlainTextEdit\" name=\"unknown_data\">\n         <property name=\"font\">\n          <font>\n           <family>Monospace</family>\n          </font>\n         </property>\n         <property name=\"toolTip\">\n          <string>Data</string>\n         </property>\n         <property name=\"statusTip\">\n          <string>Data</string>\n         </property>\n         <property name=\"whatsThis\">\n          <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n         </property>\n        </widget>\n       </item>\n      </layout>\n     </widget>\n    </widget>\n   </item>\n   <item>\n    <widget class=\"QDialogButtonBox\" name=\"button_box\">\n     <property name=\"orientation\">\n      <enum>Qt::Orientation::Vertical</enum>\n     </property>\n     <property name=\"standardButtons\">\n      <set>QDialogButtonBox::StandardButton::Cancel|QDialogButtonBox::StandardButton::Ok</set>\n     </property>\n    </widget>\n   </item>\n  </layout>\n </widget>\n <resources/>\n <connections>\n  <connection>\n   <sender>button_box</sender>\n   <signal>accepted()</signal>\n   <receiver>FilePathDialog</receiver>\n   <slot>accept()</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>248</x>\n     <y>254</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>157</x>\n     <y>274</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>button_box</sender>\n   <signal>rejected()</signal>\n   <receiver>FilePathDialog</receiver>\n   <slot>reject()</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>316</x>\n     <y>260</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>286</x>\n     <y>274</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>hd_disk_refresh</sender>\n   <signal>clicked()</signal>\n   <receiver>FilePathDialog</receiver>\n   <slot>resetDiskCombo()</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>362</x>\n     <y>60</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>239</x>\n     <y>119</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>hd_disk</sender>\n   <signal>currentIndexChanged(int)</signal>\n   <receiver>FilePathDialog</receiver>\n   <slot>diskChoiceChanged(int)</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>213</x>\n     <y>60</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>239</x>\n     <y>119</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>hd_signature_type</sender>\n   <signal>currentIndexChanged(int)</signal>\n   <receiver>FilePathDialog</receiver>\n   <slot>signatureTypeChoiceChanged(int)</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>99</x>\n     <y>93</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>249</x>\n     <y>119</y>\n    </hint>\n   </hints>\n  </connection>\n  {% for category in device_paths.values() %}{% for node in category.nodes if node.slug not in (\"vendor\", \"instance\", \"entire\") %}{% for field in node.fields if field.type == \"raw_data\" %}\n  <connection>\n   <sender>{{ node.slug }}_{{ field.slug }}_format</sender>\n   <signal>currentIndexChanged(int)</signal>\n   <receiver>FilePathDialog</receiver>\n   <slot>{{ node.slug.split(\"_\")|map(\"capitalize\")|join }}{{ field.slug.split(\"_\")|map(\"capitalize\")|join }}Changed(int)</slot>\n  </connection>\n  {% endfor %}{% endfor %}{% endfor %}\n  <connection>\n   <sender>vendor_data_format</sender>\n   <signal>currentIndexChanged(int)</signal>\n   <receiver>FilePathDialog</receiver>\n   <slot>VendorDataFormatChanged(int)</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>226</x>\n     <y>93</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>249</x>\n     <y>119</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>unknown_data_format</sender>\n   <signal>currentIndexChanged(int)</signal>\n   <receiver>FilePathDialog</receiver>\n   <slot>UnknownDataFormatChanged(int)</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>301</x>\n     <y>95</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>299</x>\n     <y>174</y>\n    </hint>\n   </hints>\n  </connection>\n </connections>\n <slots>\n  <slot>resetDiskCombo()</slot>\n  <slot>diskChoiceChanged(int)</slot>\n  <slot>signatureTypeChoiceChanged(int)</slot>\n  {% for category in device_paths.values() %}{% for node in category.nodes if node.slug not in (\"vendor\", \"instance\", \"entire\") %}{% for field in node.fields if field.type == \"raw_data\" %}\n  <slot>{{ node.slug.split(\"_\")|map(\"capitalize\")|join }}{{ field.slug.split(\"_\")|map(\"capitalize\")|join }}Changed(int)</slot>\n  {% endfor %}{% endfor %}{% endfor %}\n  <slot>VendorDataFormatChanged(int)</slot>\n  <slot>UnknownDataFormatChanged(int)</slot>\n </slots>\n</ui>\n\n"
  },
  {
    "path": "src/form/hotkeysdialog.ui",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<ui version=\"4.0\">\n <class>HotKeysDialog</class>\n <widget class=\"QDialog\" name=\"HotKeysDialog\">\n  <property name=\"geometry\">\n   <rect>\n    <x>0</x>\n    <y>0</y>\n    <width>640</width>\n    <height>480</height>\n   </rect>\n  </property>\n  <property name=\"minimumSize\">\n   <size>\n    <width>640</width>\n    <height>480</height>\n   </size>\n  </property>\n  <property name=\"windowTitle\">\n   <string>Hot Keys editor</string>\n  </property>\n  <property name=\"modal\">\n   <bool>true</bool>\n  </property>\n  <layout class=\"QVBoxLayout\" name=\"verticalLayout\">\n   <property name=\"leftMargin\">\n    <number>6</number>\n   </property>\n   <property name=\"topMargin\">\n    <number>6</number>\n   </property>\n   <property name=\"rightMargin\">\n    <number>6</number>\n   </property>\n   <property name=\"bottomMargin\">\n    <number>6</number>\n   </property>\n   <item>\n    <widget class=\"HotKeysView\" name=\"hot_keys\">\n     <property name=\"toolTip\">\n      <string>Hot Keys</string>\n     </property>\n     <property name=\"statusTip\">\n      <string>Hot Keys</string>\n     </property>\n     <property name=\"whatsThis\">\n      <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n     </property>\n     <property name=\"showDropIndicator\" stdset=\"0\">\n      <bool>false</bool>\n     </property>\n     <property name=\"alternatingRowColors\">\n      <bool>true</bool>\n     </property>\n     <property name=\"selectionBehavior\">\n      <enum>QAbstractItemView::SelectionBehavior::SelectRows</enum>\n     </property>\n     <property name=\"indentation\">\n      <number>0</number>\n     </property>\n     <property name=\"rootIsDecorated\">\n      <bool>false</bool>\n     </property>\n     <property name=\"uniformRowHeights\">\n      <bool>true</bool>\n     </property>\n     <property name=\"itemsExpandable\">\n      <bool>false</bool>\n     </property>\n     <property name=\"allColumnsShowFocus\">\n      <bool>true</bool>\n     </property>\n     <property name=\"expandsOnDoubleClick\">\n      <bool>false</bool>\n     </property>\n     <attribute name=\"headerMinimumSectionSize\">\n      <number>210</number>\n     </attribute>\n    </widget>\n   </item>\n   <item>\n    <widget class=\"QWidget\" name=\"actions_box\" native=\"true\">\n     <layout class=\"QHBoxLayout\" name=\"actions_box_layout\" stretch=\"0,1,0,0,0,0\">\n      <property name=\"spacing\">\n       <number>1</number>\n      </property>\n      <property name=\"leftMargin\">\n       <number>0</number>\n      </property>\n      <property name=\"topMargin\">\n       <number>0</number>\n      </property>\n      <property name=\"rightMargin\">\n       <number>0</number>\n      </property>\n      <property name=\"bottomMargin\">\n       <number>0</number>\n      </property>\n      <item>\n       <widget class=\"QLineEdit\" name=\"index_filter\">\n        <property name=\"sizePolicy\">\n         <sizepolicy hsizetype=\"Preferred\" vsizetype=\"Fixed\">\n          <horstretch>0</horstretch>\n          <verstretch>0</verstretch>\n         </sizepolicy>\n        </property>\n        <property name=\"minimumSize\">\n         <size>\n          <width>60</width>\n          <height>0</height>\n         </size>\n        </property>\n        <property name=\"maximumSize\">\n         <size>\n          <width>60</width>\n          <height>40</height>\n         </size>\n        </property>\n        <property name=\"font\">\n         <font>\n          <family>Monospace</family>\n         </font>\n        </property>\n        <property name=\"toolTip\">\n         <string>Index filter</string>\n        </property>\n        <property name=\"statusTip\">\n         <string>Index filter</string>\n        </property>\n        <property name=\"whatsThis\">\n         <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Index filter&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n        </property>\n        <property name=\"inputMask\">\n         <string notr=\"true\">&gt;\\0\\xHHHH;_</string>\n        </property>\n        <property name=\"text\">\n         <string notr=\"true\">0x</string>\n        </property>\n       </widget>\n      </item>\n      <item>\n       <spacer name=\"horizontalSpacer\">\n        <property name=\"orientation\">\n         <enum>Qt::Orientation::Horizontal</enum>\n        </property>\n        <property name=\"sizeHint\" stdset=\"0\">\n         <size>\n          <width>40</width>\n          <height>20</height>\n         </size>\n        </property>\n       </spacer>\n      </item>\n      <item>\n       <widget class=\"QPushButton\" name=\"hot_key_remove\">\n        <property name=\"maximumSize\">\n         <size>\n          <width>40</width>\n          <height>40</height>\n         </size>\n        </property>\n        <property name=\"toolTip\">\n         <string>Remove hot key</string>\n        </property>\n        <property name=\"statusTip\">\n         <string>Remove hot key</string>\n        </property>\n        <property name=\"whatsThis\">\n         <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n        </property>\n        <property name=\"text\">\n         <string/>\n        </property>\n        <property name=\"icon\">\n         <iconset theme=\"list-remove\"/>\n        </property>\n        <property name=\"autoDefault\">\n         <bool>false</bool>\n        </property>\n       </widget>\n      </item>\n      <item>\n       <widget class=\"QPushButton\" name=\"hot_key_add\">\n        <property name=\"maximumSize\">\n         <size>\n          <width>40</width>\n          <height>40</height>\n         </size>\n        </property>\n        <property name=\"toolTip\">\n         <string>Add hot key</string>\n        </property>\n        <property name=\"statusTip\">\n         <string>Add hot key</string>\n        </property>\n        <property name=\"whatsThis\">\n         <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n        </property>\n        <property name=\"text\">\n         <string/>\n        </property>\n        <property name=\"icon\">\n         <iconset theme=\"list-add\"/>\n        </property>\n        <property name=\"autoDefault\">\n         <bool>false</bool>\n        </property>\n       </widget>\n      </item>\n      <item>\n       <spacer name=\"horizontalSpacer_2\">\n        <property name=\"orientation\">\n         <enum>Qt::Orientation::Horizontal</enum>\n        </property>\n        <property name=\"sizeHint\" stdset=\"0\">\n         <size>\n          <width>40</width>\n          <height>20</height>\n         </size>\n        </property>\n       </spacer>\n      </item>\n      <item>\n       <widget class=\"QDialogButtonBox\" name=\"button_box\">\n        <property name=\"sizePolicy\">\n         <sizepolicy hsizetype=\"Minimum\" vsizetype=\"Fixed\">\n          <horstretch>0</horstretch>\n          <verstretch>0</verstretch>\n         </sizepolicy>\n        </property>\n        <property name=\"maximumSize\">\n         <size>\n          <width>16777215</width>\n          <height>40</height>\n         </size>\n        </property>\n        <property name=\"orientation\">\n         <enum>Qt::Orientation::Horizontal</enum>\n        </property>\n        <property name=\"standardButtons\">\n         <set>QDialogButtonBox::StandardButton::Close</set>\n        </property>\n        <property name=\"centerButtons\">\n         <bool>false</bool>\n        </property>\n       </widget>\n      </item>\n     </layout>\n    </widget>\n   </item>\n  </layout>\n </widget>\n <customwidgets>\n  <customwidget>\n   <class>HotKeysView</class>\n   <extends>QTreeView</extends>\n   <header>hotkeysview.h</header>\n   <slots>\n    <slot>removeCurrentRow()</slot>\n    <slot>insertRow()</slot>\n    <slot>setFilter(QString)</slot>\n   </slots>\n  </customwidget>\n </customwidgets>\n <resources/>\n <connections>\n  <connection>\n   <sender>button_box</sender>\n   <signal>accepted()</signal>\n   <receiver>HotKeysDialog</receiver>\n   <slot>accept()</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>248</x>\n     <y>254</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>157</x>\n     <y>274</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>button_box</sender>\n   <signal>rejected()</signal>\n   <receiver>HotKeysDialog</receiver>\n   <slot>reject()</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>316</x>\n     <y>260</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>286</x>\n     <y>274</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>hot_key_add</sender>\n   <signal>clicked()</signal>\n   <receiver>hot_keys</receiver>\n   <slot>insertRow()</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>492</x>\n     <y>460</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>319</x>\n     <y>223</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>hot_key_remove</sender>\n   <signal>clicked()</signal>\n   <receiver>hot_keys</receiver>\n   <slot>removeCurrentRow()</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>452</x>\n     <y>460</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>319</x>\n     <y>223</y>\n    </hint>\n   </hints>\n  </connection>\n  <connection>\n   <sender>index_filter</sender>\n   <signal>textChanged(QString)</signal>\n   <receiver>hot_keys</receiver>\n   <slot>setFilter(QString)</slot>\n   <hints>\n    <hint type=\"sourcelabel\">\n     <x>35</x>\n     <y>460</y>\n    </hint>\n    <hint type=\"destinationlabel\">\n     <x>319</x>\n     <y>223</y>\n    </hint>\n   </hints>\n  </connection>\n </connections>\n</ui>\n"
  },
  {
    "path": "src/hotkey.cpp",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#include \"compat.h\"\n\n#include \"hotkey.h\"\n\n#include <QJsonArray>\n#include <QJsonObject>\n\n#include \"efiboot.h\"\n\n#define check_type(field, typecheck)                          \\\n    if(!obj.contains(#field) || !obj[#field].is##typecheck()) \\\n    return std::nullopt\n#define try_read_3(field, typecheck, typecast) \\\n    check_type(field, typecheck);              \\\n    value.field = static_cast<decltype(value.field)>(obj[#field].to##typecast())\n\nauto HotKey::fromEFIBootKeyOption(\n    const EFIBoot::Key_option &key_option) -> HotKey\n{\n    HotKey value{};\n    value.boot_option = key_option.boot_option;\n    value.keys = {key_option.key_data, key_option.keys};\n    value.vendor_data = QByteArray::fromRawData(reinterpret_cast<const char *>(key_option.vendor_data.data()), static_cast<int>(key_option.vendor_data.size()));\n    value.vendor_data.detach();\n    return value;\n}\n\nauto HotKey::fromError(const QString &error) -> HotKey\n{\n    HotKey value{};\n    value.is_error = true;\n    value.error = error;\n    return value;\n}\n\nauto HotKey::toEFIBootKeyOption(const std::unordered_map<uint16_t, uint32_t> &crc32) const -> EFIBoot::Key_option\n{\n    if(is_error)\n        return {};\n\n    EFIBoot::Key_option key_option{};\n    key_option.boot_option = boot_option;\n    if(const auto crc = crc32.find(boot_option); crc != crc32.end())\n        key_option.boot_option_crc = crc->second;\n\n    if(!keys.toEFIKeyOption(key_option.key_data, key_option.keys))\n        return {};\n\n    auto begin = reinterpret_cast<const EFIBoot::Raw_data::value_type *>(vendor_data.constData());\n    std::copy(begin, std::next(begin, vendor_data.size()), std::back_inserter(key_option.vendor_data));\n    return key_option;\n}\n\nauto HotKey::fromJSON(const QJsonObject &obj, qsizetype maxKeys) -> std::optional<HotKey>\n{\n    HotKey value{};\n    try_read_3(boot_option, Double, Int);\n    check_type(keys, String);\n    const auto keys = obj[\"keys\"].toString();\n    value.keys = EFIKeySequence::fromString(keys, maxKeys);\n    if(value.keys.isEmpty())\n        return {};\n\n    check_type(vendor_data, String);\n    value.vendor_data = QByteArray::fromBase64(obj[\"vendor_data\"].toString().toUtf8());\n    return {value};\n}\n\nauto HotKey::toJSON() const -> QJsonObject\n{\n    if(is_error)\n        return {};\n\n    QJsonObject key_option;\n    key_option[\"boot_option\"] = boot_option;\n    key_option[\"keys\"] = keys.toString();\n    key_option[\"vendor_data\"] = QString{vendor_data.toBase64()};\n    return key_option;\n}\n\n#undef try_read_3\n#undef check_type\n"
  },
  {
    "path": "src/hotkeydelegate.cpp",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#include \"compat.h\"\n\n#include \"hotkeydelegate.h\"\n\nvoid HotKeyBootOptionDelegate::refreshBootOptions(const BootEntryListModel &model)\n{\n    painter.clear();\n    renderer.clear();\n    event_handler.clear();\n\n    for(const auto &entry: model.getEntries())\n    {\n        painter.addItem(entry.getTitle(), entry.index);\n        renderer.addItem(entry.getTitle(), entry.index);\n        event_handler.addItem(entry.getTitle(), entry.index);\n    }\n}\n\nvoid HotKeyBootOptionDelegate::setupWidgetFromItem(Widget &widget, const Item &item, const QModelIndex & /*index*/, int role) const\n{\n    if(role == Qt::EditRole)\n    {\n        for(int index = 0; index < event_handler.count(); ++index)\n            widget.addItem(event_handler.itemText(index), event_handler.itemData(index));\n    }\n\n    for(int index = 0; index < widget.count(); ++index)\n    {\n        if(widget.itemData(index) == item)\n        {\n            widget.setCurrentIndex(index);\n            break;\n        }\n    }\n\n    if(role == Qt::EditRole)\n    {\n        // Commit data after select\n        QObject::connect(&widget, QOverload<int>::of(&QComboBox::activated), [&widget](int /*index*/)\n            {\n            // by pretending enter was sent\n            QKeyEvent enter{QEvent::KeyPress, Qt::Key_Enter, Qt::NoModifier};\n            QApplication::sendEvent(&widget, &enter); });\n    }\n}\n\nbool HotKeyBootOptionDelegate::setupItemFromWidget(const Widget &widget, Item &item, const QModelIndex & /*index*/) const\n{\n    item = widget.currentData().value<Item>();\n    return true;\n}\n\nbool HotKeyBootOptionDelegate::eventFilter(QObject *object, QEvent *event)\n{\n    if(event->type() == QEvent::FocusIn)\n    {\n        auto *editor = dynamic_cast<Widget *>(object);\n        const auto *focus = dynamic_cast<QFocusEvent *>(event);\n        if(editor && focus && focus->reason() != Qt::PopupFocusReason)\n            editor->showPopup();\n    }\n\n    return QWidgetItemDelegate<Widget, Item>::eventFilter(object, event);\n}\n\nvoid HotKeyKeysDelegate::setMaximumSequenceLength(qsizetype count)\n{\n    maximumSequenceLength = count;\n}\n\nvoid HotKeyKeysDelegate::setupWidgetFromItem(Widget &widget, const Item &item, const QModelIndex & /*index*/, int role) const\n{\n    widget.setClearButtonEnabled(role == Qt::EditRole);\n    widget.setMaximumSequenceLength(maximumSequenceLength);\n    widget.setKeySequence(*item);\n\n    if(role == Qt::EditRole)\n    {\n        // Commit data after edit is finished\n        QObject::connect(&widget, &EFIKeySequenceEdit::editingFinished, [&widget]()\n            {\n            // by pretending enter was sent\n            QKeyEvent enter{QEvent::KeyPress, Qt::Key_Enter, Qt::NoModifier};\n            QApplication::sendEvent(&widget, &enter); });\n    }\n}\n\nbool HotKeyKeysDelegate::setupItemFromWidget(const Widget &widget, Item &item, const QModelIndex & /*index*/) const\n{\n    item = &widget.keySequence();\n    return true;\n}\n"
  },
  {
    "path": "src/hotkeylistmodel.cpp",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#include \"compat.h\"\n\n#include \"hotkeylistmodel.h\"\n\n#include \"commands.h\"\n\nHotKeyListModel::HotKeyListModel(QObject *parent)\n    : QAbstractItemModel{parent}\n{\n}\n\nvoid HotKeyListModel::setUndoStack(QUndoStack *undo_stack_)\n{\n    undo_stack = undo_stack_;\n}\n\nauto HotKeyListModel::getUndoStack() const -> QUndoStack *\n{\n    return undo_stack;\n}\n\nauto HotKeyListModel::rowCount(const QModelIndex &parent) const -> int\n{\n    if(parent.isValid())\n        return 0;\n\n    return static_cast<int>(entries.count());\n}\n\nauto HotKeyListModel::headerData(int section, Qt::Orientation orientation, int role) const -> QVariant\n{\n    if(role != Qt::DisplayRole)\n        return {};\n\n    if(orientation != Qt::Horizontal)\n        return {};\n\n    if(section >= header.size())\n        return {};\n\n    return header.at(section);\n}\n\nauto HotKeyListModel::data(const QModelIndex &index, int role) const -> QVariant\n{\n    if(role != Qt::DisplayRole)\n        return {};\n\n    if(!index.isValid() || !checkIndex(index))\n        return {};\n\n    const auto &entry = entries.at(index.row());\n    if(entry.is_error)\n    {\n        if(static_cast<Column>(index.column()) == Column::Keys)\n            return {entry.error};\n\n        return {};\n    }\n\n    switch(static_cast<Column>(index.column()))\n    {\n    case Column::BootOption:\n        return entry.boot_option;\n\n    case Column::Keys:\n    {\n        QVariant data;\n        const auto &keys = entry.keys;\n        data.setValue(&keys);\n        return data;\n    }\n\n    case Column::VendorData:\n        return {QString(\"%1B\").arg(entry.vendor_data.size())};\n\n    case Column::Count:\n        return {};\n    }\n\n    Q_UNREACHABLE();\n}\n\nauto HotKeyListModel::setData(const QModelIndex &index, const QVariant &value, int role) -> bool\n{\n    if(role != Qt::EditRole)\n        return false;\n\n    if(!index.isValid() || !checkIndex(index))\n        return false;\n\n    auto row = index.row();\n    if(const auto &entry = entries.at(row); entry.is_error)\n        return false;\n\n    QUndoCommand *command = nullptr;\n    // Edited BootOption\n    if(auto column = static_cast<Column>(index.column()); column == Column::BootOption && value.canConvert<uint16_t>() && index.data() != value)\n        command = new SetHotKeyValueCommand<uint16_t>{*this, index, tr(\"boot option\"), &HotKey::boot_option, value.value<uint16_t>()};\n\n    // Edited keys\n    else if(column == Column::Keys && value.canConvert<const EFIKeySequence *>() && *index.data().value<const EFIKeySequence *>() != *value.value<const EFIKeySequence *>())\n        command = new SetHotKeyKeysCommand{*this, index, *value.value<const EFIKeySequence *>()};\n\n    else\n        return false;\n\n    if(undo_stack)\n        undo_stack->push(command);\n\n    else\n    {\n        command->redo();\n        delete command;\n    }\n\n    auto idx = this->index(row + 1, 0);\n    Q_EMIT dataChanged(idx, idx, {role});\n    return true;\n}\n\nauto HotKeyListModel::flags(const QModelIndex &index) const -> Qt::ItemFlags\n{\n    auto flags = QAbstractItemModel::flags(index);\n    if(!index.isValid() || !checkIndex(index))\n        return flags;\n\n    if(const auto &entry = entries.at(index.row()); entry.is_error)\n        return flags;\n\n    if(static_cast<Column>(index.column()) == Column::VendorData)\n        return flags;\n\n    return flags | Qt::ItemIsEditable;\n}\n\nauto HotKeyListModel::insertRows(int row, int count, const QModelIndex &parent) -> bool\n{\n    for(int c = 0; c < count; ++c)\n    {\n        auto command = new InsertHotKeyCommand{*this, parent, row + c, {}};\n        if(!undo_stack)\n        {\n            command->redo();\n            delete command;\n            continue;\n        }\n\n        undo_stack->push(command);\n    }\n\n    return true;\n}\n\nauto HotKeyListModel::appendRow(const HotKey &data, const QModelIndex &parent) -> bool\n{\n    // Only used internally when loading data, no undo/redo\n    int row = rowCount(parent);\n    beginInsertRows(parent, row, row);\n    entries.append(data);\n    endInsertRows();\n    return true;\n}\n\nauto HotKeyListModel::removeRows(int row, int count, const QModelIndex &parent) -> bool\n{\n    for(int c = 0; c < count; ++c)\n    {\n        auto command = new RemoveHotKeyCommand{*this, parent, row};\n        if(!undo_stack)\n        {\n            command->redo();\n            delete command;\n            continue;\n        }\n\n        undo_stack->push(command);\n    }\n\n    return true;\n}\n\nvoid HotKeyListModel::clear()\n{\n    beginResetModel();\n    entries.clear();\n    endResetModel();\n}\n"
  },
  {
    "path": "src/hotkeysdialog.cpp",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#include \"compat.h\"\n\n#include \"form/ui_hotkeysdialog.h\"\n#include \"hotkeysdialog.h\"\n\nHotKeysDialog::HotKeysDialog(HotKeyListModel &model, QWidget *parent)\n    : QDialog{parent}\n    , ui{std::make_unique<Ui::HotKeysDialog>()}\n{\n    ui->setupUi(this);\n    ui->hot_keys->setModel(&model);\n}\n\nHotKeysDialog::~HotKeysDialog()\n{\n}\n\nvoid HotKeysDialog::refreshBootOptions(const BootEntryListModel &model)\n{\n    ui->hot_keys->refreshBootOptions(model);\n}\n\nvoid HotKeysDialog::setIndexFilter(int index)\n{\n    ui->index_filter->setText(index != -1 ? toHex(static_cast<uint16_t>(index), 4) : \"\");\n}\n\nvoid HotKeysDialog::setMaxKeyCount(int keys)\n{\n    ui->hot_keys->setMaxKeyCount(keys);\n}\n"
  },
  {
    "path": "src/hotkeysview.cpp",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#include \"compat.h\"\n\n#include \"hotkeysview.h\"\n\nHotKeysView::HotKeysView(QWidget *parent)\n    : QTreeView(parent)\n{\n    setItemDelegateForColumn(0, &bootOptionDelegate);\n    setItemDelegateForColumn(1, &keysDelegate);\n\n    connect(this, SIGNAL(clicked(QModelIndex)), SLOT(edit(QModelIndex)));\n}\n\nvoid HotKeysView::refreshBootOptions(const BootEntryListModel &model)\n{\n    bootOptionDelegate.refreshBootOptions(model);\n}\n\nvoid HotKeysView::setMaxKeyCount(qsizetype keys)\n{\n    keysDelegate.setMaximumSequenceLength(keys);\n}\n\nvoid HotKeysView::insertRow()\n{\n    auto index = currentIndex();\n    auto row = index.row();\n    if(model()->insertRow(row + 1))\n        setCurrentIndex(model()->index(row + 1, 0));\n}\n\nvoid HotKeysView::removeCurrentRow() const\n{\n    auto index = currentIndex();\n    if(!index.isValid() || !model()->checkIndex(index))\n        return;\n\n    auto row = index.row();\n    model()->removeRow(row);\n}\n\nvoid HotKeysView::setFilter(const QString &filter)\n{\n    for(int row = 0; row < model()->rowCount(); ++row)\n        setRowHidden(row, {}, !toHex(model()->data(model()->index(row, 0)).value<uint16_t>(), 4).startsWith(filter));\n}\n"
  },
  {
    "path": "src/main.cpp",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#include \"compat.h\"\n\n#include <QApplication>\n#include <QIcon>\n#include <QLibraryInfo>\n#include <QMessageBox>\n#include <QStyleFactory>\n#include <QTranslator>\n\n#include \"efibooteditor.h\"\n#include \"efibooteditorcli.h\"\n\nauto main(int argc, char *argv[]) -> int\n{\n    // Check EFI support\n    auto efi_error_message = EFIBoot::init();\n\n    // Set CLI application first\n    auto app = std::make_unique<QCoreApplication>(argc, argv);\n    QCoreApplication::setApplicationName(APPLICATION_NAME);\n    QCoreApplication::setApplicationVersion(VERSION);\n    QCoreApplication::setOrganizationName(APPLICATION_NAME);\n\n    // Load translation\n#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)\n    const auto translations_path = QLibraryInfo::path(QLibraryInfo::TranslationsPath);\n#else\n    const auto translations_path = QLibraryInfo::location(QLibraryInfo::TranslationsPath);\n#endif\n\n    std::list<QTranslator> translators;\n    for(const char *module: {\"qt\", \"qtbase\", PROJECT_NAME})\n    {\n        auto &translator = translators.emplace_back();\n        if(!translator.load(QLocale::system(), module, \"_\", \"translations/\")\n            && !translator.load(QLocale::system(), module, \"_\", \":/translations/\")\n            && !translator.load(QLocale::system(), module, \"_\", translations_path))\n        {\n            translators.pop_back();\n            continue;\n        }\n\n        QCoreApplication::installTranslator(&translator);\n    }\n\n    // Run CLI if arguments were provided\n    {\n        EFIBootEditorCLI cli{efi_error_message};\n        if(cli.process(*app))\n        {\n            QCoreApplication::processEvents();\n            return 0;\n        }\n    }\n\n    // Switch to GUI\n    app.reset(); // need to destroy QCoreApplication first\n    app = std::make_unique<QApplication>(argc, argv);\n    // Need to reset the application configuration\n    QCoreApplication::setApplicationName(APPLICATION_NAME);\n    QCoreApplication::setApplicationVersion(VERSION);\n    QCoreApplication::setOrganizationName(APPLICATION_NAME);\n    for(auto &translator: translators)\n        QCoreApplication::installTranslator(&translator);\n\n    // Setup GUI style\n#if defined(_WIN32)\n    QApplication::setStyle(QStyleFactory::create(\"Fusion\"));\n#endif\n    QIcon::setThemeSearchPaths(QIcon::themeSearchPaths() << \":/icons\");\n    QIcon::setFallbackThemeName(\"Tango\");\n\n    // Show window and then force reload boot entries\n    EFIBootEditor gui{efi_error_message};\n    gui.show();\n    if(!efi_error_message)\n    {\n        QApplication::processEvents();\n        gui.reloadBootConfiguration();\n    }\n\n    return QCoreApplication::exec();\n}\n"
  },
  {
    "path": "tests/CMakeLists.txt",
    "content": "cmake_minimum_required(VERSION 3.16)\n\nfind_package(Qt${QT_VERSION_MAJOR} COMPONENTS Test REQUIRED)\n\nadd_executable(testefibootdata testefibootdata.cpp)\n\ntarget_link_libraries(testefibootdata\n    PRIVATE\n        Qt${QT_VERSION_MAJOR}::Test\n        ${PROJECT_NAME}-core\n)\n\nadd_test(NAME EFIBootData COMMAND testefibootdata)\n"
  },
  {
    "path": "tests/testefibootdata.cpp",
    "content": "// SPDX-License-Identifier: LGPL-3.0-or-later\n#include \"compat.h\"\n\n#include <QSignalSpy>\n#include <QTest>\n\n#include \"efibootdata.h\"\n\nclass TestEFIBootData: public QObject\n{\n    Q_OBJECT\n\npublic:\n    TestEFIBootData();\n\n    void setRequireEFIEntries(bool value) { this->require_efi_entries = value; }\n\nprivate Q_SLOTS:\n    void testReload() const;\n\n    void showError(const QString &message, const QString &details) const;\n    void showProgress(size_t step, size_t total, const QString &details) const;\n\nprivate:\n    bool efi_supported = true;\n    bool require_efi_entries = true;\n};\n\nTestEFIBootData::TestEFIBootData()\n    : QObject()\n{\n    auto efi_error_message = EFIBoot::init();\n    if(efi_error_message)\n    {\n        this->efi_supported = false;\n        showError(\"EFI support required\", QStringFromStdTString(*efi_error_message));\n    }\n}\n\nvoid TestEFIBootData::showError(const QString &message, const QString &details) const\n{\n    qWarning() << QString(\"ERROR: %0! %1\").arg(message, details) << Qt::endl;\n}\n\nvoid TestEFIBootData::showProgress(size_t step, size_t total, const QString &details) const\n{\n    if(step >= total)\n        total = step + 1;\n\n    qDebug() << QString(\"[%0%] (%1/%2) %3\").arg(100 * step / total).arg(step).arg(total).arg(details);\n}\n\nvoid TestEFIBootData::testReload() const\n{\n    if(!efi_supported)\n    {\n        QSKIP(\"EFI not supported.\");\n    }\n\n    EFIBootData data;\n    QSignalSpy spy(&data, &EFIBootData::error);\n    (void)connect(&data, &EFIBootData::progress, this, &TestEFIBootData::showProgress);\n    (void)connect(&data, &EFIBootData::error, this, &TestEFIBootData::showError);\n\n    data.reload(require_efi_entries);\n\n    QCOMPARE(spy.count(), 0);\n}\n\nauto main(int argc, char *argv[]) -> int\n{\n    QCoreApplication app(argc, argv);\n    TestEFIBootData test;\n    if(qgetenv(\"TEST_ALLOW_NO_EFI_ENTRIES\") == \"true\")\n        test.setRequireEFIEntries(false);\n\n    return QTest::qExec(&test, argc, argv);\n}\n\n#include \"testefibootdata.moc\"\n"
  },
  {
    "path": "translations/efibooteditor_ar.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"ar\" sourcelanguage=\"en_US\">\n<context>\n    <name>BootEntryForm</name>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"169\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"172\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"182\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"185\"/>\n        <source>Description</source>\n        <translation>الوصف</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"198\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"201\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"204\"/>\n        <source>Path</source>\n        <translation>المسار</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"415\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"418\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"478\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"481\"/>\n        <source>Optional data</source>\n        <translation>البيانات الاختيارية</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"421\"/>\n        <source>Optional</source>\n        <translation>اختياري</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"434\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"437\"/>\n        <source>Optional data format</source>\n        <translation>تنسيق البيانات الاختياري</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"6\"/>\n        <source>Boot entry form</source>\n        <translation>نموذج إدخال الاقلاع</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"24\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"27\"/>\n        <source>Error</source>\n        <translation>خطأ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"40\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"43\"/>\n        <source>Error note</source>\n        <translation>ملاحظة الخطأ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"46\"/>\n        <source>This entry placeholder is shown here to indicate it&apos;s referenced in boot order. It won&apos;t be modified on save, just left as is.</source>\n        <translation>يظهر هذا العنصر النائب هنا للإشارة إلى أنه مُشار إليه في ترتيب الاقلاع. لن يتم تعديله عند الحفظ، بل سيبقى كما هو.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"147\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"150\"/>\n        <source>Hot Keys</source>\n        <translation>مفاتيح ساخنة</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;مفاتيح ساخنة&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"188\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry description.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;وصف الإدخال.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"222\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"225\"/>\n        <source>Device path</source>\n        <translation>مسار الجهاز</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;مسار الجهاز.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"280\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"283\"/>\n        <source>Move file path up</source>\n        <translation>نقل مسار الملف لأعلى</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"286\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;نقل مسار الملف لأعلى.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"305\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"308\"/>\n        <source>Move file path down</source>\n        <translation>نقل مسار الملف إلى الأسفل</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"311\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;نقل مسار الملف إلى الأسفل.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"330\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"333\"/>\n        <source>Remove file path</source>\n        <translation>إزالة مسار الملف</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"336\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إزالة مسار الملف.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"355\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"358\"/>\n        <source>Edit file path</source>\n        <translation>تعديل مسار الملف</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"361\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Edit file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;تعديل مسار الملف.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"380\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"383\"/>\n        <source>Add file path</source>\n        <translation>إضافة مسار الملف</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إضافة مسار الملف.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;تنسيق البيانات الاختياري.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"444\"/>\n        <source>BASE64</source>\n        <translation type=\"unfinished\">BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"449\"/>\n        <source>UTF-16</source>\n        <translation type=\"unfinished\">UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"454\"/>\n        <source>UTF-8</source>\n        <translation type=\"unfinished\">UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"459\"/>\n        <source>HEX</source>\n        <translation type=\"unfinished\">HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"484\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry optional data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إدخال البيانات الاختيارية.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"497\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"500\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"503\"/>\n        <source>Attributes</source>\n        <translation>الصفات</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"623\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry category.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;فئة الدخول.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"122\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;مؤشر الدخول.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"540\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Is entry considered for automatic boot?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;هل يعتبر الدخول للاقلاع التلقائي?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"569\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hidden.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;مختفي.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"585\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Force reconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إعادة الاتصال بالقوة.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"534\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"537\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"543\"/>\n        <source>Active</source>\n        <translation>نشيط</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"579\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"582\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"588\"/>\n        <source>Force reconnect</source>\n        <translation>إعادة الاتصال بالقوة</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"563\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"566\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"572\"/>\n        <source>Hidden</source>\n        <translation>مخفي</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"598\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"601\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"604\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"617\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"620\"/>\n        <source>Category</source>\n        <translation>الفئة</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"627\"/>\n        <source>Boot</source>\n        <translation>اقلاع</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"632\"/>\n        <source>App</source>\n        <translation>التطبيق</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"68\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"71\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"74\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"116\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"119\"/>\n        <source>Index</source>\n        <translation>الفهرس</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentryform.cpp\" line=\"117\"/>\n        <source>Couldn&apos;t change optional data format!</source>\n        <translation>لم أتمكن من تغيير تنسيق البيانات الاختياري!</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryListModel</name>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"88\"/>\n        <source>Set Next boot to &quot;%1&quot;</source>\n        <translation>تعيين الاقلاع التالي إلى &quot;%1&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"184\"/>\n        <source>index</source>\n        <translation>الفهرس</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"200\"/>\n        <source>description</source>\n        <translation>الوصف</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"237\"/>\n        <source>optional data</source>\n        <translation>البيانات الاختيارية</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"253\"/>\n        <source>attributes</source>\n        <translation>الصفات</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"269\"/>\n        <source>next boot</source>\n        <translation>الاقلاع التالي</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryWidget</name>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"12\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"221\"/>\n        <source>Boot entry</source>\n        <translation>إدخال الاقلاع</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"36\"/>\n        <source>Next boot</source>\n        <translation>الاقلاع التالي</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"39\"/>\n        <source>Run at next boot</source>\n        <translation>تشغيل عند الاقلاع التالي</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"42\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;When chosen, entry will run at next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;عند الاختيار، سيتم تشغيل الإدخال عند الاقلاع التالي.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"140\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"143\"/>\n        <source>Current boot</source>\n        <translation>لاقلاع الحالي</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This entry is currently booted.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;تم تشغيل هذا الإدخال حاليًا.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"181\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;فهرس إدخال الاقلاع.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"218\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry description, human readable name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;وصف إدخال الاقلاع، اسم قابل للقراءة من قبل البشر.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"67\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"70\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"76\"/>\n        <source>Device path</source>\n        <translation>مسار الجهاز</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"73\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;مسار جهاز الاقلاع.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"113\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data, arguments passed to boot executable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;البيانات الاختيارية، والحجج التي تم تمريرها إلى ملف الاقلاع القابل للتنفيذ.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"178\"/>\n        <source>Boot entry index</source>\n        <translation>فهرس إدخال الاقلاع</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"184\"/>\n        <source>Index</source>\n        <translation>الفهرس</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"212\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"215\"/>\n        <source>Boot entry description</source>\n        <translation>وصف إدخال الاقلاع</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"107\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"110\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"116\"/>\n        <source>Optional data</source>\n        <translation>البيانات الاختيارية</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootData</name>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"111\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"813\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1027\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1361\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1472\"/>\n        <source>%1: not found</source>\n        <translation>%1: لم يعثر عليه</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"120\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"821\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1387\"/>\n        <source>%1: failed deserialization</source>\n        <translation>%1: فشل إلغاء التسلسل</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Error loading entries</source>\n        <translation>خطأ في تحميل الإدخالات</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Failed to load some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>فشل تحميل بعض إدخالات EFI Boot Manager:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Error saving entries</source>\n        <translation>خطأ في حفظ الإدخالات</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Entry %1(%2): duplicated index!</source>\n        <translation>الإدخال %1(%2): فهرس مكرر!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"389\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"419\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"458\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"479\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"487\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"516\"/>\n        <source>Error saving %1</source>\n        <translation>خطأ في الحفظ %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"407\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"470\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"504\"/>\n        <source>Error removing %1</source>\n        <translation>خطأ في الإزالة %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Error importing boot configuration</source>\n        <translation>خطأ في استيراد تكوين الاقلاع</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <source>Couldn&apos;t open selected file (%1).</source>\n        <translation>لم يتمكن من فتح الملف المحدد (%1).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <source>Parser failed: %1</source>\n        <translation>فشل المحلل: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <source>Invalid _Type: %1</source>\n        <translation>نوع غير صالح: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <source>Error exporting boot configuration</source>\n        <translation>خطأ في تصدير تكوين الاقلاع</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <source>Couldn&apos;t open selected file (%1): %2.</source>\n        <translation>لم يتمكن من فتح الملف المحدد (%1): %2.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <source>Couldn&apos;t write into file (%1): %2.</source>\n        <translation>لم أتمكن من الكتابة في الملف (%1): %2.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Error dumping raw EFI data</source>\n        <translation>حدث خطأ أثناء تفريغ بيانات EFI الخام</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Failed to dump some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>فشل في تفريغ بعض إدخالات EFI Boot Manager:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"905\"/>\n        <source>Timeout</source>\n        <translation>نفاذ الوقت</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"921\"/>\n        <source>Apple boot-args</source>\n        <translation>حجج اقلاع Apple</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"937\"/>\n        <source>Firmware actions</source>\n        <translation>إجراءات البرامج الثابتة</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"73\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation>جاري تحميل إدخالات EFI Boot Manager…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"89\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"787\"/>\n        <source>Searching EFI Boot Manager entries…</source>\n        <translation>جاري البحث عن إدخالات EFI Boot Manager…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"116\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"292\"/>\n        <source>Processing EFI Boot Manager entries (%1)…</source>\n        <translation>معالجة إدخالات EFI Boot Manager (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"308\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation>حفظ إدخالات EFI Boot Manager…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"333\"/>\n        <source>Searching old EFI Boot Manager entries…</source>\n        <translation>جاري البحث عن إدخالات EFI Boot Manager القديمة…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"374\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"416\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"447\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"476\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"484\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"491\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"513\"/>\n        <source>Saving EFI Boot Manager entries (%1)…</source>\n        <translation>جاري حفظ إدخالات EFI Boot Manager (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"467\"/>\n        <source>Removing old EFI Boot Manager entries (%1)…</source>\n        <translation>إزالة إدخالات EFI Boot Manager القديمة (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"404\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"501\"/>\n        <source>Removing EFI Boot Manager entries (%1)…</source>\n        <translation>إزالة إدخالات EFI Boot Manager (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"94\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"338\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"792\"/>\n        <source>Couldn&apos;t load EFI Boot Manager variables</source>\n        <translation>تعذر تحميل متغيرات EFI Boot Manager</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"100\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"799\"/>\n        <source>Couldn&apos;t find any EFI Boot Manager variables</source>\n        <translation>لم يتم العثور على أي متغيرات EFI Boot Manager</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"529\"/>\n        <source>Importing boot configuration…</source>\n        <translation>استيراد تكوين الاقلاع…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"565\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"770\"/>\n        <source>Exporting boot configuration…</source>\n        <translation>تصدير تكوين الاقلاع…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"587\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"809\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"875\"/>\n        <source>Exporting EFI Boot Manager entries (%1)…</source>\n        <translation>جاري تصدير إدخالات EFI Boot Manager (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1013\"/>\n        <source>Importing boot configuration from JSON…</source>\n        <translation>استيراد تكوين الاقلاع من JSON…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1032\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1366\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1477\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1531\"/>\n        <source>Importing EFI Boot Manager entries (%1)…</source>\n        <translation>جاري استيراد إدخالات EFI Boot Manager (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1035\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1376\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>%1: %2 expected</source>\n        <translation>%1: %2 متوقع</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1043\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1048\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1053\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <source>number</source>\n        <translation>رقم</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1058\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1063\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1068\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1073\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1078\"/>\n        <source>bool</source>\n        <translation>منطقي</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1109\"/>\n        <source>%1: unknown boot manager capability</source>\n        <translation>قدرة مدير الاقلاع مجهولة%1:</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1122\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1166\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1212\"/>\n        <source>array</source>\n        <translation>صفائف</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1333\"/>\n        <source>string</source>\n        <translation>سلسلة</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1156\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1192\"/>\n        <source>%1: unknown os indication</source>\n        <translation>%1: إشارة نظام تشغيل مجهول</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1083\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1235\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1264\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1290\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1309\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1328\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>object</source>\n        <translation>كائن</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <source>hexadecimal number</source>\n        <translation>رقم سداسي عشري</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1270\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1315\"/>\n        <source>%1: failed parsing</source>\n        <translation>%1: فشل التحليل</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Failed to import some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>فشل استيراد بعض إدخالات EFI Boot Manager:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1347\"/>\n        <source>Importing boot configuration from raw dump…</source>\n        <translation>استيراد تكوين الاقلاع من الملف الخام…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1379\"/>\n        <source>object(raw_data: string, efi_attributes: number)</source>\n        <extracomment>Expected JSON structure, thrown as error description. raw_data and efi_attributes are field names in JSON file</extracomment>\n        <translation>الكائن (البيانات الخام: سلسلة، سمات efi: رقم)</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"15\"/>\n        <source>Boot</source>\n        <translation>الاقلاع</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"16\"/>\n        <source>Driver</source>\n        <translation>سائق</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"17\"/>\n        <source>System Preparation</source>\n        <translation>إعداد النظام</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"18\"/>\n        <source>Platform Recovery</source>\n        <translation>استعادة المنصة</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditor</name>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"18\"/>\n        <source>EFI Boot Editor</source>\n        <translation>محرر اقلاع EFI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"71\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"412\"/>\n        <source>Boot</source>\n        <translation>اقلاع</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"74\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"98\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"101\"/>\n        <source>Boot entries</source>\n        <translation>إدخالات الاقلاع</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"77\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"104\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Boot entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;قائمة إدخالات الاقلاع.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"133\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"415\"/>\n        <source>Driver</source>\n        <translation>سائق</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"136\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"160\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"163\"/>\n        <source>Driver entries</source>\n        <translation>إدخالات السائق</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"139\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"166\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Driver entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;قائمة إدخالات السائق.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"195\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"418\"/>\n        <source>System Preparation</source>\n        <translation>إعداد النظام</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"198\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"222\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"225\"/>\n        <source>SysPrep entries</source>\n        <translation>إدخالات SysPrep</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"201\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of SysPrep entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;قائمة إدخالات SysPrep.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"257\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"421\"/>\n        <source>Platform Recovery</source>\n        <translation>استعادة المنصة</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"260\"/>\n        <source>PlatformRecovery entries</source>\n        <translation>إدخالات استرداد المنصة</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"263\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of PlatformRecovery entries (READONLY).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;قائمة إدخالات PlatformRecovery (للقراءة فقط).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"284\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"287\"/>\n        <source>PlatformRecovery entries (READONLY)</source>\n        <translation>إدخالات استرداد النظام الأساسي (للقراءة فقط)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"346\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"349\"/>\n        <source>Add new entry</source>\n        <translation>إضافة إدخال جديد</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"352\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to add new boot entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;انقر هنا لإضافة إدخال اقلاع جديد.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"377\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"380\"/>\n        <source>Duplicate entry</source>\n        <translation>إدخال مكرر</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"383\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Duplicate entry&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إدخال مكرر&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"408\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"411\"/>\n        <source>Remove entry</source>\n        <translation>إزالة الإدخال</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"414\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to remove currently selected entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;انقر هنا لإزالة الإدخال المحدد حاليًا.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"439\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"442\"/>\n        <source>Move entry up</source>\n        <translation>نقل الإدخال لأعلى</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"445\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;انقر هنا لتحريك الإدخال المحدد حاليًا لأعلى.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"470\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"473\"/>\n        <source>Move entry down</source>\n        <translation>نقل الإدخال إلى الأسفل</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"476\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;انقر هنا لتحريك الإدخال المحدد حاليًا لأسفل.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"501\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"504\"/>\n        <source>Reorder entries</source>\n        <translation>إعادة ترتيب الإدخالات</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"507\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click here to adjust the order of all entries based on their position on the list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;انقر هنا لتعديل ترتيب جميع الإدخالات بناءً على موقعها في القائمة.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"599\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"608\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Global settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;الإعدادات العالمية.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"602\"/>\n        <source>Global</source>\n        <translation>عالمي</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"632\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"635\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"654\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"657\"/>\n        <source>Boot manager timeout</source>\n        <translation>مهلة مدير الاقلاع</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"638\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"660\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot manager timeout.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;مهلة مدير التمهيد.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"663\"/>\n        <source>s</source>\n        <translation>Arabic</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"674\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"677\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"686\"/>\n        <source>Firmware details</source>\n        <translation>تفاصيل البرامج الثابتة</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"680\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"689\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;تفاصيل البرامج الثابتة.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"683\"/>\n        <source>Firmware</source>\n        <translation>البرامج الثابتة</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"719\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"722\"/>\n        <source>Available firmware features</source>\n        <translation>ميزات البرامج الثابتة المتوفرة</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"725\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware features.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ميزات البرامج الثابتة المتوفرة.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"728\"/>\n        <source>Features</source>\n        <translation>الميزات</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"737\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"740\"/>\n        <source>Platform supports reporting of deferred capsule processing by creation of result variable</source>\n        <translation>تدعم المنصة الإبلاغ عن معالجة الكبسولة المؤجلة عن طريق إنشاء متغير النتيجة</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"743\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports reporting of deferred capsule processing by creation of result variable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;تدعم المنصة الإبلاغ عن معالجة الكبسولة المؤجلة عن طريق إنشاء متغير النتيجة.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"746\"/>\n        <source>Capsule Reporting</source>\n        <translation>تقارير الكبسولة</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"756\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"759\"/>\n        <source>Firmware supports timestamp based revocation</source>\n        <translation>يدعم البرنامج الثابت إلغاء الطابع الزمني</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"762\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware supports timestamp based revocation.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;يدعم البرنامج الثابت إلغاء الطابع الزمني.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"765\"/>\n        <source>Timestamp based revocation</source>\n        <translation>إلغاء بناءً على الطابع الزمني</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"775\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"778\"/>\n        <source>Platform supports processing of Firmware Management Protocol update capsule</source>\n        <translation>تدعم المنصة معالجة كبسولة تحديث بروتوكول إدارة البرامج الثابتة</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"781\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of Firmware Management Protocol update capsule.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;تدعم المنصة معالجة كبسولة تحديث بروتوكول إدارة البرامج الثابتة.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"784\"/>\n        <source>FMP Capsule</source>\n        <translation>كبسولة FMP</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"794\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"797\"/>\n        <source>Platform supports processing of file capsules</source>\n        <translation>تدعم المنصة معالجة كبسولات الملفات</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"800\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of file capsules.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;تدعم المنصة معالجة كبسولات الملفات.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"803\"/>\n        <source>File Capsule</source>\n        <translation>كبسولة الملف</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"828\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"831\"/>\n        <source>Available firmware actions</source>\n        <translation>إجراءات البرامج الثابتة المتاحة</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware actions.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إجراءات البرامج الثابتة المتاحة.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"837\"/>\n        <source>Actions</source>\n        <translation>أجراءات</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"846\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"849\"/>\n        <source>Stop at a firmware user interface on the next boot</source>\n        <translation>توقف عند واجهة مستخدم البرامج الثابتة في الاقلاع التالي</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Stop at a firmware user interface on the next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;توقف عند واجهة مستخدم البرامج الثابتة في الاقلاع التالي.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"855\"/>\n        <source>Boot to firmware UI</source>\n        <translation>الاقلاع إلى واجهة المستخدم الخاصة بالبرامج الثابتة</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"862\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"865\"/>\n        <source>Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot</source>\n        <translation>تشغيل جمع التكوين الحالي والإبلاغ عن البيانات المحدثة إلى جدول تكوين نظام EFI في الاقلاع التالي</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;تشغيل جمع التكوين الحالي والإبلاغ عن البيانات المحدثة إلى جدول تكوين نظام EFI في الاقلاع التالي.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"871\"/>\n        <source>Collect current config</source>\n        <translation>جمع التكوين الحالي</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"878\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"881\"/>\n        <source>Indicate that Platform-defined recovery should commence upon reboot</source>\n        <translation>يشير إلى أنه يجب أن تبدأ عملية الاسترداد المحددة بواسطة النظام الأساسي عند إعادة الاقلاع</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"884\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that Platform-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;يشير إلى أنه يجب أن تبدأ عملية الاسترداد المحددة بواسطة النظام الأساسي عند إعادة الاقلاع.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"887\"/>\n        <source>Start Platform recovery</source>\n        <translation>بدء استرداد النظام الأساسي</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"894\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"897\"/>\n        <source>Indicate that OS-defined recovery should commence upon reboot</source>\n        <translation>يشير إلى أنه يجب أن تبدأ عملية الاسترداد المحددة بواسطة نظام التشغيل عند إعادة الاقلاع</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"900\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that OS-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;يشير إلى أنه يجب أن تبدأ عملية الاسترداد المحددة بواسطة نظام التشغيل عند إعادة الاقلاع.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"903\"/>\n        <source>Start OS recovery</source>\n        <translation>بدء استرداد نظام التشغيل</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"932\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"935\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"944\"/>\n        <source>Secure boot settings</source>\n        <translation>الاعدادات للاقلاع الآمن</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"938\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"947\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Secure boot settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إعدادات الاقلاع الآمن.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"941\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1025\"/>\n        <source>Secure Boot</source>\n        <translation>الاقلاع الآمن</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"978\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"981\"/>\n        <source>Defines whether the system is currently operating in Audit Mode</source>\n        <translation>يحدد ما إذا كان النظام يعمل حاليًا في وضع التدقيق</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"984\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Audit Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;يحدد ما إذا كان النظام يعمل حاليًا في وضع التدقيق.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"987\"/>\n        <source>Audit Mode</source>\n        <translation>وضع التدقيق</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"997\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1000\"/>\n        <source>Defines whether the system is currently operating in Deployed Mode</source>\n        <translation>يحدد ما إذا كان النظام يعمل حاليًا في الوضع المنتشر</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1003\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Deployed Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;يحدد ما إذا كان النظام يعمل حاليًا في الوضع المنتشر.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1006\"/>\n        <source>Deployed Mode</source>\n        <translation>الوضع المنتشر</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1016\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1019\"/>\n        <source>Defines whether the platform firmware is operating with Secure Boot enabled</source>\n        <translation>يحدد ما إذا كانت البرامج الثابتة للمنصة تعمل مع تمكين الاقلاع الآمن</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1022\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the platform firmware is operating with Secure Boot enabled.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;يحدد ما إذا كانت البرامج الثابتة للمنصة تعمل مع تمكين للاقلاع الآمن.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1035\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1038\"/>\n        <source>Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables</source>\n        <translation>يحدد ما إذا كان النظام يجب أن يتطلب المصادقة أم لا عند طلب متغيرات سياسة الاقلاع الآمن</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1041\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;يحدد ما إذا كان النظام يجب أن يتطلب المصادقة أم لا عند طلب متغيرات سياسة للاقلاع الآمن.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1044\"/>\n        <source>Setup Mode</source>\n        <translation>وضع الإعداد</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1054\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1057\"/>\n        <source>Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys</source>\n        <translation>يحدد ما إذا كانت متغيرات سياسة الاقلاع الأمني قد تم تعديلها بواسطة أي شخص آخر غير بائع النظام الأساسي أو حامل المفاتيح المقدمة من البائع</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;يحدد ما إذا كانت متغيرات سياسة الاقلاع الأمني قد تم تعديلها بواسطة أي شخص آخر غير بائع النظام الأساسي أو حامل المفاتيح المقدمة من البائع.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1063\"/>\n        <source>Vendor Keys</source>\n        <translation>مفاتيح البائع</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1074\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1077\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1086\"/>\n        <source>Apple settings</source>\n        <translation>إعدادات Apple</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1080\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apple settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إعدادات Apple.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1083\"/>\n        <source>Apple</source>\n        <translation type=\"unfinished\">Apple</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1113\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1116\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1129\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1132\"/>\n        <source>macOS boot arguments</source>\n        <translation>حجج اقلاع macOS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1119\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;macOS boot arguments.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;حجج اقلاع macOS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1161\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1164\"/>\n        <source>Undo stack</source>\n        <translation>التراجع عن المكدس</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1167\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo stack&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;التراجع عن المكدس&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1194\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;قائمة الملفات.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1214\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Help menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;قائمة التعليمات.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1255\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Exit the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;الخروج من البرنامج.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1272\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apply changes to the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;تطبيق التغييرات على النظام.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1289\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reloads EFI data from the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إعادة تحميل بيانات EFI من النظام.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1306\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Show information about the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;عرض المعلومات حول البرنامج.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1320\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Export current entries into JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;تصدير الإدخالات الحالية إلى JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1337\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Import EFI data from JSON dump.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;استيراد بيانات EFI من ملف JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1354\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dumps raw EFI data for debugging purposes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;يقوم بإفراغ بيانات EFI الخام لأغراض التصحيح.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1362\"/>\n        <source>&amp;Undo</source>\n        <translation>&amp;تراجع</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1365\"/>\n        <source>Undo</source>\n        <translation>التراجع</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1368\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;التراجع&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1371\"/>\n        <source>Ctrl+Z</source>\n        <translation type=\"unfinished\">Ctrl+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1379\"/>\n        <source>&amp;Redo</source>\n        <translation>&amp;أعدة</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1382\"/>\n        <source>Redo</source>\n        <translation>إعادة</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1385\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Redo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إعادة&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1388\"/>\n        <source>Ctrl+Shift+Z</source>\n        <translation type=\"unfinished\">Ctrl+Shift+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1396\"/>\n        <source>Hot &amp;keys</source>\n        <translation>مفاتيح التشغيل السريع</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1399\"/>\n        <source>Hot Keys</source>\n        <translation>مفاتيح التشغيل السريع</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1402\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;مفاتيح التشغيل السريع&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"593\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"596\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"605\"/>\n        <source>Global settings</source>\n        <translation>الإعدادات العالمية</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"641\"/>\n        <source>Timeout</source>\n        <translation>نفاذ الوقت</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1122\"/>\n        <source>Boot args</source>\n        <translation>وسيطات الاقلاع</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1188\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1191\"/>\n        <source>File</source>\n        <translation>ملف</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1197\"/>\n        <source>&amp;File</source>\n        <translation>&amp;ملف</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1208\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1211\"/>\n        <source>Help</source>\n        <translation>التعليمات</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1217\"/>\n        <source>&amp;Help</source>\n        <translation>&amp;التعليمات</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1225\"/>\n        <source>&amp;Edit</source>\n        <translation>&amp;تحرير</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1249\"/>\n        <source>&amp;Quit</source>\n        <translation>&amp;إنهاء</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1252\"/>\n        <source>Quit</source>\n        <translation>هروب</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1258\"/>\n        <source>Ctrl+Q</source>\n        <translation type=\"unfinished\">Ctrl+Q</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1266\"/>\n        <source>&amp;Save</source>\n        <translation>&amp;حفظ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1269\"/>\n        <source>Save</source>\n        <translation>حفط</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1275\"/>\n        <source>Ctrl+S</source>\n        <translation type=\"unfinished\">Ctrl+S</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1283\"/>\n        <source>&amp;Reload</source>\n        <translation>&amp;إعادة التحميل</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1286\"/>\n        <source>Reload</source>\n        <translation>إعادة التحميل</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1292\"/>\n        <source>Ctrl+R</source>\n        <translation type=\"unfinished\">Ctrl+R</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1300\"/>\n        <source>About &amp;EFI Boot Editor</source>\n        <translation>حول محرر الاقلاع &amp;EFI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1303\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"29\"/>\n        <source>About EFI Boot Editor</source>\n        <translation>حول محرر اقلاع EFI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1314\"/>\n        <source>&amp;Export</source>\n        <translation>&amp;تصدير</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1317\"/>\n        <source>Export</source>\n        <translation>تصدير</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1323\"/>\n        <source>Ctrl+E</source>\n        <translation type=\"unfinished\">Ctrl+E</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1331\"/>\n        <source>&amp;Import</source>\n        <translation>&amp;استيراد</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1334\"/>\n        <source>Import</source>\n        <translation>استيراد</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1340\"/>\n        <source>Ctrl+I</source>\n        <translation type=\"unfinished\">Ctrl+I</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1348\"/>\n        <source>&amp;Dump raw EFI data</source>\n        <translation>&amp;تفريغ بيانات EFI الخام</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1351\"/>\n        <source>Dump raw EFI data</source>\n        <translation>تفريغ بيانات EFI الخام</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"26\"/>\n        <source>Working…</source>\n        <translation>عمل…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"92\"/>\n        <source>Undo %1</source>\n        <translation>تراجع%1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"95\"/>\n        <source>Redo %1</source>\n        <translation>اعادة %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"137\"/>\n        <source>Are you sure you want to reload the entries?&lt;br/&gt;ALL of your changes will be lost!</source>\n        <translation>هل أنت متأكد أنك تريد إعادة تحميل الإدخالات؟&lt;br/&gt;سيتم فقدان كافة تغييراتك!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"162\"/>\n        <source>Are you sure you want to reorder the boot entries?&lt;br/&gt;All indexes will be overwritten!</source>\n        <translation>هل أنت متأكد أنك تريد إعادة ترتيب إدخالات الاقلاع؟&lt;br/&gt;سيتم استبدال كافة الفهارس!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"221\"/>\n        <source>Are you sure you want to save?&lt;br/&gt;Your EFI configuration will be overwritten!</source>\n        <translation>هل أنت متأكد أنك تريد الحفظ؟&lt;br/&gt;سيتم استبدال تكوين EFI الخاص بك!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <source>Open boot configuration dump</source>\n        <translation>فتح ملف تفريغ تكوين الاقلاع</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>JSON documents (*.json)</source>\n        <translation>JSON وثائق(*.json)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <source>Save boot configuration dump</source>\n        <translation>حفظ تفريغ تكوين الاقلاع</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>Save raw EFI dump</source>\n        <translation>حفظ تفريغ EFI الخام</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"31\"/>\n        <source>&lt;h1&gt;EFI Boot Editor&lt;/h1&gt;&lt;p&gt;Version &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Boot Editor for (U)EFI based systems.&lt;/p&gt;</source>\n        <extracomment>About dialog</extracomment>\n        <translation>&lt;h1&gt;محرر اقلاع EFIr&lt;/h1&gt;&lt;p&gt;الاصدار&lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;محرر الاقلاع للأنظمة المستندة إلى (U)EFI.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"45\"/>\n        <source>&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;Website&lt;/a&gt;&lt;/p&gt;&lt;p&gt;The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.&lt;/p&gt;&lt;p&gt;License: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL Version 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;On Linux uses &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; for EFI variables access.&lt;/p&gt;&lt;p&gt;Uses Tango Icons as fallback icons.&lt;/p&gt;</source>\n        <extracomment>About dialog details</extracomment>\n        <translation>&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;موقع الويب&lt;/a&gt;&lt;/p&gt;&lt;p&gt;يتم توفير البرنامج كما هو بدون أي ضمان من أي نوع، بما في ذلك ضمان التصميم وقابلية التسويق والملاءمة لغرض معين.&lt;/p&gt;&lt;p&gt;الترخيص: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL الإصدار 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;على Linux يستخدم &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; للوصول إلى متغيرات EFI.&lt;/p&gt;&lt;p&gt;يستخدم أيقونات Tango كأيقونات احتياطية.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"330\"/>\n        <source>Reorder %1 entries</source>\n        <translation>إعادة ترتيب %1 إدخالات</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"453\"/>\n        <source>Are you sure you want to quit?</source>\n        <translation>هل أنت متأكد أنك تريد الخروج؟</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"123\"/>\n        <source>EFI support required</source>\n        <translation>مطلوب دعم EFI</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditorCLI</name>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"13\"/>\n        <source>Boot Editor for (U)EFI based systems.</source>\n        <translation>محرر التمهيد لأنظمة تعتمد على (U)EFI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <source>Export configuration.</source>\n        <translation>تصدير التكوين.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>FILE</source>\n        <translation>ملف</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <source>Dump raw EFI data.</source>\n        <translation>تفريغ بيانات EFI الخام.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>Import configuration from JSON (either from export or raw dump).</source>\n        <translation>استيراد التكوين من JSON (إما من التصدير أو التفريغ الخام).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"19\"/>\n        <source>Force import, don&apos;t ask for confirmation.</source>\n        <translation>فرض الاستيراد، لا تطلب التأكيد.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"26\"/>\n        <source>EFI support required</source>\n        <translation>مطلوب دعم EFI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"45\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation>جاري تحميل إدخالات EFI Boot Manager…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"47\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"57\"/>\n        <source>Exporting boot configuration…</source>\n        <translation>تصدير تكوين الاقلاع…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"67\"/>\n        <source>Importing boot configuration…</source>\n        <translation>استيراد تكوين الاقلاع…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Loaded %0 %1 entries</source>\n        <translation>تم تحميل %0 %1 إدخالات</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <source>Boot</source>\n        <translation>اقلاع</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <source>Driver</source>\n        <translation>سائق</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <source>System Preparation</source>\n        <translation>إعداد النظام</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Hot Key</source>\n        <translation>مفتاح التشغيل السريع</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"78\"/>\n        <source>Are you sure you want to save?\nYour EFI configuration will be overwritten!</source>\n        <translation>هل أنت متأكد من رغبتك في الحفظ؟\nسيتم استبدال إعدادات EFI الخاصة بك!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"86\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation>حفظ إدخالات EFI Boot Manager…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"98\"/>\n        <source>ERROR: %0! %1</source>\n        <translation>خطأ: %0! %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"114\"/>\n        <source>Finished</source>\n        <translation>انتهى</translation>\n    </message>\n</context>\n<context>\n    <name>EFIKeySequenceEdit</name>\n    <message>\n        <location filename=\"../src/efikeysequenceedit.cpp\" line=\"109\"/>\n        <source>Press hot key</source>\n        <translation>اضغط على المفتاح الساخن</translation>\n    </message>\n</context>\n<context>\n    <name>FilePathDialog</name>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"12\"/>\n        <source>File path editor</source>\n        <translation>محرر مسار الملف</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"47\"/>\n        <source>PCI</source>\n        <translation type=\"unfinished\">PCI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"80\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"86\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"196\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"202\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"218\"/>\n        <source>Function</source>\n        <translation>وظيفة</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"121\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"127\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"143\"/>\n        <source>Device</source>\n        <translation>الجهاز</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"721\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"727\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"742\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"835\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"841\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"856\"/>\n        <source>HID</source>\n        <translation type=\"unfinished\">HID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"761\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"767\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"782\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"896\"/>\n        <source>UID</source>\n        <translation type=\"unfinished\">UID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1813\"/>\n        <source>USB</source>\n        <translation type=\"unfinished\">USB</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1819\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إعدادات USB.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1893\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1909\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3688\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3710\"/>\n        <source>Interface</source>\n        <translation>واجهة</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7442\"/>\n        <source>Vendor</source>\n        <translation>البائع</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7445\"/>\n        <source>Vendor settings</source>\n        <translation>إعدادات البائع</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7448\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إعدادات البائع.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1778\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1793\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5824\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6348\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7117\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7546\"/>\n        <source>GUID</source>\n        <translation type=\"unfinished\">GUID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5539\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7587\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7850\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7853\"/>\n        <source>Data format</source>\n        <translation>تنسيق البيانات</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5542\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7590\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7856\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;تنسيق البيانات.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5546\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5869\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7860\"/>\n        <source>BASE64</source>\n        <translation type=\"unfinished\">BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1168\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5551\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5874\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7865\"/>\n        <source>UTF-16</source>\n        <translation type=\"unfinished\">UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1173\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5556\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7604\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7870\"/>\n        <source>UTF-8</source>\n        <translation type=\"unfinished\">UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5561\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7875\"/>\n        <source>HEX</source>\n        <translation type=\"unfinished\">HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5523\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5901\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7888\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7891\"/>\n        <source>Data</source>\n        <translation>بيانات</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7894\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;بيانات.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7565\"/>\n        <source>Vendor data</source>\n        <translation>بيانات البائع</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7481\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7757\"/>\n        <source>Type</source>\n        <translation>النوع</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7478\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7500\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;النوع.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7504\"/>\n        <source>HW</source>\n        <translation type=\"unfinished\">HW</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7509\"/>\n        <source>MSG</source>\n        <translation type=\"unfinished\">MSG</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7514\"/>\n        <source>MEDIA</source>\n        <translation>وسائط</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2292\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2298\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2313\"/>\n        <source>MAC</source>\n        <translation type=\"unfinished\">MAC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2265\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;MAC settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إعدادات MAC.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2374\"/>\n        <source>IPv4</source>\n        <translation type=\"unfinished\">IPv4</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2380\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv4 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv4 اعدادات.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2569\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2591\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2925\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2931\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2947\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4110\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4116\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4132\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6616\"/>\n        <source>Protocol</source>\n        <translation>البروتوكول</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3003\"/>\n        <source>Static</source>\n        <translation>ثابت</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2692\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Subnet mask.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;قناع الشبكة الفرعية.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2730\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5479\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5486\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5503\"/>\n        <source>IPv6</source>\n        <translation type=\"unfinished\">IPv6</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2736\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv6 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv6 اعدادات.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3008\"/>\n        <source>Stateless auto-configuration</source>\n        <translation>التهيئة التلقائية بدون جنسية</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3013\"/>\n        <source>Stateful auto-configuration</source>\n        <translation>تكوين تلقائي بحالة</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3920\"/>\n        <source>SATA</source>\n        <translation type=\"unfinished\">SATA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SATA settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SATA اعدادات.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1387\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1393\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1409\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1658\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1664\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1679\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3900\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4035\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4041\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4057\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4191\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4197\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4212\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4496\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4502\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4610\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4616\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4988\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5009\"/>\n        <source>LUN</source>\n        <translation type=\"unfinished\">LUN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4885\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4901\"/>\n        <source>URI</source>\n        <translation type=\"unfinished\">URI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6105\"/>\n        <source>Disk</source>\n        <translation>القرص</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6102\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;القرص.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6123\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6126\"/>\n        <source>Choose disk</source>\n        <translation>اختر القرص</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6129\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Choose disk from discovered in the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;اختر القرص من المكتشف في النظام.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6133\"/>\n        <source>Custom</source>\n        <translation>مخصص</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6147\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6150\"/>\n        <source>Reload drives</source>\n        <translation>إعادة تحميل محركات الأقراص</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reload system drives list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إعادة تحميل قائمة محركات النظام.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6343\"/>\n        <source>MBR</source>\n        <translation type=\"unfinished\">MBR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6177\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6183\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6199\"/>\n        <source>Partition</source>\n        <translation>تقسيم</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6720\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6741\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6797\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6812\"/>\n        <source>Name</source>\n        <translation>الاسم</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7176\"/>\n        <source>BIOS Boot Specification</source>\n        <translation>مواصفات اقلاع BIOS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7405\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7411\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7427\"/>\n        <source>Description</source>\n        <translation>الوصف</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7639\"/>\n        <source>End</source>\n        <translation>انهاء</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7669\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7672\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7678\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7797\"/>\n        <source>Sub-Type</source>\n        <translation>النوع الفرعي</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7675\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7697\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;النوع الفرعي.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7701\"/>\n        <source>End This Instance</source>\n        <translation>إنهاء هذه الحالة</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7706\"/>\n        <source>End Entire</source>\n        <translation>نهاية بالكامل</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7718\"/>\n        <source>Unknown</source>\n        <translation>مجهول</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"50\"/>\n        <source>The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.</source>\n        <translation>يحدد مسار الجهاز لـ PCI المسار إلى عنوان مساحة تكوين PCI لجهاز PCI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"53\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;يحدد مسار الجهاز لـ PCI المسار إلى عنوان مساحة تكوين PCI لجهاز PCI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"77\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"99\"/>\n        <source>PCI Function Number.</source>\n        <translation>رقم وظيفة PCI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"83\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"105\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Function Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;رقم وظيفة PCI..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"118\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"140\"/>\n        <source>PCI Device Number.</source>\n        <translation>رقم وظيفة PCI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"124\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Device Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;رقم جهاز PCI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"163\"/>\n        <source>PCCARD</source>\n        <translation type=\"unfinished\">PCCARD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"166\"/>\n        <source>PCCARD Settings.</source>\n        <translation>إعدادات PCCARD.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCCARD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إعدادات PCCARD..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"193\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"215\"/>\n        <source>Function Number (0 = First Function).</source>\n        <translation>رقم الدالة (0 = الدالة الأولى).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"199\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"221\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Function Number (0 = First Function).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;رقم الدالة (0 = الدالة الأولى)..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"238\"/>\n        <source>Memory Mapped</source>\n        <translation>الذاكرة المرسومة</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"241\"/>\n        <source>Memory Mapped Settings.</source>\n        <translation>إعدادات الذاكرة المخصصة.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Memory Mapped Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إعدادات الذاكرة المخصصة..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"268\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"290\"/>\n        <source>The type of memory to allocate.</source>\n        <translation>نوع الذاكرة التي يجب تخصيصها.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"271\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"293\"/>\n        <source>Memory Type</source>\n        <translation>نوع الذاكرة</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"274\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"296\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The type of memory to allocate.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;نوع الذاكرة التي يجب تخصيصها.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"300\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1584\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1738\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1753\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3145\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3160\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4416\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4437\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6868\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6883\"/>\n        <source>Reserved</source>\n        <translation>محجوز</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"305\"/>\n        <source>Loader Code</source>\n        <translation>الكود المحمل</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"310\"/>\n        <source>Loader Data</source>\n        <translation>بيانات المحمل</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"315\"/>\n        <source>Boot Services Code</source>\n        <translation>كود خدمات الاقلاع</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"320\"/>\n        <source>Boot Services Data</source>\n        <translation>بيانات خدمات الاقلاع</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"325\"/>\n        <source>Runtime Services Code</source>\n        <translation>كود خدمات وقت التشغيل</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"330\"/>\n        <source>Runtime Services Data</source>\n        <translation>بيانات خدمات وقت التشغيل</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"335\"/>\n        <source>Conventional</source>\n        <translation>عادي</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"340\"/>\n        <source>Unusable</source>\n        <translation>غير صالح للاستخدام</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"345\"/>\n        <source>ACPI Reclaim</source>\n        <translation>استعادة ACPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"350\"/>\n        <source>ACPI Memory NVS</source>\n        <translation>ذاكرة ACPI NVS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"355\"/>\n        <source>Memory Mapped IO</source>\n        <translation>ذاكرة مُعيَّنة IO</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"360\"/>\n        <source>Memory Mapped IO Port Space</source>\n        <translation>مساحة منفذ الإدخال/الإخراج المخصصة للذاكرة</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"365\"/>\n        <source>Pal Code</source>\n        <translation>كود الصديق</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"370\"/>\n        <source>Persistent</source>\n        <translation>مثابر</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"375\"/>\n        <source>Unaccepted</source>\n        <translation>غير مقبول</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"383\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7013\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7034\"/>\n        <source>Starting Memory Address.</source>\n        <translation>عنوان الذاكرة الأولية.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"386\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"407\"/>\n        <source>Start Address</source>\n        <translation>عنوان البداية</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"389\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7019\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7040\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;عنوان الذاكرة الأولية.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"423\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7053\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7074\"/>\n        <source>Ending Memory Address.</source>\n        <translation>عنوان الذاكرة النهائية.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"426\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"432\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"447\"/>\n        <source>End Address</source>\n        <translation>عنوان النهاية</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"429\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7080\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ending Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;عنوان الذاكرة النهائية.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"467\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"522\"/>\n        <source>Controller</source>\n        <translation>وحدة التحكم</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"470\"/>\n        <source>Controller settings.</source>\n        <translation>إعدادات وحدة التحكم.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"473\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إعدادات وحدة التحكم.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"519\"/>\n        <source>Controller number.</source>\n        <translation>رقم المراقب.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"525\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;رقم المراقب.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"542\"/>\n        <source>BMC</source>\n        <translation type=\"unfinished\">BMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"545\"/>\n        <source>The Device Path for a Baseboard Management Controller (BMC) host interface.</source>\n        <translation>مسار الجهاز لواجهة مضيف وحدة التحكم في إدارة اللوحة الأساسية (BMC).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"548\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for a Baseboard Management Controller (BMC) host interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;مسار الجهاز لواجهة مضيف وحدة التحكم في إدارة اللوحة الأساسية (BMC).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"602\"/>\n        <source>The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.</source>\n        <translation>نوع واجهة مضيف وحدة تحكم إدارة اللوحة الأساسية (BMC):\n0x00 - غير معروف.\n0x01 - KCS: نمط وحدة تحكم لوحة المفاتيح.\n0x02 - SMIC: شريحة واجهة إدارة الخادم.\n0x03 - BT: نقل الكتلة.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"579\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"589\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2332\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2354\"/>\n        <source>Interface Type</source>\n        <translation>نوع الواجهة</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"582\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"612\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;نوع واجهة مضيف وحدة تحكم إدارة اللوحة الأساسية (BMC):\n0x00 - غير معروف.\n0x01 - KCS: نمط وحدة تحكم لوحة المفاتيح.\n0x02 - SMIC: شريحة واجهة إدارة الخادم.\n0x03 - BT: نقل الكتلة.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"625\"/>\n        <source>Keyboard Controller Style</source>\n        <translation>نمط وحدة تحكم لوحة المفاتيح</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"630\"/>\n        <source>Server Management Interface Chip</source>\n        <translation>شريحة واجهة إدارة الخادم</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"635\"/>\n        <source>Block Transfer</source>\n        <translation>نقل الكتلة</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"643\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"664\"/>\n        <source>Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.</source>\n        <translation>عنوان القاعدة (سواءً مُخصَّص للذاكرة أو مُخصَّص للإدخال/الإخراج) لوحدة التحكم BMC. إذا كان البت الأقل أهمية في الحقل هو 1، يكون العنوان في مساحة الإدخال/الإخراج؛ وإلا، يكون العنوان مُخصَّصًا للذاكرة. راجع مواصفات واجهة IPMI لمزيد من تفاصيل الاستخدام.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"667\"/>\n        <source>Base Address</source>\n        <translation>عنوان القاعدة</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"670\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;عنوان القاعدة (سواءً مُخصَّص للذاكرة أو مُخصَّص للإدخال والإخراج) لوحدة التحكم BMC. إذا كان البت الأقل أهمية في الحقل هو 1، يكون العنوان في مساحة الإدخال والإخراج؛ وإلا، يكون العنوان مُخصَّصًا للذاكرة. راجع مواصفات واجهة IPMI لمزيد من تفاصيل الاستخدام.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"688\"/>\n        <source>ACPI</source>\n        <translation type=\"unfinished\">ACPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"805\"/>\n        <source>This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.</source>\n        <translation>يحتوي مسار الجهاز هذا على معرفات أجهزة ACPI التي تمثل معرف الأجهزة Plug and Play للجهاز ومعرفه الدائم الفريد المقابل.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"808\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;يحتوي مسار الجهاز هذا على معرفات أجهزة ACPI التي تمثل معرف الأجهزة Plug and Play للجهاز ومعرفه الدائم الفريد المقابل.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"718\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"739\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"832\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"853\"/>\n        <source>Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.</source>\n        <translation>مُعرِّف أجهزة PnP مُخزَّن في مُعرِّف رقمي مضغوط من نوع EISA بطول 32 بت. يجب أن تتطابق هذه القيمة مع مُعرِّف HID المُقابل في مساحة اسم ACPI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"724\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"745\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"838\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"859\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;معرّف الأجهزة PnP مُخزَّن في مُعرّف رقمي مضغوط من نوع EISA بطول 32 بت. يجب أن تتطابق هذه القيمة مع مُعرّف HID المُقابل في مساحة اسم ACPI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"779\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"872\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"893\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.</source>\n        <translation>معرف فريد مطلوب من قِبل ACPI إذا كان لجهازين نفس مُعرِّف HID. يجب أن تتطابق هذه القيمة أيضًا مع زوج مُعرِّف المستخدم/مُعرِّف HID المُقابل في مساحة اسم ACPI. يُدعم فقط نوع القيمة الرقمية 32 بت لمُعرِّف المستخدم؛ لذا، لا يجب استخدام سلاسل نصية لمُعرِّف المستخدم في مساحة اسم ACPI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"764\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"785\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"899\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;معرّف فريد مطلوب من قِبل ACPI إذا كان لجهازين نفس مُعرّف HID. يجب أن تتطابق هذه القيمة أيضًا مع زوج مُعرّف المستخدم/مُعرّف HID المُقابل في مساحة اسم ACPI. يُدعم فقط نوع القيمة الرقمية 32 بت لمُعرّف المستخدم؛ لذا، لا يجب استخدام سلاسل نصية لمُعرّف المستخدم في مساحة اسم ACPI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"802\"/>\n        <source>Expanded</source>\n        <translation>موسعة</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"912\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"933\"/>\n        <source>Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.</source>\n        <translation>مُعرِّفات أجهزة PnP المتوافقة مُخزَّنة في مُعرِّف رقمي مضغوط من نوع EISA بطول 32 بت. يجب أن تتطابق هذه القيمة مع مُعرِّف جهاز واحد على الأقل من مُعرِّفات الأجهزة المتوافقة المُسترجعة بواسطة مُعرِّف CID المُقابل في مساحة اسم ACPI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"915\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"921\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"936\"/>\n        <source>CID</source>\n        <translation type=\"unfinished\">CID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"918\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"939\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;معرّفات الأجهزة المتوافقة مع بروتوكول PnP مُخزَّنة في مُعرّف رقمي مضغوط من نوع EISA بطول 32 بت. يجب أن تتطابق هذه القيمة مع مُعرّف جهاز واحد على الأقل من مُعرّفات الأجهزة المتوافقة المُرجعة بواسطة مُعرّف CID المُقابل في مساحة اسم ACPI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"952\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"974\"/>\n        <source>Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.</source>\n        <translation>مُعرِّف أجهزة PnP مُخزَّن كسلسلة نصية. يجب أن تتطابق هذه القيمة مع مُعرِّف HID المُقابل في مساحة اسم ACPI. إذا كان طول هذه السلسلة صفرًا، فسيتم استخدام حقل HID. إذا كان طول هذه السلسلة أكبر من صفر، فسيحل هذا الحقل محل حقل HID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"955\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"961\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"977\"/>\n        <source>HIDSTR</source>\n        <translation type=\"unfinished\">HIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"958\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"980\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;معرّف جهاز PnP مُخزَّن كسلسلة نصية. يجب أن تتطابق هذه القيمة مع مُعرّف HID المُقابل في مساحة اسم ACPI. إذا كان طول هذه السلسلة صفرًا، فسيتم استخدام حقل HID. إذا كان طول هذه السلسلة أكبر من صفر، فسيحل هذا الحقل محل حقل HID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"987\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1009\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.</source>\n        <translation>مُعرِّف فريد مطلوب من قِبل ACPI إذا كان لجهازين مُعرِّف HID واحد. يجب أن تتطابق هذه القيمة أيضًا مع زوج UID/HID المُقابل في مساحة اسم ACPI. تُخزَّن هذه القيمة كسلسلة نصية. إذا كان طول هذه السلسلة صفرًا، فسيتم استخدام حقل UID. إذا كان طول هذه السلسلة أكبر من صفر، فسيحل هذا الحقل محل حقل UID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"990\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"996\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1012\"/>\n        <source>UIDSTR</source>\n        <translation type=\"unfinished\">UIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"993\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1015\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;معرّف فريد مطلوب من قِبل ACPI إذا كان لجهازين نفس مُعرّف HID. يجب أن تتطابق هذه القيمة أيضًا مع زوج مُعرّف المستخدم/مُعرّف الجهاز المُقابل في مساحة اسم ACPI. تُخزَّن هذه القيمة كسلسلة نصية. إذا كان طول هذه السلسلة صفرًا، فسيتم استخدام حقل مُعرّف المستخدم. إذا كان طول هذه السلسلة أكبر من صفر، فسيحل هذا الحقل محل حقل مُعرّف المستخدم.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1044\"/>\n        <source>Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.</source>\n        <translation>مُعرِّف أجهزة PnP المتوافقة مُخزَّن كسلسلة. يجب أن تتطابق هذه القيمة مع مُعرِّف جهاز واحد على الأقل من مُعرِّفات الأجهزة المتوافقة المُسترجعة بواسطة مُعرِّف العميل المُقابل في مساحة اسم ACPI. إذا كان طول هذه السلسلة صفرًا، فسيتم استخدام حقل مُعرِّف العميل. إذا كان طول هذه السلسلة أكبر من صفر، فسيحل هذا الحقل محل حقل مُعرِّف العميل.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1025\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1031\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1047\"/>\n        <source>CIDSTR</source>\n        <translation type=\"unfinished\">CIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1028\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1050\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;معرّفات أجهزة PnP المتوافقة مُخزَّنة كسلسلة نصية. يجب أن تتطابق هذه القيمة مع واحد على الأقل من معرّفات الأجهزة المتوافقة التي يُرجعها معرّف العميل المُقابل في مساحة اسم ACPI. إذا كان طول هذه السلسلة صفرًا، فسيتم استخدام حقل معرّف العميل. إذا كان طول هذه السلسلة أكبر من صفر، فسيحل هذا الحقل محل حقل معرّف العميل.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1061\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1094\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1100\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1115\"/>\n        <source>ADR</source>\n        <translation type=\"unfinished\">ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1064\"/>\n        <source>The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.</source>\n        <translation>يتم استخدام مسار جهاز ADR لاحتواء سمات جهاز إخراج الفيديو لدعم بروتوكول إخراج الرسومات.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1067\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;يستخدم مسار جهاز ADR لاحتواء سمات جهاز إخراج الفيديو لدعم بروتوكول إخراج الرسومات.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1091\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1112\"/>\n        <source>ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required</source>\n        <translation>قيمة ADR. بالنسبة لأجهزة إخراج الفيديو، تُستقى قيمة هذا الحقل من الجدول B-2 من مواصفات ACPI 3.0. يلزم وجود قيمة ADR واحدة على الأقل.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1097\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1118\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;قيمة ADR. بالنسبة لأجهزة إخراج الفيديو، قيمة هذا الحقل مأخوذة من الجدول B-2 من مواصفات ACPI 3.0. يجب توفر قيمة ADR واحدة على الأقل.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1131\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1192\"/>\n        <source>This device path may optionally contain more than one ADR entry.</source>\n        <translation>قد يحتوي مسار الجهاز هذا بشكل اختياري على أكثر من إدخال ADR واحد.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1195\"/>\n        <source>Additional ADR</source>\n        <translation>تسوية بديلة إضافية</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1198\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path may optionally contain more than one ADR entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;قد يحتوي مسار الجهاز هذا بشكل اختياري على أكثر من إدخال ADR واحد.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1153\"/>\n        <source>Additional ADR format.</source>\n        <translation>نموذج ADR إضافي.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1156\"/>\n        <source>Additional ADR format</source>\n        <translation>تنسيق ADR إضافي</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1159\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Additional ADR format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;تنسيق ADR إضافي.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1209\"/>\n        <source>NVDIMM</source>\n        <translation type=\"unfinished\">NVDIMM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1212\"/>\n        <source>This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.</source>\n        <translation>يصف مسار الجهاز هذا جهاز NVDIMM باستخدام مقبض جهاز NFIT المحدد وفقًا لمواصفات ACPI 6.0 كمعرف.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;يصف مسار هذا الجهاز جهاز NVDIMM باستخدام معرف جهاز NFIT المحدد وفقًا لمواصفات ACPI 6.0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1260\"/>\n        <source>NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.</source>\n        <translation>معرف جهاز NFIT - مُعرِّف مادي فريد. راجع قسم &quot;أجهزة ACPI المُعرَّفة&quot; و&quot;الكائنات الخاصة بالجهاز&quot;، الفصل الفرعي &quot;أجهزة NVDIMM&quot; للاطلاع على التعريف الدقيق للحقول المُستخدمة لهذا المُعرِّف.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1242\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1248\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1263\"/>\n        <source>NFIT Device Handle</source>\n        <translation>مقبض جهاز NFIT</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1245\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;معرّف جهاز NFIT - مُعرّف مادي فريد. راجع قسم &quot;أجهزة ACPI المُعرّفة&quot; و&quot;الكائنات الخاصة بالجهاز&quot;، الفصل الفرعي &quot;أجهزة NVDIMM&quot; للاطلاع على التعريف الدقيق للحقول المُستخدمة لهذا المعرّف.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1284\"/>\n        <source>ATAPI</source>\n        <translation type=\"unfinished\">ATAPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1287\"/>\n        <source>ATAPI Settings.</source>\n        <translation>ATAPI اعدادات.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI اعدادات.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1336\"/>\n        <source>Set to zero for primary or one for secondary.</source>\n        <translation>اضبط على الصفر بالنسبة للأساسي أو واحد بالنسبة للثانوي.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1317\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1323\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1339\"/>\n        <source>Primary</source>\n        <translation>أساسي</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1320\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1342\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for primary or one for secondary.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;اضبط على الصفر بالنسبة للأساسي أو واحد بالنسبة للثانوي.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1349\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1371\"/>\n        <source>Set to zero for master or one for slave mode.</source>\n        <translation>اضبط على الصفر لوضع السيد أو واحد لوضع التابع.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1374\"/>\n        <source>Slave</source>\n        <translation>عبد</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1377\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for master or one for slave mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;اضبط على الصفر لوضع السيد أو واحد لوضع التابع.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1384\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1406\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4054\"/>\n        <source>Logical Unit Number.</source>\n        <translation>رقم الوحدة المنطقية.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1390\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1412\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4038\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;رقم الوحدة المنطقية.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1429\"/>\n        <source>SCSI</source>\n        <translation type=\"unfinished\">SCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1432\"/>\n        <source>SCSI Settings.</source>\n        <translation>إعدادات SCSI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1435\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إعدادات SCSI..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1481\"/>\n        <source>Target ID on the SCSI bus (PUN).</source>\n        <translation>معرف الهدف على ناقل SCSI (PUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1962\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1984\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4969\"/>\n        <source>Target ID</source>\n        <translation>معرف الهدف</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1465\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1487\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the SCSI bus (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;معرف الهدف على ناقل SCSI (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4985\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5006\"/>\n        <source>Logical Unit Number (LUN).</source>\n        <translation>رقم الوحدة المنطقية (LUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5012\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;رقم الوحدة المنطقية (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1545\"/>\n        <source>Fibre Channel</source>\n        <translation>قناة الألياف</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1548\"/>\n        <source>Fibre Channel Settings</source>\n        <translation>إعدادات قناة الألياف</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1551\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إعدادات قناة الألياف&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1596\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1750\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4434\"/>\n        <source>Reserved.</source>\n        <translation>محجوز.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1581\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1602\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1756\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3142\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4419\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;محجوز.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1615\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1636\"/>\n        <source>Fibre Channel World Wide Name.</source>\n        <translation>الاسم العالمي لقناة الألياف.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1624\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1639\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4456\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4477\"/>\n        <source>World Wide Name</source>\n        <translation>الاسم العالمي</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1621\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1642\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel World Wide Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;الاسم العالمي لقناة الألياف.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1676\"/>\n        <source>Fibre Channel Logical Unit Number.</source>\n        <translation>رقم الوحدة المنطقية لقناة الألياف.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1661\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1682\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;رقم الوحدة المنطقية لقناة الألياف.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1699\"/>\n        <source>Firewire</source>\n        <translation type=\"unfinished\">Firewire</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1702\"/>\n        <source>Firewire Settings.</source>\n        <translation>إعدادات Firewire.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1705\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firewire Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إعدادات Firewire..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1790\"/>\n        <source>1394 Global Unique ID (GUID)</source>\n        <translation>1394 معرف فريد عالمي (GUID)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1796\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 Global Unique ID (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 معرف فريد عالمي (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1816\"/>\n        <source>USB settings.</source>\n        <translation>USB إعدادات.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1865\"/>\n        <source>USB Parent Port Number.</source>\n        <translation>رقم منفذ USB الرئيسي.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1852\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1868\"/>\n        <source>Parent Port</source>\n        <translation>البوابة الرئيسية</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1871\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Parent Port Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;رقم منفذ USB الرئيسي.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1906\"/>\n        <source>USB Interface Number.</source>\n        <translation>رقم واجهة USB.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1912\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;رقم واجهة USB.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1929\"/>\n        <source>I2O</source>\n        <translation type=\"unfinished\">I2O</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1932\"/>\n        <source>I2O Settings</source>\n        <translation>إعدادات I2O</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1935\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;I2O Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إعدادات I2O&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1981\"/>\n        <source>Target ID (TID) for a device.</source>\n        <translation>معرف الهدف (TID) للجهاز.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1965\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1987\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID (TID) for a device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;معرف الهدف (TID) للجهاز.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2004\"/>\n        <source>InfiniBand</source>\n        <translation type=\"unfinished\">InfiniBand</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2007\"/>\n        <source>InfiniBand Settings.</source>\n        <translation>إعدادات InfiniBand.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2010\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;InfiniBand Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إعدادات InfiniBand..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2034\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2067\"/>\n        <source>Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.</source>\n        <translation>علامات لتحديد/إدارة عناصر مسار جهاز InfiniBand:\nالبت 0 - IOC/الخدمة (0b = IOC، 1b = خدمة).\nالبت 1 - تمديد بيئة التمهيد.\nالبت 2 - بروتوكول وحدة التحكم.\nالبت 3 - بروتوكول التخزين.\nالبت 4 - بروتوكول الشبكة.\nجميع البتات الأخرى محفوظة.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2043\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2055\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2076\"/>\n        <source>Resource Flags</source>\n        <translation>أعلام الموارد</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2046\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2079\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;علامات لتحديد/إدارة عناصر مسار جهاز InfiniBand:\nالبت 0 - IOC/الخدمة (0b = IOC، 1b = الخدمة).\nالبت 1 - توسيع بيئة التمهيد.\nالبت 2 - بروتوكول وحدة التحكم.\nالبت 3 - بروتوكول التخزين.\nالبت 4 - بروتوكول الشبكة.\nجميع البتات الأخرى محفوظة.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2098\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2119\"/>\n        <source>128-bit Global Identifier for remote fabric port</source>\n        <translation>معرف عالمي 128 بت لمنفذ النسيج البعيد</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2101\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2122\"/>\n        <source>PORT GID</source>\n        <translation type=\"unfinished\">PORT GID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2104\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2125\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;128-bit Global Identifier for remote fabric port&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;معرف عالمي 128 بت لمنفذ النسيج البعيد&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2135\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2156\"/>\n        <source>64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)</source>\n        <translation>مُعرِّف فريد من 64 بت لبطاقة IOC البعيدة أو عملية الخادم. تفسير الحقل المُحدَّد بواسطة علامات الموارد (بت 0)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2138\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2144\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2159\"/>\n        <source>IOC GUID/Service ID</source>\n        <translation type=\"unfinished\">IOC GUID/Service ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2141\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2162\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;معرّف فريد ٦٤ بت لبطاقة IOC البعيدة أو عملية الخادم. تفسير الحقل المحدد بواسطة علامات الموارد (بت ٠)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2175\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2196\"/>\n        <source>64-bit persistent ID of remote IOC port.</source>\n        <translation>معرف ثابت 64 بت لمنفذ IOC البعيد.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2184\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2199\"/>\n        <source>Target Port ID</source>\n        <translation>معرف المنفذ المستهدف</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2181\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote IOC port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;معرف ثابت 64 بت لمنفذ IOC البعيد.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2236\"/>\n        <source>64-bit persistent ID of remote device.</source>\n        <translation>معرف ثابت 64 بت للجهاز البعيد.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2239\"/>\n        <source>Device ID</source>\n        <translation>معرف الجهاز</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;معرف ثابت 64 بت للجهاز البعيد.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2259\"/>\n        <source>MAC Address</source>\n        <translation>عنوان MAC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2262\"/>\n        <source>MAC settings.</source>\n        <translation>إعدادات MAC.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2289\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2310\"/>\n        <source>The MAC address for a network interface padded with 0s.</source>\n        <translation>عنوان MAC لواجهة الشبكة مملوء بالأصفار.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2295\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2316\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The MAC address for a network interface padded with 0s.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;عنوان MAC لواجهة الشبكة المملوء بالأصفار.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2329\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2351\"/>\n        <source>Network interface type (i.e., 802.3, FDDI). See RFC 3232.</source>\n        <translation>نوع واجهة الشبكة (مثل 802.3، FDDI). انظر RFC 3232.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2357\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network interface type (i.e., 802.3, FDDI). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;نوع واجهة الشبكة (مثل 802.3، FDDI). راجع RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2377\"/>\n        <source>IPv4 settings.</source>\n        <translation>إعدادات IPv4.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2425\"/>\n        <source>The local IPv4 address.</source>\n        <translation>عنوان IPv4 المحلي.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2407\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2763\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2784\"/>\n        <source>Local IP Address</source>\n        <translation>عنوان IP المحلي</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2431\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;عنوان IPv4 المحلي.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2465\"/>\n        <source>The remote IPv4 address.</source>\n        <translation>عنوان IPv4 البعيد.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2447\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2824\"/>\n        <source>Remote IP Address</source>\n        <translation>عنوان IP البعيد</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2471\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;عنوان IPv4 البعيد.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2862\"/>\n        <source>The local port number.</source>\n        <translation>رقم المنفذ المحلي.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2487\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2865\"/>\n        <source>Local Port</source>\n        <translation>المنفذ المحلي</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2490\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;رقم المنفذ المحلي.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2547\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2903\"/>\n        <source>The remote port number.</source>\n        <translation>رقم المنفذ البعيد.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2550\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2906\"/>\n        <source>Remote Port</source>\n        <translation>المنفذ البعيد</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2553\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2909\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;رقم المنفذ البعيد.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2566\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2588\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2922\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2944\"/>\n        <source>The network protocol (i.e., UDP, TCP). See RFC 3232.</source>\n        <translation>بروتوكول الشبكة (مثل UDP وTCP). انظر RFC 3232.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2928\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2950\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The network protocol (i.e., UDP, TCP). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;بروتوكول الشبكة (مثل UDP وTCP). راجع RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2631\"/>\n        <source>0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.</source>\n        <translation>0x00 - تم تعيين عنوان IP المصدر عبر DHCP.\n0x01 - عنوان IP المصدر مرتبط بشكل ثابت.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2635\"/>\n        <source>Static IP Address</source>\n        <translation>عنوان IP ثابت</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - تم تعيين عنوان IP المصدر عبر DHCP.\n0x01 - عنوان IP المصدر مرتبط بشكل ثابت.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2667\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3083\"/>\n        <source>The Gateway IP Address.</source>\n        <translation>عنوان IP للبوابة.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3071\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3086\"/>\n        <source>Gateway IP Address</source>\n        <translation>عنوان IP للبوابة</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2673\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Gateway IP Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;عنوان IP للبوابة.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2686\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2707\"/>\n        <source>Subnet mask.</source>\n        <translation>قناع الشبكة الفرعية.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2689\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2695\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2710\"/>\n        <source>Subnet Mask</source>\n        <translation>قناع الشبكة الفرعية</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2733\"/>\n        <source>IPv6 settings.</source>\n        <translation>إعدادات IPv6.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2760\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2781\"/>\n        <source>The local IPv6 address.</source>\n        <translation>عنوان IPv6 المحلي.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2787\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;عنوان IPv6 المحلي..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2821\"/>\n        <source>The remote IPv6 address.</source>\n        <translation>عنوان IPv6 البعيد.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;عنوان IPv6 البعيد.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2963\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2989\"/>\n        <source>0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.</source>\n        <translation>0x00 - تم تكوين عنوان IP المحلي يدويًا.\n0x01 - تم تعيين عنوان IP المحلي من خلال التكوين التلقائي بدون حالة IPv6.\n0x02 - تم تعيين عنوان IP المحلي من خلال التكوين التلقائي بدون حالة IPv6.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2976\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2994\"/>\n        <source>IP Address Origin</source>\n        <translation>أصل عنوان IP</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2971\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2997\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - تم تكوين عنوان IP المحلي يدويًا.\n0x01 - تم تعيين عنوان IP المحلي من خلال التكوين التلقائي بدون حالة IPv6.\n0x02 - تم تعيين عنوان IP المحلي من خلال التكوين التلقائي بدون حالة IPv6.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3021\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3043\"/>\n        <source>The Prefix Length.</source>\n        <translation>طول البادئة.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3024\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3030\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3046\"/>\n        <source>Prefix Length</source>\n        <translation>طول البادئة</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3027\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3049\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Prefix Length.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;طول البادئة.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3106\"/>\n        <source>UART</source>\n        <translation type=\"unfinished\">UART</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3109\"/>\n        <source>UART Settings.</source>\n        <translation>إعدادات UART.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3112\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إعدادات UART.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3176\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3197\"/>\n        <source>The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.</source>\n        <translation>إعداد معدل الباود لجهاز UART. القيمة 0 تعني أنه سيتم استخدام معدل الباود الافتراضي للجهاز.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3179\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3185\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3200\"/>\n        <source>Baud Rate</source>\n        <translation>معدل البود</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3182\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3203\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إعداد معدل الباود لجهاز UART. القيمة 0 تعني أنه سيتم استخدام معدل الباود الافتراضي للجهاز..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3216\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3238\"/>\n        <source>The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.</source>\n        <translation>عدد بتات البيانات لجهاز UART. القيمة 0 تعني أنه سيتم استخدام عدد بتات البيانات الافتراضي للجهاز.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3219\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3225\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3241\"/>\n        <source>Data Bits</source>\n        <translation>بتات البيانات</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3222\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;عدد بتات البيانات لجهاز UART. تعني القيمة 0 أنه سيتم استخدام عدد بتات البيانات الافتراضي للجهاز..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3257\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3291\"/>\n        <source>The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.</source>\n        <translation>إعداد التكافؤ لجهاز UART:\n0x00 - التكافؤ الافتراضي.\n0x01 - لا تكافؤ.\n0x02 - تكافؤ زوجي.\n0x03 - تكافؤ فردي.\n0x04 - تكافؤ العلامة.\n0x05 - تكافؤ المسافة.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3266\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3300\"/>\n        <source>Parity</source>\n        <translation>التكافؤ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3303\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إعداد التكافؤ لجهاز UART:\n0x00 - التكافؤ الافتراضي.\n0x01 - بدون تكافؤ.\n0x02 - تكافؤ زوجي.\n0x03 - تكافؤ فردي.\n0x04 - تكافؤ العلامة.\n0x05 - تكافؤ المسافة.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3313\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3394\"/>\n        <source>Default</source>\n        <translation>افتراضي</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3318\"/>\n        <source>No</source>\n        <translation>لا</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3323\"/>\n        <source>Even</source>\n        <translation>حتى</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3328\"/>\n        <source>Odd</source>\n        <translation>فردي</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3333\"/>\n        <source>Mark</source>\n        <translation>علامة</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3338\"/>\n        <source>Space</source>\n        <translation>مساحة</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3346\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3376\"/>\n        <source>The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.</source>\n        <translation>عدد بتات التوقف لجهاز UART:\n0x00 - بتات التوقف الافتراضية.\n0x01 - بت توقف واحد.\n0x02 - بت توقف واحد ونصف.\n0x03 - بتا توقف.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3353\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3363\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3383\"/>\n        <source>Stop Bits</source>\n        <translation>بتات التوقف</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3356\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;عدد بتات التوقف لجهاز UART:\n0x00 - بتات التوقف الافتراضية.\n0x01 - بت توقف واحد.\n0x02 - بت توقف واحد ونصف.\n0x03 - بتا توقف.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3399\"/>\n        <source>1</source>\n        <translation type=\"unfinished\">1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3404\"/>\n        <source>1.5</source>\n        <translation type=\"unfinished\">1.5</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3409\"/>\n        <source>2</source>\n        <translation type=\"unfinished\">2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3421\"/>\n        <source>USB Class</source>\n        <translation>فئة USB</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3424\"/>\n        <source>USB Class Settings.</source>\n        <translation>إعدادات فئة USB.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3427\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Class Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إعدادات فئة USB.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3451\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3472\"/>\n        <source>Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.</source>\n        <translation>مُعرِّف البائع المُعيَّن بواسطة USB-IF. قيمة 0xFFFF تُطابق أي مُعرِّف بائع.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3454\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3460\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3475\"/>\n        <source>Vendor ID</source>\n        <translation>معرف البائع</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3457\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3478\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;مُعرِّف البائع المُعيَّن بواسطة USB-IF. قيمة 0xFFFF تُطابق أي مُعرِّف بائع..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3491\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3512\"/>\n        <source>Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.</source>\n        <translation>مُعرِّف المنتج المُعيَّن بواسطة USB-IF. قيمة 0xFFFF تُطابق أي مُعرِّف منتج.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3515\"/>\n        <source>Product ID</source>\n        <translation>معرف المنتج</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3518\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;مُعرِّف المنتج المُعيَّن بواسطة USB-IF. قيمة 0xFFFF تُطابق أي مُعرِّف منتج..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3552\"/>\n        <source>The class code assigned by the USB-IF. A value of 0xFF will match any class code.</source>\n        <translation>رمز الفئة المُخصَّص بواسطة USB-IF. قيمة 0xFF تُطابق أي رمز فئة.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3540\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3555\"/>\n        <source>Device Class</source>\n        <translation>فئة الجهاز</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3537\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3558\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The class code assigned by the USB-IF. A value of 0xFF will match any class code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;رمز الفئة المُخصص بواسطة USB-IF. قيمة 0xFF تُطابق أي رمز فئة..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3592\"/>\n        <source>The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.</source>\n        <translation>رمز الفئة الفرعية المُخصَّص بواسطة USB-IF. قيمة 0xFF تُطابق أي رمز فئة فرعية.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3574\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3595\"/>\n        <source>Device Subclass</source>\n        <translation>جهاز فرعي</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;رمز الفئة الفرعية المُعيَّن بواسطة USB-IF. قيمة 0xFF تُطابق أي رمز فئة فرعية..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3632\"/>\n        <source>The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.</source>\n        <translation>رمز البروتوكول المُخصَّص بواسطة USB-IF. قيمة 0xFF تُطابق أي رمز بروتوكول.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3635\"/>\n        <source>Device Protocol</source>\n        <translation>بروتوكول الجهاز</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3617\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;رمز البروتوكول المُعيَّن بواسطة USB-IF. قيمة 0xFF تُطابق أي رمز بروتوكول..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3655\"/>\n        <source>USB WWID</source>\n        <translation type=\"unfinished\">USB WWID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3658\"/>\n        <source>This device path describes a USB device using its serial number.</source>\n        <translation>يصف مسار هذا الجهاز جهاز USB باستخدام الرقم التسلسلي الخاص به.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3661\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a USB device using its serial number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;يصف مسار هذا الجهاز جهاز USB باستخدام الرقم التسلسلي الخاص به.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3685\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3707\"/>\n        <source>USB interface Number.</source>\n        <translation>رقم واجهة USB.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;رقم واجهة USB..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3747\"/>\n        <source>USB vendor id of the device.</source>\n        <translation>معرف بائع USB للجهاز.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3750\"/>\n        <source>Device Vendor Id</source>\n        <translation>معرف بائع الجهاز</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3753\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB vendor id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;معرف بائع USB للجهاز.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3787\"/>\n        <source>USB product id of the device.</source>\n        <translation>معرف منتج USB للجهاز.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3790\"/>\n        <source>Device Product Id</source>\n        <translation>معرف منتج الجهاز</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3793\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB product id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;معرف منتج USB للجهاز.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3828\"/>\n        <source>Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).</source>\n        <translation>آخر 64 حرفًا أو أقل من ترميز UTF-16 من الرقم التسلسلي لجهاز USB. يُحدَّد طول السلسلة من خلال حقل &quot;الطول&quot; مطروحًا منه إزاحة حقل &quot;الرقم التسلسلي&quot; (10).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3815\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3831\"/>\n        <source>Serial Number</source>\n        <translation>الرقم التسلسلي</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3812\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;آخر 64 حرفًا أو أقل من ترميز UTF-16 من الرقم التسلسلي لجهاز USB. يُحدَّد طول السلسلة من خلال حقل &quot;الطول&quot; مطروحًا منه إزاحة حقل &quot;الرقم التسلسلي&quot; (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3845\"/>\n        <source>Device Logical Unit</source>\n        <translation>وحدة الجهاز المنطقية</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3848\"/>\n        <source>Device Logical Unit Settings.</source>\n        <translation>إعدادات الوحدة المنطقية للجهاز.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3851\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device Logical Unit Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إعدادات الوحدة المنطقية للجهاز.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3897\"/>\n        <source>Logical Unit Number for the interface.</source>\n        <translation>رقم الوحدة المنطقية للواجهة.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3903\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number for the interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;رقم الوحدة المنطقية للواجهة.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3923\"/>\n        <source>SATA settings.</source>\n        <translation>إعدادات SATA.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3950\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3972\"/>\n        <source>The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.</source>\n        <translation>رقم منفذ HBA الذي يُسهّل الاتصال بالجهاز أو مُضاعِف المنفذ. القيمة 0xFFFF محجوزة.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3953\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3975\"/>\n        <source>HBA Port</source>\n        <translation>منفذ HBA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3956\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3978\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;رقم منفذ HBA الذي يُسهّل الاتصال بالجهاز أو مُضاعِف المنفذ. القيمة 0xFFFF محجوزة..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4013\"/>\n        <source>The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.</source>\n        <translation>رقم منفذ مضاعف المنفذ الذي يُسهّل الاتصال بالجهاز. يجب ضبطه على 0xFFFF إذا كان الجهاز متصلاً مباشرةً بمُحوّل الشبكة المُحسّن (HBA).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4000\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4016\"/>\n        <source>Port Multiplier Port</source>\n        <translation>مضاعف المنفذ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3997\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4019\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;رقم منفذ مضاعف المنفذ الذي يُسهّل الاتصال بالجهاز. يجب ضبطه على 0xFFFF إذا كان الجهاز متصلاً مباشرةً بمُحوّل الشبكة المُحسّن (HBA).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4077\"/>\n        <source>iSCSI</source>\n        <translation type=\"unfinished\">iSCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4080\"/>\n        <source>iSCSI Settings.</source>\n        <translation>إعدادات iSCSI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4083\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إعدادات iSCSI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4129\"/>\n        <source>Network Protocol (0 = TCP, 1+ = reserved).</source>\n        <translation>بروتوكول الشبكة (0 = TCP، 1+ = محجوز).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4113\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network Protocol (0 = TCP, 1+ = reserved).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;بروتوكول الشبكة (0 = TCP، 1+ = محجوز).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4148\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4169\"/>\n        <source>iSCSI Login Options.</source>\n        <translation>خيارات تسجيل الدخول iSCSI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4151\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4172\"/>\n        <source>Options</source>\n        <translation>الخيارات</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4154\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4175\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Login Options.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;خيارات تسجيل الدخول iSCSI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4188\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4209\"/>\n        <source>8 byte array containing the iSCSI Logical Unit Number.</source>\n        <translation>مصفوفة مكونة من 8 بايت تحتوي على رقم الوحدة المنطقية لـ iSCSI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4194\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing the iSCSI Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;مصفوفة مكونة من 8 بايت تحتوي على رقم الوحدة المنطقية لـ iSCSI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4228\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4250\"/>\n        <source>iSCSI Target Portal group tag the initiator intends to establish a session with.</source>\n        <translation>علامة مجموعة بوابة هدف iSCSI التي ينوي المنشئ إنشاء جلسة معها.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4231\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4253\"/>\n        <source>Target Portal Group</source>\n        <translation>مجموعة بوابة الهدف</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4234\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4256\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Target Portal group tag the initiator intends to establish a session with.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;علامة مجموعة بوابة هدف iSCSI التي ينوي المنشئ إنشاء جلسة معها.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4291\"/>\n        <source>iSCSI NodeTarget Name.</source>\n        <translation>اسم هدف عقدة iSCSI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4272\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4294\"/>\n        <source>Target Name</source>\n        <translation>اسم الهدف</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4275\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4297\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI NodeTarget Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;اسم هدف عقدة iSCSI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4308\"/>\n        <source>VLAN</source>\n        <translation>شبكة محلية افتراضية</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4311\"/>\n        <source>VLAN Settings.</source>\n        <translation>إعدادات شبكة محلية افتراضية.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4314\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إعدادات شبكة محلية افتراضية.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4360\"/>\n        <source>VLAN identifier (0-4094).</source>\n        <translation>معرف VLAN (0-4094).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4341\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4347\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4363\"/>\n        <source>Vlan ID</source>\n        <translation>هوية شبكة محلية ظاهرية</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4344\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4366\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN identifier (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;معرف VLAN (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4383\"/>\n        <source>Fibre Channel Ex</source>\n        <translation>قناة الألياف Ex</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4386\"/>\n        <source>The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation>يوضح مسار جهاز Fibre Channel Ex تعريف حقل رقم الوحدة المنطقية ليتوافق مع مواصفات T-10 SCSI Architecture Model 4.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4389\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;يوضح مسار جهاز Fibre Channel Ex تعريف حقل رقم الوحدة المنطقية ليتوافق مع مواصفات T-10 SCSI Architecture Model 4.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4474\"/>\n        <source>8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).</source>\n        <translation>مصفوفة مكونة من 8 بايت تحتوي على اسم منفذ جهاز نهاية قناة الألياف (المعروف أيضًا باسم الاسم العالمي).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4480\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;مصفوفة مكونة من 8 بايت تحتوي على اسم منفذ الجهاز النهائي لقناة الألياف (المعروف أيضًا باسم الاسم العالمي).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4514\"/>\n        <source>8 byte array containing Fibre Channel Logical Unit Number.</source>\n        <translation>مصفوفة مكونة من 8 بايت تحتوي على رقم الوحدة المنطقية لقناة الألياف.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4499\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4520\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;مصفوفة من 8 بايتات تحتوي على رقم الوحدة المنطقية لقناة الألياف.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4537\"/>\n        <source>SAS Extended Messaging</source>\n        <translation>الرسائل الموسعة SAS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4540\"/>\n        <source>The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation>يوضح مسار جهاز SAS Ex تعريف حقل رقم الوحدة المنطقية ليتوافق مع مواصفات T-10 SCSI Architecture Model 4.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4543\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;يوضح مسار جهاز SAS Ex تعريف حقل رقم الوحدة المنطقية ليتوافق مع مواصفات T-10 SCSI Architecture Model 4.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4567\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4588\"/>\n        <source>8-byte array of the SAS Address for Serial Attached SCSI Target Port.</source>\n        <translation>مصفوفة مكونة من 8 بايتات من عنوان SAS لمنفذ SCSI المستهدف المرفق التسلسلي.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4570\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4576\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4591\"/>\n        <source>SAS Address</source>\n        <translation>عنوان SAS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4573\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4594\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Address for Serial Attached SCSI Target Port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;مصفوفة مكونة من 8 بايتات من عنوان SAS لمنفذ SCSI المستهدف المرفق التسلسلي.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4628\"/>\n        <source>8-byte array of the SAS Logical Unit Number.</source>\n        <translation>مصفوفة مكونة من 8 بايتات من رقم الوحدة المنطقية SAS.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4613\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4634\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;مصفوفة من ٨ بايتات لرقم الوحدة المنطقية SAS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4647\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4668\"/>\n        <source>More Information about the device and its interconnect.</source>\n        <translation>مزيد من المعلومات حول الجهاز والاتصال به.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4650\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4656\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4671\"/>\n        <source>Device and Topology Info</source>\n        <translation>معلومات الجهاز والطوبولوجيا</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4653\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4674\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;More Information about the device and its interconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;مزيد من المعلومات حول الجهاز والاتصال به.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4687\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4709\"/>\n        <source>Relative Target Port (RTP).</source>\n        <translation>منفذ الهدف النسبي (RTP).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4690\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4696\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4712\"/>\n        <source>Relative Target Port</source>\n        <translation>منفذ الهدف النسبي</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4715\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Relative Target Port (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;منفذ الهدف النسبي (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4732\"/>\n        <source>NVM Express NS</source>\n        <translation type=\"unfinished\">NVM Express NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4735\"/>\n        <source>NVM Express Namespace Settings.</source>\n        <translation>إعدادات مساحة اسم NVM Express.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4738\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM Express Namespace Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إعدادات مساحة اسم NVM Express..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4783\"/>\n        <source>Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.</source>\n        <translation>مُعرِّف مساحة الاسم (NSID). قيمتا 0 و0xFFFFFFFF غير صالحتين.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4765\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4771\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4786\"/>\n        <source>NSID</source>\n        <translation type=\"unfinished\">NSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4768\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4789\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;مُعرِّف مساحة الاسم (NSID). قيمتا 0 و0xFFFFFFFF غير صالحتين.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4802\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4823\"/>\n        <source>This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.</source>\n        <translation>يحتوي هذا الحقل على مُعرِّف IEEE الفريد المُوسَّع (EUI-64). يجب على الأجهزة التي لا تحتوي على مُعرِّف EUI-64 تهيئة هذا الحقل بقيمة 0.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4805\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4811\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4826\"/>\n        <source>EUI-64</source>\n        <translation type=\"unfinished\">EUI-64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4808\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4829\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;يحتوي هذا الحقل على مُعرِّف IEEE الفريد المُوسَّع (EUI-64). يجب على الأجهزة التي لا تحتوي على مُعرِّف EUI-64 تهيئة هذا الحقل بقيمة 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4849\"/>\n        <source>Refer to RFC 3986 for details on the URI contents.</source>\n        <translation>راجع RFC 3986 للحصول على تفاصيل حول محتويات URI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Refer to RFC 3986 for details on the URI contents.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;راجع RFC 3986 للحصول على تفاصيل حول محتويات URI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4876\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4898\"/>\n        <source>Instance of the URI pursuant to RFC 3986.</source>\n        <translation>مثال على URI وفقًا لـ RFC 3986.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4882\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Instance of the URI pursuant to RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;مثال على URI وفقًا لـ RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4915\"/>\n        <source>UFS</source>\n        <translation type=\"unfinished\">UFS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4918\"/>\n        <source>UFS Settings.</source>\n        <translation>إعدادات UFS.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إعدادات UFS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4966\"/>\n        <source>Target ID on the UFS interface (PUN).</source>\n        <translation>معرف الهدف على واجهة UFS (PUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4972\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the UFS interface (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;معرف الهدف على واجهة UFS (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5029\"/>\n        <source>SD</source>\n        <translation type=\"unfinished\">SD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5032\"/>\n        <source>SD Settings.</source>\n        <translation>إعدادات SD.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5035\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إعدادات SD.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5081\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5299\"/>\n        <source>Slot Number</source>\n        <translation>رقم الفتحة</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5084\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5280\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5286\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5302\"/>\n        <source>Slot</source>\n        <translation>الفتحة</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5087\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5283\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5305\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Slot Number&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;رقم الفتحة&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5104\"/>\n        <source>Bluetooth</source>\n        <translation>بلوتوث</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5107\"/>\n        <source>EFI Bluetooth Settings.</source>\n        <translation>إعدادات بلوتوث EFI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5110\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI Bluetooth Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إعدادات بلوتوث EFI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5155\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5373\"/>\n        <source>48-bit Bluetooth device address.</source>\n        <translation>عنوان جهاز بلوتوث 48 بت.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5143\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5158\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5361\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5376\"/>\n        <source>Device Address</source>\n        <translation>عنوان الجهاز</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5161\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5379\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-bit Bluetooth device address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;عنوان جهاز بلوتوث 48 بت.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5178\"/>\n        <source>Wi-Fi</source>\n        <translation type=\"unfinished\">Wi-Fi</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5181\"/>\n        <source>Wi-Fi Settings.</source>\n        <translation>إعدادات الواي فاي.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5184\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wi-Fi Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إعدادات الواي فاي.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5208\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5230\"/>\n        <source>SSID in octet string.</source>\n        <translation>SSID في سلسلة ثمانية بتات.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5211\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5217\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5233\"/>\n        <source>SSID</source>\n        <translation type=\"unfinished\">SSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5214\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5236\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID in octet string.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID في سلسلة ثمانية بتات.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5247\"/>\n        <source>eMMC</source>\n        <translation type=\"unfinished\">eMMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5250\"/>\n        <source>Embedded Multi-Media Card Settings.</source>\n        <translation>إعدادات بطاقة الوسائط المتعددة المضمنة.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5253\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Embedded Multi-Media Card Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إعدادات بطاقة الوسائط المتعددة المضمنة.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5322\"/>\n        <source>BluetoothLE</source>\n        <translation>بلوتوث LE</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5325\"/>\n        <source>EFI BluetoothLE Settings.</source>\n        <translation>إعدادات EFI Bluetooth LE.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5328\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI BluetoothLE Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إعدادات EFI BluetoothLE.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5416\"/>\n        <source>0x00 - Public Device Address.\n0x01 - Random Device Address.</source>\n        <translation>0x00 - عنوان الجهاز العام.\n0x01 - عنوان جهاز عشوائي.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5396\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5403\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5420\"/>\n        <source>Address Type</source>\n        <translation>نوع العنوان</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5399\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5423\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Public Device Address.\n0x01 - Random Device Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - عنوان الجهاز العام.\n0x01 - عنوان جهاز عشوائي.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5428\"/>\n        <source>Public</source>\n        <translation>عام</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5433\"/>\n        <source>Random</source>\n        <translation>عشوائي</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5445\"/>\n        <source>DNS</source>\n        <translation type=\"unfinished\">DNS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5448\"/>\n        <source>DNS Settings.</source>\n        <translation>إعدادات DNS.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5451\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DNS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إعدادات DNS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5499\"/>\n        <source>0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.</source>\n        <translation>0x00 - عنوان خادم DNS هو عنوان IPv4.\n0x01 - عنوان خادم DNS هو عنوان IPv6.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5482\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5506\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - عنوان خادم DNS هو عنوان IPv4.\n0x01 - عنوان خادم DNS هو عنوان IPv6.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5514\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5575\"/>\n        <source>One or more instances of the DNS server address in EFI_IP_ADDRESS.</source>\n        <translation>مثيل واحد أو أكثر من عنوان خادم DNS في EFI_IP_ADDRESS.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5520\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5581\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;One or more instances of the DNS server address in EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;مثيل واحد أو أكثر من عنوان خادم DNS في EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5536\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7584\"/>\n        <source>Data format.</source>\n        <translation>تنسيق البيانات.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5592\"/>\n        <source>NVDIMM NS</source>\n        <translation type=\"unfinished\">NVDIMM NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5595\"/>\n        <source>This device path describes a bootable NVDIMM namespace that is defined by a namespace label.</source>\n        <translation>يصف مسار الجهاز هذا مساحة اسم NVDIMM قابلة للتمهيد والتي يتم تحديدها بواسطة تسمية مساحة الاسم.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVDIMM namespace that is defined by a namespace label.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;يصف مسار الجهاز هذا مساحة اسم NVDIMM قابلة للتمهيد والتي يتم تحديدها بواسطة تسمية مساحة الاسم.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5622\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5643\"/>\n        <source>Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.</source>\n        <translation>مُعرِّف التسمية الفريد لمساحة الاسم UUID. راجع وصف UUID في قسم بروتوكول تسمية NVDIMM - تعريفات التسمية لمزيد من التفاصيل حول هذا الحقل.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5646\"/>\n        <source>UUID</source>\n        <translation type=\"unfinished\">UUID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5628\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5649\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;مُعرِّف التسمية الفريد لمساحة الاسم (UUID). راجع وصف UUID في قسم تعريفات التسمية - بروتوكول تسمية NVDIMM لمزيد من التفاصيل حول هذا الحقل..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5663\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5698\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5706\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5724\"/>\n        <source>REST Service</source>\n        <translation>خدمة REST</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5666\"/>\n        <source>REST Service Settings.</source>\n        <translation>إعادة تعيين إعدادات الخدمة.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5669\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;REST Service Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إعادة تعيين إعدادات الخدمة.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5719\"/>\n        <source>0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.</source>\n        <translation>0x01 - خدمة Redfish REST.\n0x02 - خدمة OData REST.\n0xFF - خدمة REST خاصة بالبائع.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5701\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5727\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - خدمة Redfish REST.\n0x02 - خدمة OData REST.\n0xFF - خدمة REST خاصة بالبائع.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5733\"/>\n        <source>Redfish</source>\n        <translation>سمك النهاش الأحمر</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5738\"/>\n        <source>OData</source>\n        <translation>مرة واحدة</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5743\"/>\n        <source>Vendor specific</source>\n        <translation>خاص بالبائع</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5775\"/>\n        <source>0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.</source>\n        <translation>0x01 - خدمة REST داخل النطاق.\n0x02 - خدمة REST خارج النطاق.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5755\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5779\"/>\n        <source>Access Mode</source>\n        <translation>وضع الوصول</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5782\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - خدمة REST داخل النطاق.\n0x02 - خدمة REST خارج النطاق.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5787\"/>\n        <source>In-Band</source>\n        <translation>داخل - النطاق</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5792\"/>\n        <source>Out-of-band</source>\n        <translation>خارج - النطاق</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5821\"/>\n        <source>GUID of vendor specific REST service.</source>\n        <translation>GUID لخدمة REST الخاصة بالبائع.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID of vendor specific REST service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID لخدمة REST الخاصة بالبائع.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5898\"/>\n        <source>Vendor-defined data.</source>\n        <translation>البيانات المحددة من قبل البائع.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;البيانات المحددة من قبل البائع..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5915\"/>\n        <source>NVMe-oF NS</source>\n        <translation type=\"unfinished\">NVMe-oF NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5918\"/>\n        <source>This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.</source>\n        <translation>يصف مسار الجهاز هذا مساحة اسم NVMe قابلة للتمهيد عبر الألياف والتي يتم تعريفها من خلال هوية فريدة لمساحة الاسم ونظام فرعي NQN.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;يصف مسار الجهاز هذا اسم NVMe قابل للاقلاع عبر مساحة اسم Fiber والتي يتم تحديدها بواسطة هوية فريدة لمساحة الاسم ونظام فرعي NQN.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5967\"/>\n        <source>Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.</source>\n        <translation>نوع معرف المساحة الاسمية (NIDT)، لقيم النوع الفريدة عالميًا المحددة في حقل NIDT الخاص بـ CNS 03h (1h، أو 2h، أو 3h) بواسطة مواصفات NVM Express الأساسية.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5970\"/>\n        <source>NIDT</source>\n        <translation type=\"unfinished\">NIDT</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5973\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;نوع معرف مساحة الاسم (NIDT)، لقيم النوع الفريدة عالميًا المحددة في حقل NIDT الخاص بـ CNS 03h (1h أو 2h أو 3h) بواسطة مواصفات NVM Express الأساسية.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5986\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6007\"/>\n        <source>Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.</source>\n        <translation>معرف مساحة الاسم (NID)، وهي قيمة فريدة عالميًا يتم تعريفها في قائمة موصوف تعريف مساحة الاسم (CNS 03h) بواسطة مواصفات NVM Express الأساسية بتنسيق نهاية كبيرة.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5989\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5995\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6010\"/>\n        <source>NID</source>\n        <translation type=\"unfinished\">NID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5992\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6013\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;معرف مساحة الاسم (NID)، قيمة فريدة عالميًا محددة في قائمة موصوف تعريف مساحة الاسم (CNS 03h) بواسطة مواصفات NVM Express الأساسية بتنسيق big endian.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6023\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6045\"/>\n        <source>Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.</source>\n        <translation>مُعرِّف فريد لنظام فرعي NVM، مُخزَّن كسلسلة UTF-8 من n بايت، وفقًا لاسم NVMe المؤهل في مواصفات NVM Express الأساسية. يُستخدم اسم النظام الفرعي NQN لأغراض التعريف والمصادقة. الحد الأقصى للطول هو 224 بايت.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6026\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6048\"/>\n        <source>Subsystem NQN</source>\n        <translation>النظام الفرعي NQN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6029\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6051\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;معرّف فريد لنظام فرعي NVM، مُخزّن كسلسلة UTF-8 من n بايت، وفقًا لاسم NVMe المؤهل في مواصفات NVM Express الأساسية. يُستخدم اسم النظام الفرعي NQN لأغراض التعريف والمصادقة. الحد الأقصى للطول هو 224 بايت.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6066\"/>\n        <source>Hard Drive</source>\n        <translation>القرص الصلب</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6069\"/>\n        <source>The Hard Drive Media Device Path is used to represent a partition on a hard drive.</source>\n        <translation>يتم استخدام مسار جهاز وسائط القرص الصلب لتمثيل قسم على القرص الصلب.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6072\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Hard Drive Media Device Path is used to represent a partition on a hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;يتم استخدام مسار جهاز وسائط القرص الصلب لتمثيل قسم على القرص الصلب.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6174\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6196\"/>\n        <source>Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].</source>\n        <translation>يصف هذا العنصر المُدخل في جدول الأقسام، بدءًا من المُدخل 1. يُمثل رقم القسم صفر الجهاز بأكمله. أرقام الأقسام الصالحة لقسم MBR هي [1، 4]. أرقام الأقسام الصالحة لقسم GPT هي [1، NumberOfPartitionEntries].</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6180\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;يصف هذا العنصر المُدخل في جدول الأقسام، بدءًا من المُدخل 1. يُمثل رقم القسم صفر الجهاز بأكمله. أرقام الأقسام الصالحة لقسم MBR هي [1، 4]. أرقام الأقسام الصالحة لقسم GPT هي [1، NumberOfPartitionEntries].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6236\"/>\n        <source>Starting LBA of the partition on the hard drive.</source>\n        <translation>بدء تشغيل LBA للقسم الموجود على القرص الصلب.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6466\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6487\"/>\n        <source>Partition Start</source>\n        <translation>بدء التقسيم</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting LBA of the partition on the hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;بدء تشغيل LBA للقسم الموجود على القرص الصلب.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6255\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6276\"/>\n        <source>Size of the partition in units of Logical Blocks.</source>\n        <translation>حجم القسم بوحدات الكتل المنطقية.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6258\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6264\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6279\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6527\"/>\n        <source>Partition Size</source>\n        <translation>حجم القسم</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6261\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6282\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Logical Blocks.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;حجم القسم بوحدات الكتل المنطقية.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6295\"/>\n        <source>Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation>التوقيع الفريد لهذا القسم:\nإذا كان نوع التوقيع صفرًا، فيجب تهيئة هذا الحقل بـ ١٦ صفرًا.\nإذا كان نوع التوقيع ١، يُخزَّن توقيع MBR في أول ٤ بايتات من هذا الحقل. أما البايتات الـ ١٢ المتبقية، فتُهيأ بأصفار.\nإذا كان نوع التوقيع ٢، فيحتوي هذا الحقل على ١٦ بايتًا.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6301\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6310\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6367\"/>\n        <source>Partition Signature</source>\n        <translation>توقيع القسم</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6304\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;التوقيع الفريد لهذا القسم:\nإذا كان نوع التوقيع صفرًا، فيجب تهيئة هذا الحقل بـ ١٦ صفرًا.\nإذا كان نوع التوقيع ١، يُخزَّن توقيع MBR في أول ٤ بايتات من هذا الحقل. أما البايتات الـ ١٢ المتبقية، فتُهيأ بأصفار.\nإذا كان نوع التوقيع ٢، فيحتوي هذا الحقل على ١٦ بايتًا.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6322\"/>\n        <source>PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.</source>\n        <translation>نوع جزء توقيع القرص (القيم غير المستخدمة محجوزة):\n0x00 - لا يوجد توقيع قرص.\n0x01 - توقيع 32 بت من العنوان 0x1b8 من نوع 0x01 MBR.\n0x02 - توقيع GUID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6328\"/>\n        <source>Signature Type</source>\n        <translation>نوع التوقيع</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6331\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;نوع جزء توقيع القرص (القيم غير المستخدمة محفوظة):\n0x00 - لا يوجد توقيع قرص.\n0x01 - توقيع 32 بت من العنوان 0x1b8 من نوع 0x01 MBR.\n0x02 - توقيع GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6338\"/>\n        <source>None</source>\n        <translation>لا شيء</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6361\"/>\n        <source>Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation>التوقيع الفريد لهذا القسم:\nإذا كان نوع التوقيع صفرًا، فيجب تهيئة هذا الحقل بـ ١٦ صفرًا.\nإذا كان نوع التوقيع ١، فسيتم تخزين توقيع MBR في أول ٤ بايتات من هذا الحقل. أما البايتات الـ ١٢ المتبقية، فسيتم تهيئة أصفارها.\nإذا كان نوع التوقيع ٢، فسيحتوي هذا الحقل على ١٦ بايتًا.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6370\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;التوقيع الفريد لهذا القسم:\nإذا كان نوع التوقيع صفرًا، فيجب تهيئة هذا الحقل بـ ١٦ صفرًا.\nإذا كان نوع التوقيع ١، يُخزَّن توقيع MBR في أول ٤ بايتات من هذا الحقل. أما البايتات الـ ١٢ المتبقية، فتُهيأ بأصفار.\nإذا كان نوع التوقيع ٢، فيحتوي هذا الحقل على ١٦ بايتًا.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6392\"/>\n        <source>CD-ROM</source>\n        <translation type=\"unfinished\">CD-ROM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6395\"/>\n        <source>The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.</source>\n        <translation>يتم استخدام مسار جهاز الوسائط CD-ROM لتحديد قسم النظام الموجود على CD-ROM.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6398\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;يُستخدم مسار جهاز وسائط القرص المضغوط لتحديد قسم النظام الموجود على القرص المضغوط..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6444\"/>\n        <source>Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.</source>\n        <translation>رقم إدخال الاقلاع من كتالوج الاقلاع . الإدخال الأولي/الافتراضي مُعرَّف بالصفر.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6425\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6431\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6447\"/>\n        <source>Boot Entry</source>\n        <translation>إدخال الاقلاع</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6450\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;رقم إدخال الاقلاع من كتالوج الاقلاع . الإدخال الأولي/الافتراضي مُعرّف بالصفر..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6463\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6484\"/>\n        <source>Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.</source>\n        <translation>بدء RBA للقسم على الوسيط. تستخدم أقراص CD-ROM عنونة الكتلة المنطقية النسبية.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6469\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6490\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;بدء RBA للقسم على الوسيط. تستخدم أقراص CD-ROM عنونة الكتلة المنطقية النسبية..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6524\"/>\n        <source>Size of the partition in units of Blocks, also called Sectors.</source>\n        <translation>حجم القسم بوحدات الكتل، والتي تسمى أيضًا القطاعات.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6530\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Blocks, also called Sectors.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;حجم القسم بوحدات الكتل، والتي تسمى أيضًا القطاعات.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6547\"/>\n        <source>File Path</source>\n        <translation>مسار الملف</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6550\"/>\n        <source>File Path settings.</source>\n        <translation>إعدادات مسار الملف.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6553\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File Path settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إعدادات مسار الملف.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6599\"/>\n        <source>Path including directory and file names.</source>\n        <translation>المسار بما في ذلك أسماء الدليل والملفات.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6586\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6602\"/>\n        <source>Path Name</source>\n        <translation>اسم المسار</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6583\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6605\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Path including directory and file names.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;المسار بما في ذلك أسماء الدليل والملفات.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6619\"/>\n        <source>The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.</source>\n        <translation>يتم استخدام مسار جهاز بروتوكول الوسائط للإشارة إلى البروتوكول الذي يتم استخدامه في مسار الجهاز في موقع المسار المحدد.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6622\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;يتم استخدام مسار جهاز بروتوكول الوسائط للإشارة إلى البروتوكول الذي يتم استخدامه في مسار الجهاز في موقع المسار المحدد.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6667\"/>\n        <source>The ID of the protocol.</source>\n        <translation>معرف البروتوكول.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6673\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ID of the protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;معرف البروتوكول.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6687\"/>\n        <source>Firmware File</source>\n        <translation>ملف البرامج الثابتة</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6690\"/>\n        <source>Describes a firmware file in a firmware volume.</source>\n        <translation>يصف ملف البرامج الثابتة في وحدة تخزين البرامج الثابتة.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6693\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware file in a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;يصف ملف البرامج الثابتة في وحدة تخزين البرامج الثابتة.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6717\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6738\"/>\n        <source>Firmware file name GUID.</source>\n        <translation>اسم ملف البرنامج الثابت GUID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6723\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6744\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware file name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;اسم ملف البرنامج الثابت GUID..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6758\"/>\n        <source>Firmware Volume</source>\n        <translation>حجم البرنامج الثابت</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6761\"/>\n        <source>Describes a firmware volume.</source>\n        <translation>يصف وحدة تخزين البرامج الثابتة.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6764\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;يصف وحدة تخزين البرامج الثابتة.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6809\"/>\n        <source>Firmware volume name GUID.</source>\n        <translation>اسم وحدة تخزين البرامج الثابتة GUID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware volume name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;اسم وحدة تخزين البرامج الثابتة GUID..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6829\"/>\n        <source>Relative Offset Range</source>\n        <translation>نطاق الإزاحة النسبية</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6832\"/>\n        <source>This device path node specifies a range of offsets relative to the first byte available on the device.</source>\n        <translation>تحدد عقدة مسار الجهاز هذه نطاقًا من الإزاحات بالنسبة للبايت الأول المتوفر على الجهاز.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6835\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path node specifies a range of offsets relative to the first byte available on the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;تحدد عقدة مسار الجهاز هذه نطاقًا من الإزاحات بالنسبة إلى البايت الأول المتوفر على الجهاز.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6880\"/>\n        <source>Reserved for future use.</source>\n        <translation>محجوزة للاستخدام في المستقبل.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6886\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved for future use.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;محجوزة للاستخدام في المستقبل.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6899\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6920\"/>\n        <source>Offset of the first byte, relative to the parent device node.</source>\n        <translation>إزاحة البايت الأول، بالنسبة لعقدة الجهاز الرئيسي.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6902\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6908\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6923\"/>\n        <source>Starting Offset</source>\n        <translation>إزاحة البداية</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6905\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the first byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إزاحة البايت الأول، بالنسبة لعقدة الجهاز الرئيسي.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6939\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6960\"/>\n        <source>Offset of the last byte, relative to the parent device node.</source>\n        <translation>إزاحة البايت الأخير، بالنسبة إلى عقدة الجهاز الرئيسي.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6942\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6963\"/>\n        <source>Ending Offset</source>\n        <translation>إزاحة النهاية</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6966\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the last byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إزاحة البايت الأخير، بالنسبة لعقدة الجهاز الرئيسي.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6983\"/>\n        <source>RAM Disk</source>\n        <translation type=\"unfinished\">RAM Disk</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6986\"/>\n        <source>RAM Disk Settings.</source>\n        <translation>إعدادات قرص RAM.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6989\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إعدادات قرص RAM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7016\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7037\"/>\n        <source>Starting Address</source>\n        <translation>عنوان البداية</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7056\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7077\"/>\n        <source>Ending Address</source>\n        <translation>عنوان النهاية</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7093\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7114\"/>\n        <source>GUID that defines the type of the RAM Disk.</source>\n        <translation>GUID الذي يحدد نوع قرص RAM.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7120\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID that defines the type of the RAM Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID الذي يحدد نوع قرص RAM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7130\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7152\"/>\n        <source>RAM Disk instance number, if supported.</source>\n        <translation>رقم مثيل قرص RAM، إذا كان مدعومًا.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7133\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7155\"/>\n        <source>Disk Instance</source>\n        <translation>مثيل القرص</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7158\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk instance number, if supported.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;رقم مثيل قرص RAM، إذا كان مدعومًا.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7179\"/>\n        <source>This Device Path is used to describe the booting of non-EFI-aware operating systems.</source>\n        <translation>يتم استخدام مسار الجهاز هذا لوصف عملية تمهيد أنظمة التشغيل غير المتوافقة مع EFI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7182\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path is used to describe the booting of non-EFI-aware operating systems.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;يتم استخدام مسار الجهاز هذا لوصف اقلاع أنظمة التشغيل غير المتوافقة مع EFI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7206\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7249\"/>\n        <source>An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.</source>\n        <translation>رقم تعريف يصف نوع الجهاز:\n\n0x00 - محجوز.\n0x01 - قرص مرن.\n0x02 - قرص ثابت.\n0x03 - قرص مضغوط.\n0x04 - PCMCIA.\n0x05 - جهاز USB.\n0x06 - شبكة مدمجة.\n0x07..0x7F - محجوز.\n0x80 - جهاز BEV.\n0x81..0xFE - محجوز.\n0xFF - مجهول.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7220\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7263\"/>\n        <source>Device Type</source>\n        <translation>نوع الجهاز</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7223\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;رقم تعريف يصف نوع الجهاز:\n0x00 - محجوز.\n0x01 - قرص مرن.\n0x02 - قرص ثابت.\n0x03 - قرص مضغوط.\n0x04 - PCMCIA.\n0x05 - جهاز USB.\n0x06 - شبكة مدمجة.\n0x07..0x7F - محجوز.\n0x80 - جهاز BEV.\n0x81..0xFE - محجوز.\n0xFF - غير معروف.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7290\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7347\"/>\n        <source>Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero</source>\n        <translation>علامات الحالة كما هو مُحدد في مواصفات اقلاع BIOS:\n| بت | حقل | قيمة | وصف\n|=========|===============|===========|============\n| 3..0 | الموضع القديم | 0..15 | فهرس هذه المُدخلة في الجدول عند آخر اقلاع . لتحديث أولوية IPL أو BCV في حال اكتشاف جهاز فردي.\n|---------|------------ |-------------\n| 7..4 | (محجوز) | 0 | محجوز للاستخدام المُستقبلي، يجب أن يكون صفرًا.\n|----------|------------- |--------------\n| ٨ | مُفعّل | ٠..١ | ٠ = سيتم تجاهل الإدخال للتشغيل (IPL)؛ لن يُستدعى الإدخال لاتصال التشغيل (BCV).\n| | | | | ١ = ستتم محاولة الإدخال للتشغيل (IPL)؛ سيتم استدعاء الإدخال لاتصال التشغيل (BCV).\n|---------|--------------|----------|-----------\n| ٩ | فشل | ٠..١ | ٠ = لم تتم محاولة التشغيل، أو من مجهول ما إذا كان فشل التشغيل قد حدث (IPL)؛ تم توصيل الإدخال بنجاح (BCV).\n| | | | ١ = فشلت محاولة التشغيل (IPL)؛ فشلت محاولة الاتصال (BCV).\n|---------|---------------|-------------|------------\n| ١١..١٠ | الوسائط موجودة | ٠..٣ | ٠ = لا توجد وسائط قابلة للاقلاع  في الجهاز.\n| | | | ١ = غير معروف ما إذا كانت الوسائط القابلة للاقلاع  موجودة.\n| | | | ٢ = الوسائط موجودة ويبدو أنها قابلة للاقلاع  .\n| | | | ٣ = محجوز للاستخدام المستقبلي.\n|---------|-------------|---------|-----------\n| ١٥..١٢ | (محجوز) | ٠ | محجوز للاستخدام المستقبلي، يجب أن يكون صفرًا</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7311\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7368\"/>\n        <source>Status Flag</source>\n        <translation>علم الحالة</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7371\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;علامات الحالة كما هي مُعرّفة في مواصفات اقلاع BIOS:\n| بت | حقل | قيمة | وصف\n|=========|===============|============|=============\n| 3..0 | الموضع القديم | 0..15 | فهرس هذه المُدخلة في الجدول عند آخر اقلاع . لتحديث أولوية IPL أو BCV في حال اكتشاف جهاز فردي.\n|---------|------------ |-------------\n| 7..4 | (محجوز) | 0 | محجوز للاستخدام المُستقبلي، يجب أن يكون صفرًا.\n|---------|------------- |--------|------------\n| 8 | مُفعّل | 0..1 | 0 = سيتم تجاهل الإدخال للتشغيل (IPL)؛ لن يتم استدعاء الإدخال لاتصال التشغيل (BCV).\n| | | | | 1 = ستتم محاولة إدخال الإدخال للتشغيل (IPL)؛ سيتم استدعاء الإدخال لاتصال التشغيل (BCV).\n|---------|--------------|----------|------------\n| 9 | فشل | 0..1 | 0 = لم تتم محاولة إدخال الإدخال، أو من غير المعروف ما إذا كان فشل التشغيل قد حدث (IPL)؛ تم توصيل الإدخال بنجاح (BCV).\n| | | | 1 = فشلت محاولة إدخال الإدخال (IPL)؛ فشلت محاولة الاتصال (BCV).\n|---------|--------------|----------|-----------\n| 11..10 | الوسائط موجودة | 0..3 | 0 = لا توجد وسائط قابلة للاقلاع في الجهاز.\n| | | | | 1 = غير معروف إن كانت الوسائط موجودة.\n| | | | 2 = الوسائط موجودة ويبدو أنها قابلة للاقلاع .\n| | | | 3 = محجوز للاستخدام المستقبلي.\n|--------------|------------|------------\n| 15..12 | (محجوز) | 0 | محجوز للاستخدام المستقبلي، يجب أن يكون صفرًا&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7402\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7424\"/>\n        <source>String that describes the boot device to a user.</source>\n        <translation>سلسلة تصف جهاز الاقلاع للمستخدم.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7408\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7430\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;String that describes the boot device to a user.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;سلسلة تصف جهاز الاقلاع للمستخدم.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7543\"/>\n        <source>Vendor-assigned GUID that defines the data that follows.</source>\n        <translation>معرف GUID المخصص للبائع والذي يحدد البيانات التالية.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7549\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-assigned GUID that defines the data that follows.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;معرف GUID المخصص للبائع والذي يحدد البيانات التالية.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7562\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7622\"/>\n        <source>Vendor-defined variable size data.</source>\n        <translation>بيانات الحجم المتغير المحددة من قبل البائع.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7568\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7628\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined variable size data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;بيانات الحجم المتغير المحددة من قبل البائع.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7642\"/>\n        <source>Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.</source>\n        <translation>اعتمادًا على النوع الفرعي، يتم استخدام عقدة مسار الجهاز هذه للإشارة إلى نهاية مثيل مسار الجهاز أو بنية مسار الجهاز.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7645\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;اعتمادًا على النوع الفرعي، يتم استخدام عقدة مسار الجهاز هذه للإشارة إلى نهاية مثيل مسار الجهاز أو بنية مسار الجهاز.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7721\"/>\n        <source>Unknown file path specifier settings</source>\n        <translation>إعدادات محدد مسار ملف مجهول</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7724\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown file path specifier settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إعدادات محدد مسار ملف مجهول.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7748\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7772\"/>\n        <source>Unknown Type</source>\n        <translation>نوع مجهول</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7754\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7775\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;نوع مجهول.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7812\"/>\n        <source>Unknown Sub-Type</source>\n        <translation>نوع فرعي مجهول</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;نوع فرعي مجهول.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7828\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7831\"/>\n        <source>Unknown data</source>\n        <translation>بيانات مجهولة</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;بيانات مجهولة.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/filepathdialog.cpp\" line=\"1569\"/>\n        <source>Couldn&apos;t change data format!</source>\n        <translation>لم أتمكن من تغيير تنسيق البيانات!</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeyListModel</name>\n    <message>\n        <location filename=\"../src/hotkeylistmodel.cpp\" line=\"100\"/>\n        <source>boot option</source>\n        <translation>خيار الاقلاع</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Boot option</source>\n        <translation>خيار الاقلاع</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Hot key</source>\n        <translation>مفتاح ساخن</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Vendor data</source>\n        <translation>بيانات البائع</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeysDialog</name>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"20\"/>\n        <source>Hot Keys editor</source>\n        <translation>محرر المفاتيح الساخنة</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"41\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"44\"/>\n        <source>Hot Keys</source>\n        <translation>مفاتيح ساخنة</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"47\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;المفاتيح الساخنة&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"125\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"128\"/>\n        <source>Index filter</source>\n        <translation>مرشح الفهرس</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"131\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Index filter&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;مرشح الفهرس&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"163\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"166\"/>\n        <source>Remove hot key</source>\n        <translation>إزالة المفتاح الساخن</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إزالة المفتاح الساخن&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"191\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"194\"/>\n        <source>Add hot key</source>\n        <translation>إضافة مفتاح ساخن</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"197\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;إضافة مفتاح ساخن&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <location filename=\"../include/commands.h\" line=\"21\"/>\n        <location filename=\"../include/commands.h\" line=\"66\"/>\n        <source>Change %1 to &quot;%2&quot;</source>\n        <translation>تغيير %1 إلى &quot;%2&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"35\"/>\n        <source>Insert %1 entry &quot;%2&quot; at position %3</source>\n        <translation>أدخل الإدخال %1 &quot;%2&quot; في الموضع %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"50\"/>\n        <source>Remove %1 entry &quot;%2&quot; from position %3</source>\n        <translation>إزالة الإدخال %1 &quot;%2&quot; من الموضع %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"73\"/>\n        <location filename=\"../src/commands.cpp\" line=\"116\"/>\n        <source>Move %1 entry &quot;%2&quot; from position %3 to %4</source>\n        <translation>نقل %1 إلى &quot;%2&quot; من الموقع %3 إلى %4</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <location filename=\"../include/commands.h\" line=\"157\"/>\n        <location filename=\"../include/commands.h\" line=\"198\"/>\n        <source>Change %1 entry &quot;%2&quot; %3 to &quot;%4&quot;</source>\n        <translation>تغيير %1 الدخول &quot;%2 %3 إلى &quot;%4</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <source>Optional data</source>\n        <translation>البيانات الاختيارية</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"227\"/>\n        <source>Insert %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation>إدراج مسار الملف &quot;%2&quot; للمدخل %1 في الموضع %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"242\"/>\n        <source>Remove %1 entry &quot;%2&quot; file path from position %3</source>\n        <translation>إزالة إدخال %1 في مسار الملف &quot;%2&quot; من الموضع %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"257\"/>\n        <source>Set %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation>تعيين مسار الملف &quot;%2&quot; لإدخال %1 في الموضع %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <source>Insert %1 entry at position %2</source>\n        <translation>إدراج إدخال %1 في الموضع %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>Key</source>\n        <translation>المفتاح</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <source>Remove %1 entry from position %2</source>\n        <translation>نقل %1 من الموقع %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <location filename=\"../include/commands.h\" line=\"362\"/>\n        <location filename=\"../include/commands.h\" line=\"403\"/>\n        <source>Change %1 entry at position %2 %3 to &quot;%4&quot;</source>\n        <translation>تغيير %1 الدخول في الموقع %2 %3 إلى &quot;%4</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>keys</source>\n        <translation>مفاتيح</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"293\"/>\n        <location filename=\"../src/commands.cpp\" line=\"333\"/>\n        <source>Move %1 entry &quot;%2&quot; file path from position %3 to %4</source>\n        <translation>نقل مسار الملف &quot;%2&quot; لإدخال %1 من الموضع %3 إلى %4</translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/efibooteditor_cs.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"cs\" sourcelanguage=\"en_US\">\n<context>\n    <name>BootEntryForm</name>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"169\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"172\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"182\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"185\"/>\n        <source>Description</source>\n        <translation>Popis</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"198\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"201\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"204\"/>\n        <source>Path</source>\n        <translation>Popis umístění</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"415\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"418\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"478\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"481\"/>\n        <source>Optional data</source>\n        <translation>Volitelná data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"421\"/>\n        <source>Optional</source>\n        <translation>Volitelné</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"434\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"437\"/>\n        <source>Optional data format</source>\n        <translation>Formát volitelných dat</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"6\"/>\n        <source>Boot entry form</source>\n        <translation>Formulář zaveditelné položky</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"24\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"27\"/>\n        <source>Error</source>\n        <translation>Chyba</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"40\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"43\"/>\n        <source>Error note</source>\n        <translation>Poznámka k chybě</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"46\"/>\n        <source>This entry placeholder is shown here to indicate it&apos;s referenced in boot order. It won&apos;t be modified on save, just left as is.</source>\n        <translation type=\"unfinished\">This entry placeholder is shown here to indicate it&apos;s referenced in boot order. It won&apos;t be modified on save, just left as is.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"147\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"150\"/>\n        <source>Hot Keys</source>\n        <translation type=\"unfinished\">Hot Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"188\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry description.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Popis položky.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"222\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"225\"/>\n        <source>Device path</source>\n        <translation>Popis umístění zařízení</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Popis umístění zařízení.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"280\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"283\"/>\n        <source>Move file path up</source>\n        <translation>Přesunout popis umístění souboru nahoru</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"286\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Přesunout popis umístění souboru nahoru.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"305\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"308\"/>\n        <source>Move file path down</source>\n        <translation>Přesunout popis umístění souboru dolů</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"311\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Přesunout popis umístění souboru dolů.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"330\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"333\"/>\n        <source>Remove file path</source>\n        <translation type=\"unfinished\">Remove file path</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"336\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"355\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"358\"/>\n        <source>Edit file path</source>\n        <translation type=\"unfinished\">Edit file path</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"361\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Edit file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Edit file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"380\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"383\"/>\n        <source>Add file path</source>\n        <translation type=\"unfinished\">Add file path</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"444\"/>\n        <source>BASE64</source>\n        <translation type=\"unfinished\">BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"449\"/>\n        <source>UTF-16</source>\n        <translation type=\"unfinished\">UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"454\"/>\n        <source>UTF-8</source>\n        <translation type=\"unfinished\">UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"459\"/>\n        <source>HEX</source>\n        <translation type=\"unfinished\">HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"484\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry optional data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry optional data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"497\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"500\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"503\"/>\n        <source>Attributes</source>\n        <translation type=\"unfinished\">Attributes</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"623\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry category.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry category.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"122\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"540\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Is entry considered for automatic boot?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Is entry considered for automatic boot?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"569\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hidden.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hidden.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"585\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Force reconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Force reconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"534\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"537\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"543\"/>\n        <source>Active</source>\n        <translation type=\"unfinished\">Active</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"579\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"582\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"588\"/>\n        <source>Force reconnect</source>\n        <translation type=\"unfinished\">Force reconnect</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"563\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"566\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"572\"/>\n        <source>Hidden</source>\n        <translation type=\"unfinished\">Hidden</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"598\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"601\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"604\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"617\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"620\"/>\n        <source>Category</source>\n        <translation type=\"unfinished\">Category</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"627\"/>\n        <source>Boot</source>\n        <translation type=\"unfinished\">Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"632\"/>\n        <source>App</source>\n        <translation type=\"unfinished\">App</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"68\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"71\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"74\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"116\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"119\"/>\n        <source>Index</source>\n        <translation type=\"unfinished\">Index</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentryform.cpp\" line=\"117\"/>\n        <source>Couldn&apos;t change optional data format!</source>\n        <translation type=\"unfinished\">Couldn&apos;t change optional data format!</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryListModel</name>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"88\"/>\n        <source>Set Next boot to &quot;%1&quot;</source>\n        <translation type=\"unfinished\">Set Next boot to &quot;%1&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"184\"/>\n        <source>index</source>\n        <translation type=\"unfinished\">index</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"200\"/>\n        <source>description</source>\n        <translation type=\"unfinished\">description</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"237\"/>\n        <source>optional data</source>\n        <translation type=\"unfinished\">optional data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"253\"/>\n        <source>attributes</source>\n        <translation type=\"unfinished\">attributes</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"269\"/>\n        <source>next boot</source>\n        <translation type=\"unfinished\">next boot</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryWidget</name>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"12\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"221\"/>\n        <source>Boot entry</source>\n        <translation type=\"unfinished\">Boot entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"36\"/>\n        <source>Next boot</source>\n        <translation type=\"unfinished\">Next boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"39\"/>\n        <source>Run at next boot</source>\n        <translation type=\"unfinished\">Run at next boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"42\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;When chosen, entry will run at next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;When chosen, entry will run at next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"140\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"143\"/>\n        <source>Current boot</source>\n        <translation type=\"unfinished\">Current boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This entry is currently booted.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This entry is currently booted.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"181\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"218\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry description, human readable name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry description, human readable name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"67\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"70\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"76\"/>\n        <source>Device path</source>\n        <translation type=\"unfinished\">Device path</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"73\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"113\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data, arguments passed to boot executable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data, arguments passed to boot executable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"178\"/>\n        <source>Boot entry index</source>\n        <translation type=\"unfinished\">Boot entry index</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"184\"/>\n        <source>Index</source>\n        <translation type=\"unfinished\">Index</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"212\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"215\"/>\n        <source>Boot entry description</source>\n        <translation type=\"unfinished\">Boot entry description</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"107\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"110\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"116\"/>\n        <source>Optional data</source>\n        <translation type=\"unfinished\">Optional data</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootData</name>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"111\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"813\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1027\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1361\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1472\"/>\n        <source>%1: not found</source>\n        <translation type=\"unfinished\">%1: not found</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"120\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"821\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1387\"/>\n        <source>%1: failed deserialization</source>\n        <translation type=\"unfinished\">%1: failed deserialization</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Error loading entries</source>\n        <translation type=\"unfinished\">Error loading entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Failed to load some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation type=\"unfinished\">Failed to load some EFI Boot Manager entries:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Error saving entries</source>\n        <translation type=\"unfinished\">Error saving entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Entry %1(%2): duplicated index!</source>\n        <translation type=\"unfinished\">Entry %1(%2): duplicated index!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"389\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"419\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"458\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"479\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"487\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"516\"/>\n        <source>Error saving %1</source>\n        <translation type=\"unfinished\">Error saving %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"407\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"470\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"504\"/>\n        <source>Error removing %1</source>\n        <translation type=\"unfinished\">Error removing %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Error importing boot configuration</source>\n        <translation type=\"unfinished\">Error importing boot configuration</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <source>Couldn&apos;t open selected file (%1).</source>\n        <translation type=\"unfinished\">Couldn&apos;t open selected file (%1).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <source>Parser failed: %1</source>\n        <translation type=\"unfinished\">Parser failed: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <source>Invalid _Type: %1</source>\n        <translation type=\"unfinished\">Invalid _Type: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <source>Error exporting boot configuration</source>\n        <translation type=\"unfinished\">Error exporting boot configuration</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <source>Couldn&apos;t open selected file (%1): %2.</source>\n        <translation type=\"unfinished\">Couldn&apos;t open selected file (%1): %2.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <source>Couldn&apos;t write into file (%1): %2.</source>\n        <translation type=\"unfinished\">Couldn&apos;t write into file (%1): %2.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Error dumping raw EFI data</source>\n        <translation type=\"unfinished\">Error dumping raw EFI data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Failed to dump some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation type=\"unfinished\">Failed to dump some EFI Boot Manager entries:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"905\"/>\n        <source>Timeout</source>\n        <translation type=\"unfinished\">Timeout</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"921\"/>\n        <source>Apple boot-args</source>\n        <translation type=\"unfinished\">Apple boot-args</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"937\"/>\n        <source>Firmware actions</source>\n        <translation type=\"unfinished\">Firmware actions</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"73\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Loading EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"89\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"787\"/>\n        <source>Searching EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Searching EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"116\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"292\"/>\n        <source>Processing EFI Boot Manager entries (%1)…</source>\n        <translation type=\"unfinished\">Processing EFI Boot Manager entries (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"308\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Saving EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"333\"/>\n        <source>Searching old EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Searching old EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"374\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"416\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"447\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"476\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"484\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"491\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"513\"/>\n        <source>Saving EFI Boot Manager entries (%1)…</source>\n        <translation type=\"unfinished\">Saving EFI Boot Manager entries (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"467\"/>\n        <source>Removing old EFI Boot Manager entries (%1)…</source>\n        <translation type=\"unfinished\">Removing old EFI Boot Manager entries (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"404\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"501\"/>\n        <source>Removing EFI Boot Manager entries (%1)…</source>\n        <translation type=\"unfinished\">Removing EFI Boot Manager entries (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"94\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"338\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"792\"/>\n        <source>Couldn&apos;t load EFI Boot Manager variables</source>\n        <translation type=\"unfinished\">Couldn&apos;t load EFI Boot Manager variables</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"100\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"799\"/>\n        <source>Couldn&apos;t find any EFI Boot Manager variables</source>\n        <translation type=\"unfinished\">Couldn&apos;t find any EFI Boot Manager variables</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"529\"/>\n        <source>Importing boot configuration…</source>\n        <translation type=\"unfinished\">Importing boot configuration…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"565\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"770\"/>\n        <source>Exporting boot configuration…</source>\n        <translation type=\"unfinished\">Exporting boot configuration…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"587\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"809\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"875\"/>\n        <source>Exporting EFI Boot Manager entries (%1)…</source>\n        <translation type=\"unfinished\">Exporting EFI Boot Manager entries (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1013\"/>\n        <source>Importing boot configuration from JSON…</source>\n        <translation type=\"unfinished\">Importing boot configuration from JSON…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1032\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1366\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1477\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1531\"/>\n        <source>Importing EFI Boot Manager entries (%1)…</source>\n        <translation type=\"unfinished\">Importing EFI Boot Manager entries (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1035\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1376\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>%1: %2 expected</source>\n        <translation type=\"unfinished\">%1: %2 expected</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1043\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1048\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1053\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <source>number</source>\n        <translation type=\"unfinished\">number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1058\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1063\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1068\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1073\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1078\"/>\n        <source>bool</source>\n        <translation type=\"unfinished\">bool</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1109\"/>\n        <source>%1: unknown boot manager capability</source>\n        <translation type=\"unfinished\">%1: unknown boot manager capability</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1122\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1166\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1212\"/>\n        <source>array</source>\n        <translation type=\"unfinished\">array</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1333\"/>\n        <source>string</source>\n        <translation type=\"unfinished\">string</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1156\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1192\"/>\n        <source>%1: unknown os indication</source>\n        <translation type=\"unfinished\">%1: unknown os indication</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1083\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1235\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1264\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1290\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1309\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1328\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>object</source>\n        <translation type=\"unfinished\">object</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <source>hexadecimal number</source>\n        <translation type=\"unfinished\">hexadecimal number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1270\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1315\"/>\n        <source>%1: failed parsing</source>\n        <translation type=\"unfinished\">%1: failed parsing</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Failed to import some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation type=\"unfinished\">Failed to import some EFI Boot Manager entries:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1347\"/>\n        <source>Importing boot configuration from raw dump…</source>\n        <translation type=\"unfinished\">Importing boot configuration from raw dump…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1379\"/>\n        <source>object(raw_data: string, efi_attributes: number)</source>\n        <extracomment>Expected JSON structure, thrown as error description. raw_data and efi_attributes are field names in JSON file</extracomment>\n        <translation type=\"unfinished\">object(raw_data: string, efi_attributes: number)</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"15\"/>\n        <source>Boot</source>\n        <translation type=\"unfinished\">Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"16\"/>\n        <source>Driver</source>\n        <translation type=\"unfinished\">Driver</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"17\"/>\n        <source>System Preparation</source>\n        <translation type=\"unfinished\">System Preparation</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"18\"/>\n        <source>Platform Recovery</source>\n        <translation type=\"unfinished\">Platform Recovery</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditor</name>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"18\"/>\n        <source>EFI Boot Editor</source>\n        <translation type=\"unfinished\">EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"71\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"412\"/>\n        <source>Boot</source>\n        <translation type=\"unfinished\">Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"74\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"98\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"101\"/>\n        <source>Boot entries</source>\n        <translation type=\"unfinished\">Boot entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"77\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"104\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Boot entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Boot entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"133\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"415\"/>\n        <source>Driver</source>\n        <translation type=\"unfinished\">Driver</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"136\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"160\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"163\"/>\n        <source>Driver entries</source>\n        <translation type=\"unfinished\">Driver entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"139\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"166\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Driver entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Driver entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"195\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"418\"/>\n        <source>System Preparation</source>\n        <translation type=\"unfinished\">System Preparation</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"198\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"222\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"225\"/>\n        <source>SysPrep entries</source>\n        <translation type=\"unfinished\">SysPrep entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"201\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of SysPrep entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of SysPrep entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"257\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"421\"/>\n        <source>Platform Recovery</source>\n        <translation type=\"unfinished\">Platform Recovery</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"260\"/>\n        <source>PlatformRecovery entries</source>\n        <translation type=\"unfinished\">PlatformRecovery entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"263\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of PlatformRecovery entries (READONLY).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of PlatformRecovery entries (READONLY).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"284\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"287\"/>\n        <source>PlatformRecovery entries (READONLY)</source>\n        <translation type=\"unfinished\">PlatformRecovery entries (READONLY)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"346\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"349\"/>\n        <source>Add new entry</source>\n        <translation type=\"unfinished\">Add new entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"352\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to add new boot entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to add new boot entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"377\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"380\"/>\n        <source>Duplicate entry</source>\n        <translation type=\"unfinished\">Duplicate entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"383\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Duplicate entry&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Duplicate entry&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"408\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"411\"/>\n        <source>Remove entry</source>\n        <translation type=\"unfinished\">Remove entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"414\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to remove currently selected entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to remove currently selected entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"439\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"442\"/>\n        <source>Move entry up</source>\n        <translation type=\"unfinished\">Move entry up</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"445\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"470\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"473\"/>\n        <source>Move entry down</source>\n        <translation type=\"unfinished\">Move entry down</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"476\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"501\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"504\"/>\n        <source>Reorder entries</source>\n        <translation type=\"unfinished\">Reorder entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"507\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click here to adjust the order of all entries based on their position on the list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click here to adjust the order of all entries based on their position on the list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"599\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"608\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Global settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Global settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"602\"/>\n        <source>Global</source>\n        <translation type=\"unfinished\">Global</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"632\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"635\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"654\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"657\"/>\n        <source>Boot manager timeout</source>\n        <translation type=\"unfinished\">Boot manager timeout</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"638\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"660\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot manager timeout.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot manager timeout.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"663\"/>\n        <source>s</source>\n        <translation type=\"unfinished\">s</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"674\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"677\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"686\"/>\n        <source>Firmware details</source>\n        <translation type=\"unfinished\">Firmware details</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"680\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"689\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"683\"/>\n        <source>Firmware</source>\n        <translation type=\"unfinished\">Firmware</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"719\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"722\"/>\n        <source>Available firmware features</source>\n        <translation type=\"unfinished\">Available firmware features</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"725\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware features.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware features.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"728\"/>\n        <source>Features</source>\n        <translation type=\"unfinished\">Features</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"737\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"740\"/>\n        <source>Platform supports reporting of deferred capsule processing by creation of result variable</source>\n        <translation type=\"unfinished\">Platform supports reporting of deferred capsule processing by creation of result variable</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"743\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports reporting of deferred capsule processing by creation of result variable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports reporting of deferred capsule processing by creation of result variable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"746\"/>\n        <source>Capsule Reporting</source>\n        <translation type=\"unfinished\">Capsule Reporting</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"756\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"759\"/>\n        <source>Firmware supports timestamp based revocation</source>\n        <translation type=\"unfinished\">Firmware supports timestamp based revocation</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"762\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware supports timestamp based revocation.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware supports timestamp based revocation.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"765\"/>\n        <source>Timestamp based revocation</source>\n        <translation type=\"unfinished\">Timestamp based revocation</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"775\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"778\"/>\n        <source>Platform supports processing of Firmware Management Protocol update capsule</source>\n        <translation type=\"unfinished\">Platform supports processing of Firmware Management Protocol update capsule</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"781\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of Firmware Management Protocol update capsule.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of Firmware Management Protocol update capsule.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"784\"/>\n        <source>FMP Capsule</source>\n        <translation type=\"unfinished\">FMP Capsule</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"794\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"797\"/>\n        <source>Platform supports processing of file capsules</source>\n        <translation type=\"unfinished\">Platform supports processing of file capsules</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"800\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of file capsules.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of file capsules.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"803\"/>\n        <source>File Capsule</source>\n        <translation type=\"unfinished\">File Capsule</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"828\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"831\"/>\n        <source>Available firmware actions</source>\n        <translation type=\"unfinished\">Available firmware actions</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware actions.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware actions.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"837\"/>\n        <source>Actions</source>\n        <translation type=\"unfinished\">Actions</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"846\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"849\"/>\n        <source>Stop at a firmware user interface on the next boot</source>\n        <translation type=\"unfinished\">Stop at a firmware user interface on the next boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Stop at a firmware user interface on the next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Stop at a firmware user interface on the next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"855\"/>\n        <source>Boot to firmware UI</source>\n        <translation type=\"unfinished\">Boot to firmware UI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"862\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"865\"/>\n        <source>Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot</source>\n        <translation type=\"unfinished\">Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"871\"/>\n        <source>Collect current config</source>\n        <translation type=\"unfinished\">Collect current config</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"878\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"881\"/>\n        <source>Indicate that Platform-defined recovery should commence upon reboot</source>\n        <translation type=\"unfinished\">Indicate that Platform-defined recovery should commence upon reboot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"884\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that Platform-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that Platform-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"887\"/>\n        <source>Start Platform recovery</source>\n        <translation type=\"unfinished\">Start Platform recovery</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"894\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"897\"/>\n        <source>Indicate that OS-defined recovery should commence upon reboot</source>\n        <translation type=\"unfinished\">Indicate that OS-defined recovery should commence upon reboot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"900\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that OS-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that OS-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"903\"/>\n        <source>Start OS recovery</source>\n        <translation type=\"unfinished\">Start OS recovery</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"932\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"935\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"944\"/>\n        <source>Secure boot settings</source>\n        <translation type=\"unfinished\">Secure boot settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"938\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"947\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Secure boot settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Secure boot settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"941\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1025\"/>\n        <source>Secure Boot</source>\n        <translation type=\"unfinished\">Secure Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"978\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"981\"/>\n        <source>Defines whether the system is currently operating in Audit Mode</source>\n        <translation type=\"unfinished\">Defines whether the system is currently operating in Audit Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"984\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Audit Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Audit Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"987\"/>\n        <source>Audit Mode</source>\n        <translation type=\"unfinished\">Audit Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"997\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1000\"/>\n        <source>Defines whether the system is currently operating in Deployed Mode</source>\n        <translation type=\"unfinished\">Defines whether the system is currently operating in Deployed Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1003\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Deployed Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Deployed Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1006\"/>\n        <source>Deployed Mode</source>\n        <translation type=\"unfinished\">Deployed Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1016\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1019\"/>\n        <source>Defines whether the platform firmware is operating with Secure Boot enabled</source>\n        <translation type=\"unfinished\">Defines whether the platform firmware is operating with Secure Boot enabled</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1022\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the platform firmware is operating with Secure Boot enabled.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the platform firmware is operating with Secure Boot enabled.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1035\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1038\"/>\n        <source>Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables</source>\n        <translation type=\"unfinished\">Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1041\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1044\"/>\n        <source>Setup Mode</source>\n        <translation type=\"unfinished\">Setup Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1054\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1057\"/>\n        <source>Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys</source>\n        <translation type=\"unfinished\">Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1063\"/>\n        <source>Vendor Keys</source>\n        <translation type=\"unfinished\">Vendor Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1074\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1077\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1086\"/>\n        <source>Apple settings</source>\n        <translation type=\"unfinished\">Apple settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1080\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apple settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apple settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1083\"/>\n        <source>Apple</source>\n        <translation type=\"unfinished\">Apple</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1113\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1116\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1129\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1132\"/>\n        <source>macOS boot arguments</source>\n        <translation type=\"unfinished\">macOS boot arguments</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1119\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;macOS boot arguments.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;macOS boot arguments.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1161\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1164\"/>\n        <source>Undo stack</source>\n        <translation type=\"unfinished\">Undo stack</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1167\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo stack&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo stack&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1194\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1214\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Help menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Help menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1255\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Exit the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Exit the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1272\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apply changes to the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apply changes to the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1289\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reloads EFI data from the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reloads EFI data from the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1306\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Show information about the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Show information about the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1320\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Export current entries into JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Export current entries into JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1337\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Import EFI data from JSON dump.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Import EFI data from JSON dump.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1354\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dumps raw EFI data for debugging purposes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dumps raw EFI data for debugging purposes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1362\"/>\n        <source>&amp;Undo</source>\n        <translation type=\"unfinished\">&amp;Undo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1365\"/>\n        <source>Undo</source>\n        <translation type=\"unfinished\">Undo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1368\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1371\"/>\n        <source>Ctrl+Z</source>\n        <translation type=\"unfinished\">Ctrl+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1379\"/>\n        <source>&amp;Redo</source>\n        <translation type=\"unfinished\">&amp;Redo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1382\"/>\n        <source>Redo</source>\n        <translation type=\"unfinished\">Redo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1385\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Redo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Redo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1388\"/>\n        <source>Ctrl+Shift+Z</source>\n        <translation type=\"unfinished\">Ctrl+Shift+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1396\"/>\n        <source>Hot &amp;keys</source>\n        <translation type=\"unfinished\">Hot &amp;keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1399\"/>\n        <source>Hot Keys</source>\n        <translation type=\"unfinished\">Hot Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1402\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"593\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"596\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"605\"/>\n        <source>Global settings</source>\n        <translation type=\"unfinished\">Global settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"641\"/>\n        <source>Timeout</source>\n        <translation type=\"unfinished\">Timeout</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1122\"/>\n        <source>Boot args</source>\n        <translation type=\"unfinished\">Boot args</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1188\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1191\"/>\n        <source>File</source>\n        <translation type=\"unfinished\">File</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1197\"/>\n        <source>&amp;File</source>\n        <translation type=\"unfinished\">&amp;File</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1208\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1211\"/>\n        <source>Help</source>\n        <translation type=\"unfinished\">Help</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1217\"/>\n        <source>&amp;Help</source>\n        <translation type=\"unfinished\">&amp;Help</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1225\"/>\n        <source>&amp;Edit</source>\n        <translation type=\"unfinished\">&amp;Edit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1249\"/>\n        <source>&amp;Quit</source>\n        <translation type=\"unfinished\">&amp;Quit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1252\"/>\n        <source>Quit</source>\n        <translation type=\"unfinished\">Quit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1258\"/>\n        <source>Ctrl+Q</source>\n        <translation type=\"unfinished\">Ctrl+Q</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1266\"/>\n        <source>&amp;Save</source>\n        <translation type=\"unfinished\">&amp;Save</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1269\"/>\n        <source>Save</source>\n        <translation type=\"unfinished\">Save</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1275\"/>\n        <source>Ctrl+S</source>\n        <translation type=\"unfinished\">Ctrl+S</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1283\"/>\n        <source>&amp;Reload</source>\n        <translation type=\"unfinished\">&amp;Reload</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1286\"/>\n        <source>Reload</source>\n        <translation type=\"unfinished\">Reload</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1292\"/>\n        <source>Ctrl+R</source>\n        <translation type=\"unfinished\">Ctrl+R</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1300\"/>\n        <source>About &amp;EFI Boot Editor</source>\n        <translation type=\"unfinished\">About &amp;EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1303\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"29\"/>\n        <source>About EFI Boot Editor</source>\n        <translation type=\"unfinished\">About EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1314\"/>\n        <source>&amp;Export</source>\n        <translation type=\"unfinished\">&amp;Export</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1317\"/>\n        <source>Export</source>\n        <translation type=\"unfinished\">Export</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1323\"/>\n        <source>Ctrl+E</source>\n        <translation type=\"unfinished\">Ctrl+E</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1331\"/>\n        <source>&amp;Import</source>\n        <translation type=\"unfinished\">&amp;Import</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1334\"/>\n        <source>Import</source>\n        <translation type=\"unfinished\">Import</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1340\"/>\n        <source>Ctrl+I</source>\n        <translation type=\"unfinished\">Ctrl+I</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1348\"/>\n        <source>&amp;Dump raw EFI data</source>\n        <translation type=\"unfinished\">&amp;Dump raw EFI data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1351\"/>\n        <source>Dump raw EFI data</source>\n        <translation type=\"unfinished\">Dump raw EFI data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"26\"/>\n        <source>Working…</source>\n        <translation type=\"unfinished\">Working…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"92\"/>\n        <source>Undo %1</source>\n        <translation type=\"unfinished\">Undo %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"95\"/>\n        <source>Redo %1</source>\n        <translation type=\"unfinished\">Redo %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"137\"/>\n        <source>Are you sure you want to reload the entries?&lt;br/&gt;ALL of your changes will be lost!</source>\n        <translation type=\"unfinished\">Are you sure you want to reload the entries?&lt;br/&gt;ALL of your changes will be lost!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"162\"/>\n        <source>Are you sure you want to reorder the boot entries?&lt;br/&gt;All indexes will be overwritten!</source>\n        <translation type=\"unfinished\">Are you sure you want to reorder the boot entries?&lt;br/&gt;All indexes will be overwritten!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"221\"/>\n        <source>Are you sure you want to save?&lt;br/&gt;Your EFI configuration will be overwritten!</source>\n        <translation type=\"unfinished\">Are you sure you want to save?&lt;br/&gt;Your EFI configuration will be overwritten!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <source>Open boot configuration dump</source>\n        <translation type=\"unfinished\">Open boot configuration dump</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>JSON documents (*.json)</source>\n        <translation type=\"unfinished\">JSON documents (*.json)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <source>Save boot configuration dump</source>\n        <translation type=\"unfinished\">Save boot configuration dump</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>Save raw EFI dump</source>\n        <translation type=\"unfinished\">Save raw EFI dump</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"31\"/>\n        <source>&lt;h1&gt;EFI Boot Editor&lt;/h1&gt;&lt;p&gt;Version &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Boot Editor for (U)EFI based systems.&lt;/p&gt;</source>\n        <extracomment>About dialog</extracomment>\n        <translation type=\"unfinished\">&lt;h1&gt;EFI Boot Editor&lt;/h1&gt;&lt;p&gt;Version &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Boot Editor for (U)EFI based systems.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"45\"/>\n        <source>&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;Website&lt;/a&gt;&lt;/p&gt;&lt;p&gt;The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.&lt;/p&gt;&lt;p&gt;License: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL Version 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;On Linux uses &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; for EFI variables access.&lt;/p&gt;&lt;p&gt;Uses Tango Icons as fallback icons.&lt;/p&gt;</source>\n        <extracomment>About dialog details</extracomment>\n        <translation type=\"unfinished\">&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;Website&lt;/a&gt;&lt;/p&gt;&lt;p&gt;The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.&lt;/p&gt;&lt;p&gt;License: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL Version 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;On Linux uses &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; for EFI variables access.&lt;/p&gt;&lt;p&gt;Uses Tango Icons as fallback icons.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"330\"/>\n        <source>Reorder %1 entries</source>\n        <translation type=\"unfinished\">Reorder %1 entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"453\"/>\n        <source>Are you sure you want to quit?</source>\n        <translation type=\"unfinished\">Are you sure you want to quit?</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"123\"/>\n        <source>EFI support required</source>\n        <translation type=\"unfinished\">EFI support required</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditorCLI</name>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"13\"/>\n        <source>Boot Editor for (U)EFI based systems.</source>\n        <translation type=\"unfinished\">Boot Editor for (U)EFI based systems.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <source>Export configuration.</source>\n        <translation type=\"unfinished\">Export configuration.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>FILE</source>\n        <translation type=\"unfinished\">FILE</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <source>Dump raw EFI data.</source>\n        <translation type=\"unfinished\">Dump raw EFI data.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>Import configuration from JSON (either from export or raw dump).</source>\n        <translation type=\"unfinished\">Import configuration from JSON (either from export or raw dump).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"19\"/>\n        <source>Force import, don&apos;t ask for confirmation.</source>\n        <translation type=\"unfinished\">Force import, don&apos;t ask for confirmation.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"26\"/>\n        <source>EFI support required</source>\n        <translation type=\"unfinished\">EFI support required</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"45\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Loading EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"47\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"57\"/>\n        <source>Exporting boot configuration…</source>\n        <translation type=\"unfinished\">Exporting boot configuration…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"67\"/>\n        <source>Importing boot configuration…</source>\n        <translation type=\"unfinished\">Importing boot configuration…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Loaded %0 %1 entries</source>\n        <translation type=\"unfinished\">Loaded %0 %1 entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <source>Boot</source>\n        <translation type=\"unfinished\">Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <source>Driver</source>\n        <translation type=\"unfinished\">Driver</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <source>System Preparation</source>\n        <translation type=\"unfinished\">System Preparation</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Hot Key</source>\n        <translation type=\"unfinished\">Hot Key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"78\"/>\n        <source>Are you sure you want to save?\nYour EFI configuration will be overwritten!</source>\n        <translation type=\"unfinished\">Are you sure you want to save?\nYour EFI configuration will be overwritten!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"86\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Saving EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"98\"/>\n        <source>ERROR: %0! %1</source>\n        <translation type=\"unfinished\">ERROR: %0! %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"114\"/>\n        <source>Finished</source>\n        <translation type=\"unfinished\">Finished</translation>\n    </message>\n</context>\n<context>\n    <name>EFIKeySequenceEdit</name>\n    <message>\n        <location filename=\"../src/efikeysequenceedit.cpp\" line=\"109\"/>\n        <source>Press hot key</source>\n        <translation type=\"unfinished\">Press hot key</translation>\n    </message>\n</context>\n<context>\n    <name>FilePathDialog</name>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"12\"/>\n        <source>File path editor</source>\n        <translation type=\"unfinished\">File path editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"47\"/>\n        <source>PCI</source>\n        <translation type=\"unfinished\">PCI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"80\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"86\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"196\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"202\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"218\"/>\n        <source>Function</source>\n        <translation type=\"unfinished\">Function</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"121\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"127\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"143\"/>\n        <source>Device</source>\n        <translation type=\"unfinished\">Device</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"721\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"727\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"742\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"835\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"841\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"856\"/>\n        <source>HID</source>\n        <translation type=\"unfinished\">HID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"761\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"767\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"782\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"896\"/>\n        <source>UID</source>\n        <translation type=\"unfinished\">UID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1813\"/>\n        <source>USB</source>\n        <translation type=\"unfinished\">USB</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1819\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1893\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1909\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3688\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3710\"/>\n        <source>Interface</source>\n        <translation type=\"unfinished\">Interface</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7442\"/>\n        <source>Vendor</source>\n        <translation type=\"unfinished\">Vendor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7445\"/>\n        <source>Vendor settings</source>\n        <translation type=\"unfinished\">Vendor settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7448\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1778\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1793\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5824\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6348\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7117\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7546\"/>\n        <source>GUID</source>\n        <translation type=\"unfinished\">GUID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5539\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7587\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7850\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7853\"/>\n        <source>Data format</source>\n        <translation type=\"unfinished\">Data format</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5542\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7590\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7856\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5546\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5869\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7860\"/>\n        <source>BASE64</source>\n        <translation type=\"unfinished\">BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1168\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5551\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5874\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7865\"/>\n        <source>UTF-16</source>\n        <translation type=\"unfinished\">UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1173\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5556\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7604\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7870\"/>\n        <source>UTF-8</source>\n        <translation type=\"unfinished\">UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5561\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7875\"/>\n        <source>HEX</source>\n        <translation type=\"unfinished\">HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5523\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5901\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7888\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7891\"/>\n        <source>Data</source>\n        <translation type=\"unfinished\">Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7894\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7565\"/>\n        <source>Vendor data</source>\n        <translation type=\"unfinished\">Vendor data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7481\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7757\"/>\n        <source>Type</source>\n        <translation type=\"unfinished\">Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7478\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7500\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7504\"/>\n        <source>HW</source>\n        <translation type=\"unfinished\">HW</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7509\"/>\n        <source>MSG</source>\n        <translation type=\"unfinished\">MSG</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7514\"/>\n        <source>MEDIA</source>\n        <translation type=\"unfinished\">MEDIA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2292\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2298\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2313\"/>\n        <source>MAC</source>\n        <translation type=\"unfinished\">MAC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2265\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;MAC settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;MAC settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2374\"/>\n        <source>IPv4</source>\n        <translation type=\"unfinished\">IPv4</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2380\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv4 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv4 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2569\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2591\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2925\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2931\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2947\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4110\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4116\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4132\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6616\"/>\n        <source>Protocol</source>\n        <translation type=\"unfinished\">Protocol</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3003\"/>\n        <source>Static</source>\n        <translation type=\"unfinished\">Static</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2692\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Subnet mask.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Subnet mask.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2730\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5479\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5486\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5503\"/>\n        <source>IPv6</source>\n        <translation type=\"unfinished\">IPv6</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2736\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv6 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv6 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3008\"/>\n        <source>Stateless auto-configuration</source>\n        <translation type=\"unfinished\">Stateless auto-configuration</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3013\"/>\n        <source>Stateful auto-configuration</source>\n        <translation type=\"unfinished\">Stateful auto-configuration</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3920\"/>\n        <source>SATA</source>\n        <translation type=\"unfinished\">SATA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SATA settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SATA settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1387\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1393\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1409\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1658\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1664\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1679\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3900\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4035\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4041\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4057\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4191\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4197\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4212\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4496\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4502\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4610\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4616\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4988\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5009\"/>\n        <source>LUN</source>\n        <translation type=\"unfinished\">LUN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4885\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4901\"/>\n        <source>URI</source>\n        <translation type=\"unfinished\">URI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6105\"/>\n        <source>Disk</source>\n        <translation type=\"unfinished\">Disk</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6102\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6123\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6126\"/>\n        <source>Choose disk</source>\n        <translation type=\"unfinished\">Choose disk</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6129\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Choose disk from discovered in the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Choose disk from discovered in the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6133\"/>\n        <source>Custom</source>\n        <translation type=\"unfinished\">Custom</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6147\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6150\"/>\n        <source>Reload drives</source>\n        <translation type=\"unfinished\">Reload drives</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reload system drives list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reload system drives list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6343\"/>\n        <source>MBR</source>\n        <translation type=\"unfinished\">MBR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6177\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6183\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6199\"/>\n        <source>Partition</source>\n        <translation type=\"unfinished\">Partition</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6720\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6741\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6797\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6812\"/>\n        <source>Name</source>\n        <translation type=\"unfinished\">Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7176\"/>\n        <source>BIOS Boot Specification</source>\n        <translation type=\"unfinished\">BIOS Boot Specification</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7405\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7411\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7427\"/>\n        <source>Description</source>\n        <translation type=\"unfinished\">Description</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7639\"/>\n        <source>End</source>\n        <translation type=\"unfinished\">End</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7669\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7672\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7678\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7797\"/>\n        <source>Sub-Type</source>\n        <translation type=\"unfinished\">Sub-Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7675\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7697\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7701\"/>\n        <source>End This Instance</source>\n        <translation type=\"unfinished\">End This Instance</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7706\"/>\n        <source>End Entire</source>\n        <translation type=\"unfinished\">End Entire</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7718\"/>\n        <source>Unknown</source>\n        <translation type=\"unfinished\">Unknown</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"50\"/>\n        <source>The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.</source>\n        <translation type=\"unfinished\">The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"53\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"77\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"99\"/>\n        <source>PCI Function Number.</source>\n        <translation type=\"unfinished\">PCI Function Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"83\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"105\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Function Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Function Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"118\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"140\"/>\n        <source>PCI Device Number.</source>\n        <translation type=\"unfinished\">PCI Device Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"124\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Device Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Device Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"163\"/>\n        <source>PCCARD</source>\n        <translation type=\"unfinished\">PCCARD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"166\"/>\n        <source>PCCARD Settings.</source>\n        <translation type=\"unfinished\">PCCARD Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCCARD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCCARD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"193\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"215\"/>\n        <source>Function Number (0 = First Function).</source>\n        <translation type=\"unfinished\">Function Number (0 = First Function).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"199\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"221\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Function Number (0 = First Function).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Function Number (0 = First Function).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"238\"/>\n        <source>Memory Mapped</source>\n        <translation type=\"unfinished\">Memory Mapped</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"241\"/>\n        <source>Memory Mapped Settings.</source>\n        <translation type=\"unfinished\">Memory Mapped Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Memory Mapped Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Memory Mapped Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"268\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"290\"/>\n        <source>The type of memory to allocate.</source>\n        <translation type=\"unfinished\">The type of memory to allocate.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"271\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"293\"/>\n        <source>Memory Type</source>\n        <translation type=\"unfinished\">Memory Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"274\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"296\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The type of memory to allocate.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The type of memory to allocate.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"300\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1584\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1738\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1753\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3145\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3160\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4416\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4437\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6868\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6883\"/>\n        <source>Reserved</source>\n        <translation type=\"unfinished\">Reserved</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"305\"/>\n        <source>Loader Code</source>\n        <translation type=\"unfinished\">Loader Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"310\"/>\n        <source>Loader Data</source>\n        <translation type=\"unfinished\">Loader Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"315\"/>\n        <source>Boot Services Code</source>\n        <translation type=\"unfinished\">Boot Services Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"320\"/>\n        <source>Boot Services Data</source>\n        <translation type=\"unfinished\">Boot Services Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"325\"/>\n        <source>Runtime Services Code</source>\n        <translation type=\"unfinished\">Runtime Services Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"330\"/>\n        <source>Runtime Services Data</source>\n        <translation type=\"unfinished\">Runtime Services Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"335\"/>\n        <source>Conventional</source>\n        <translation type=\"unfinished\">Conventional</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"340\"/>\n        <source>Unusable</source>\n        <translation type=\"unfinished\">Unusable</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"345\"/>\n        <source>ACPI Reclaim</source>\n        <translation type=\"unfinished\">ACPI Reclaim</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"350\"/>\n        <source>ACPI Memory NVS</source>\n        <translation type=\"unfinished\">ACPI Memory NVS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"355\"/>\n        <source>Memory Mapped IO</source>\n        <translation type=\"unfinished\">Memory Mapped IO</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"360\"/>\n        <source>Memory Mapped IO Port Space</source>\n        <translation type=\"unfinished\">Memory Mapped IO Port Space</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"365\"/>\n        <source>Pal Code</source>\n        <translation type=\"unfinished\">Pal Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"370\"/>\n        <source>Persistent</source>\n        <translation type=\"unfinished\">Persistent</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"375\"/>\n        <source>Unaccepted</source>\n        <translation type=\"unfinished\">Unaccepted</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"383\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7013\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7034\"/>\n        <source>Starting Memory Address.</source>\n        <translation type=\"unfinished\">Starting Memory Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"386\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"407\"/>\n        <source>Start Address</source>\n        <translation type=\"unfinished\">Start Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"389\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7019\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7040\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"423\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7053\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7074\"/>\n        <source>Ending Memory Address.</source>\n        <translation type=\"unfinished\">Ending Memory Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"426\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"432\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"447\"/>\n        <source>End Address</source>\n        <translation type=\"unfinished\">End Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"429\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7080\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ending Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ending Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"467\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"522\"/>\n        <source>Controller</source>\n        <translation type=\"unfinished\">Controller</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"470\"/>\n        <source>Controller settings.</source>\n        <translation type=\"unfinished\">Controller settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"473\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"519\"/>\n        <source>Controller number.</source>\n        <translation type=\"unfinished\">Controller number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"525\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"542\"/>\n        <source>BMC</source>\n        <translation type=\"unfinished\">BMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"545\"/>\n        <source>The Device Path for a Baseboard Management Controller (BMC) host interface.</source>\n        <translation type=\"unfinished\">The Device Path for a Baseboard Management Controller (BMC) host interface.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"548\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for a Baseboard Management Controller (BMC) host interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for a Baseboard Management Controller (BMC) host interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"602\"/>\n        <source>The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.</source>\n        <translation type=\"unfinished\">The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"579\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"589\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2332\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2354\"/>\n        <source>Interface Type</source>\n        <translation type=\"unfinished\">Interface Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"582\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"612\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"625\"/>\n        <source>Keyboard Controller Style</source>\n        <translation type=\"unfinished\">Keyboard Controller Style</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"630\"/>\n        <source>Server Management Interface Chip</source>\n        <translation type=\"unfinished\">Server Management Interface Chip</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"635\"/>\n        <source>Block Transfer</source>\n        <translation type=\"unfinished\">Block Transfer</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"643\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"664\"/>\n        <source>Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.</source>\n        <translation type=\"unfinished\">Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"667\"/>\n        <source>Base Address</source>\n        <translation type=\"unfinished\">Base Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"670\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"688\"/>\n        <source>ACPI</source>\n        <translation type=\"unfinished\">ACPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"805\"/>\n        <source>This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.</source>\n        <translation type=\"unfinished\">This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"808\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"718\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"739\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"832\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"853\"/>\n        <source>Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.</source>\n        <translation type=\"unfinished\">Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"724\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"745\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"838\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"859\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"779\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"872\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"893\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.</source>\n        <translation type=\"unfinished\">Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"764\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"785\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"899\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"802\"/>\n        <source>Expanded</source>\n        <translation type=\"unfinished\">Expanded</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"912\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"933\"/>\n        <source>Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.</source>\n        <translation type=\"unfinished\">Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"915\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"921\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"936\"/>\n        <source>CID</source>\n        <translation type=\"unfinished\">CID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"918\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"939\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"952\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"974\"/>\n        <source>Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.</source>\n        <translation type=\"unfinished\">Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"955\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"961\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"977\"/>\n        <source>HIDSTR</source>\n        <translation type=\"unfinished\">HIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"958\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"980\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"987\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1009\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.</source>\n        <translation type=\"unfinished\">Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"990\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"996\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1012\"/>\n        <source>UIDSTR</source>\n        <translation type=\"unfinished\">UIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"993\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1015\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1044\"/>\n        <source>Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.</source>\n        <translation type=\"unfinished\">Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1025\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1031\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1047\"/>\n        <source>CIDSTR</source>\n        <translation type=\"unfinished\">CIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1028\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1050\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1061\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1094\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1100\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1115\"/>\n        <source>ADR</source>\n        <translation type=\"unfinished\">ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1064\"/>\n        <source>The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.</source>\n        <translation type=\"unfinished\">The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1067\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1091\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1112\"/>\n        <source>ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required</source>\n        <translation type=\"unfinished\">ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1097\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1118\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1131\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1192\"/>\n        <source>This device path may optionally contain more than one ADR entry.</source>\n        <translation type=\"unfinished\">This device path may optionally contain more than one ADR entry.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1195\"/>\n        <source>Additional ADR</source>\n        <translation type=\"unfinished\">Additional ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1198\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path may optionally contain more than one ADR entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path may optionally contain more than one ADR entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1153\"/>\n        <source>Additional ADR format.</source>\n        <translation type=\"unfinished\">Additional ADR format.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1156\"/>\n        <source>Additional ADR format</source>\n        <translation type=\"unfinished\">Additional ADR format</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1159\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Additional ADR format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Additional ADR format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1209\"/>\n        <source>NVDIMM</source>\n        <translation type=\"unfinished\">NVDIMM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1212\"/>\n        <source>This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.</source>\n        <translation type=\"unfinished\">This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1260\"/>\n        <source>NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.</source>\n        <translation type=\"unfinished\">NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1242\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1248\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1263\"/>\n        <source>NFIT Device Handle</source>\n        <translation type=\"unfinished\">NFIT Device Handle</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1245\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1284\"/>\n        <source>ATAPI</source>\n        <translation type=\"unfinished\">ATAPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1287\"/>\n        <source>ATAPI Settings.</source>\n        <translation type=\"unfinished\">ATAPI Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1336\"/>\n        <source>Set to zero for primary or one for secondary.</source>\n        <translation type=\"unfinished\">Set to zero for primary or one for secondary.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1317\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1323\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1339\"/>\n        <source>Primary</source>\n        <translation type=\"unfinished\">Primary</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1320\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1342\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for primary or one for secondary.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for primary or one for secondary.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1349\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1371\"/>\n        <source>Set to zero for master or one for slave mode.</source>\n        <translation type=\"unfinished\">Set to zero for master or one for slave mode.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1374\"/>\n        <source>Slave</source>\n        <translation type=\"unfinished\">Slave</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1377\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for master or one for slave mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for master or one for slave mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1384\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1406\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4054\"/>\n        <source>Logical Unit Number.</source>\n        <translation type=\"unfinished\">Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1390\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1412\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4038\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1429\"/>\n        <source>SCSI</source>\n        <translation type=\"unfinished\">SCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1432\"/>\n        <source>SCSI Settings.</source>\n        <translation type=\"unfinished\">SCSI Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1435\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1481\"/>\n        <source>Target ID on the SCSI bus (PUN).</source>\n        <translation type=\"unfinished\">Target ID on the SCSI bus (PUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1962\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1984\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4969\"/>\n        <source>Target ID</source>\n        <translation type=\"unfinished\">Target ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1465\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1487\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the SCSI bus (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the SCSI bus (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4985\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5006\"/>\n        <source>Logical Unit Number (LUN).</source>\n        <translation type=\"unfinished\">Logical Unit Number (LUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5012\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1545\"/>\n        <source>Fibre Channel</source>\n        <translation type=\"unfinished\">Fibre Channel</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1548\"/>\n        <source>Fibre Channel Settings</source>\n        <translation type=\"unfinished\">Fibre Channel Settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1551\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1596\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1750\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4434\"/>\n        <source>Reserved.</source>\n        <translation type=\"unfinished\">Reserved.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1581\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1602\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1756\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3142\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4419\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1615\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1636\"/>\n        <source>Fibre Channel World Wide Name.</source>\n        <translation type=\"unfinished\">Fibre Channel World Wide Name.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1624\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1639\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4456\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4477\"/>\n        <source>World Wide Name</source>\n        <translation type=\"unfinished\">World Wide Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1621\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1642\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel World Wide Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel World Wide Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1676\"/>\n        <source>Fibre Channel Logical Unit Number.</source>\n        <translation type=\"unfinished\">Fibre Channel Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1661\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1682\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1699\"/>\n        <source>Firewire</source>\n        <translation type=\"unfinished\">Firewire</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1702\"/>\n        <source>Firewire Settings.</source>\n        <translation type=\"unfinished\">Firewire Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1705\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firewire Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firewire Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1790\"/>\n        <source>1394 Global Unique ID (GUID)</source>\n        <translation type=\"unfinished\">1394 Global Unique ID (GUID)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1796\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 Global Unique ID (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 Global Unique ID (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1816\"/>\n        <source>USB settings.</source>\n        <translation type=\"unfinished\">USB settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1865\"/>\n        <source>USB Parent Port Number.</source>\n        <translation type=\"unfinished\">USB Parent Port Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1852\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1868\"/>\n        <source>Parent Port</source>\n        <translation type=\"unfinished\">Parent Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1871\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Parent Port Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Parent Port Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1906\"/>\n        <source>USB Interface Number.</source>\n        <translation type=\"unfinished\">USB Interface Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1912\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1929\"/>\n        <source>I2O</source>\n        <translation type=\"unfinished\">I2O</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1932\"/>\n        <source>I2O Settings</source>\n        <translation type=\"unfinished\">I2O Settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1935\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;I2O Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;I2O Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1981\"/>\n        <source>Target ID (TID) for a device.</source>\n        <translation type=\"unfinished\">Target ID (TID) for a device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1965\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1987\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID (TID) for a device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID (TID) for a device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2004\"/>\n        <source>InfiniBand</source>\n        <translation type=\"unfinished\">InfiniBand</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2007\"/>\n        <source>InfiniBand Settings.</source>\n        <translation type=\"unfinished\">InfiniBand Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2010\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;InfiniBand Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;InfiniBand Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2034\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2067\"/>\n        <source>Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.</source>\n        <translation type=\"unfinished\">Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2043\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2055\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2076\"/>\n        <source>Resource Flags</source>\n        <translation type=\"unfinished\">Resource Flags</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2046\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2079\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2098\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2119\"/>\n        <source>128-bit Global Identifier for remote fabric port</source>\n        <translation type=\"unfinished\">128-bit Global Identifier for remote fabric port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2101\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2122\"/>\n        <source>PORT GID</source>\n        <translation type=\"unfinished\">PORT GID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2104\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2125\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;128-bit Global Identifier for remote fabric port&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;128-bit Global Identifier for remote fabric port&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2135\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2156\"/>\n        <source>64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)</source>\n        <translation type=\"unfinished\">64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2138\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2144\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2159\"/>\n        <source>IOC GUID/Service ID</source>\n        <translation type=\"unfinished\">IOC GUID/Service ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2141\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2162\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2175\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2196\"/>\n        <source>64-bit persistent ID of remote IOC port.</source>\n        <translation type=\"unfinished\">64-bit persistent ID of remote IOC port.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2184\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2199\"/>\n        <source>Target Port ID</source>\n        <translation type=\"unfinished\">Target Port ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2181\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote IOC port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote IOC port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2236\"/>\n        <source>64-bit persistent ID of remote device.</source>\n        <translation type=\"unfinished\">64-bit persistent ID of remote device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2239\"/>\n        <source>Device ID</source>\n        <translation type=\"unfinished\">Device ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2259\"/>\n        <source>MAC Address</source>\n        <translation type=\"unfinished\">MAC Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2262\"/>\n        <source>MAC settings.</source>\n        <translation type=\"unfinished\">MAC settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2289\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2310\"/>\n        <source>The MAC address for a network interface padded with 0s.</source>\n        <translation type=\"unfinished\">The MAC address for a network interface padded with 0s.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2295\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2316\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The MAC address for a network interface padded with 0s.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The MAC address for a network interface padded with 0s.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2329\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2351\"/>\n        <source>Network interface type (i.e., 802.3, FDDI). See RFC 3232.</source>\n        <translation type=\"unfinished\">Network interface type (i.e., 802.3, FDDI). See RFC 3232.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2357\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network interface type (i.e., 802.3, FDDI). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network interface type (i.e., 802.3, FDDI). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2377\"/>\n        <source>IPv4 settings.</source>\n        <translation type=\"unfinished\">IPv4 settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2425\"/>\n        <source>The local IPv4 address.</source>\n        <translation type=\"unfinished\">The local IPv4 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2407\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2763\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2784\"/>\n        <source>Local IP Address</source>\n        <translation type=\"unfinished\">Local IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2431\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2465\"/>\n        <source>The remote IPv4 address.</source>\n        <translation type=\"unfinished\">The remote IPv4 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2447\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2824\"/>\n        <source>Remote IP Address</source>\n        <translation type=\"unfinished\">Remote IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2471\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2862\"/>\n        <source>The local port number.</source>\n        <translation type=\"unfinished\">The local port number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2487\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2865\"/>\n        <source>Local Port</source>\n        <translation type=\"unfinished\">Local Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2490\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2547\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2903\"/>\n        <source>The remote port number.</source>\n        <translation type=\"unfinished\">The remote port number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2550\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2906\"/>\n        <source>Remote Port</source>\n        <translation type=\"unfinished\">Remote Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2553\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2909\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2566\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2588\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2922\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2944\"/>\n        <source>The network protocol (i.e., UDP, TCP). See RFC 3232.</source>\n        <translation type=\"unfinished\">The network protocol (i.e., UDP, TCP). See RFC 3232.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2928\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2950\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The network protocol (i.e., UDP, TCP). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The network protocol (i.e., UDP, TCP). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2631\"/>\n        <source>0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.</source>\n        <translation type=\"unfinished\">0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2635\"/>\n        <source>Static IP Address</source>\n        <translation type=\"unfinished\">Static IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2667\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3083\"/>\n        <source>The Gateway IP Address.</source>\n        <translation type=\"unfinished\">The Gateway IP Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3071\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3086\"/>\n        <source>Gateway IP Address</source>\n        <translation type=\"unfinished\">Gateway IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2673\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Gateway IP Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Gateway IP Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2686\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2707\"/>\n        <source>Subnet mask.</source>\n        <translation type=\"unfinished\">Subnet mask.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2689\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2695\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2710\"/>\n        <source>Subnet Mask</source>\n        <translation type=\"unfinished\">Subnet Mask</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2733\"/>\n        <source>IPv6 settings.</source>\n        <translation type=\"unfinished\">IPv6 settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2760\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2781\"/>\n        <source>The local IPv6 address.</source>\n        <translation type=\"unfinished\">The local IPv6 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2787\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2821\"/>\n        <source>The remote IPv6 address.</source>\n        <translation type=\"unfinished\">The remote IPv6 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2963\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2989\"/>\n        <source>0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.</source>\n        <translation type=\"unfinished\">0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2976\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2994\"/>\n        <source>IP Address Origin</source>\n        <translation type=\"unfinished\">IP Address Origin</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2971\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2997\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3021\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3043\"/>\n        <source>The Prefix Length.</source>\n        <translation type=\"unfinished\">The Prefix Length.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3024\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3030\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3046\"/>\n        <source>Prefix Length</source>\n        <translation type=\"unfinished\">Prefix Length</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3027\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3049\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Prefix Length.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Prefix Length.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3106\"/>\n        <source>UART</source>\n        <translation type=\"unfinished\">UART</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3109\"/>\n        <source>UART Settings.</source>\n        <translation type=\"unfinished\">UART Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3112\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3176\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3197\"/>\n        <source>The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.</source>\n        <translation type=\"unfinished\">The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3179\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3185\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3200\"/>\n        <source>Baud Rate</source>\n        <translation type=\"unfinished\">Baud Rate</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3182\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3203\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3216\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3238\"/>\n        <source>The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.</source>\n        <translation type=\"unfinished\">The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3219\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3225\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3241\"/>\n        <source>Data Bits</source>\n        <translation type=\"unfinished\">Data Bits</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3222\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3257\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3291\"/>\n        <source>The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.</source>\n        <translation type=\"unfinished\">The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3266\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3300\"/>\n        <source>Parity</source>\n        <translation type=\"unfinished\">Parity</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3303\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3313\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3394\"/>\n        <source>Default</source>\n        <translation type=\"unfinished\">Default</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3318\"/>\n        <source>No</source>\n        <translation type=\"unfinished\">No</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3323\"/>\n        <source>Even</source>\n        <translation type=\"unfinished\">Even</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3328\"/>\n        <source>Odd</source>\n        <translation type=\"unfinished\">Odd</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3333\"/>\n        <source>Mark</source>\n        <translation type=\"unfinished\">Mark</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3338\"/>\n        <source>Space</source>\n        <translation type=\"unfinished\">Space</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3346\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3376\"/>\n        <source>The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.</source>\n        <translation type=\"unfinished\">The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3353\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3363\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3383\"/>\n        <source>Stop Bits</source>\n        <translation type=\"unfinished\">Stop Bits</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3356\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3399\"/>\n        <source>1</source>\n        <translation type=\"unfinished\">1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3404\"/>\n        <source>1.5</source>\n        <translation type=\"unfinished\">1.5</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3409\"/>\n        <source>2</source>\n        <translation type=\"unfinished\">2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3421\"/>\n        <source>USB Class</source>\n        <translation type=\"unfinished\">USB Class</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3424\"/>\n        <source>USB Class Settings.</source>\n        <translation type=\"unfinished\">USB Class Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3427\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Class Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Class Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3451\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3472\"/>\n        <source>Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.</source>\n        <translation type=\"unfinished\">Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3454\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3460\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3475\"/>\n        <source>Vendor ID</source>\n        <translation type=\"unfinished\">Vendor ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3457\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3478\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3491\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3512\"/>\n        <source>Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.</source>\n        <translation type=\"unfinished\">Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3515\"/>\n        <source>Product ID</source>\n        <translation type=\"unfinished\">Product ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3518\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3552\"/>\n        <source>The class code assigned by the USB-IF. A value of 0xFF will match any class code.</source>\n        <translation type=\"unfinished\">The class code assigned by the USB-IF. A value of 0xFF will match any class code.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3540\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3555\"/>\n        <source>Device Class</source>\n        <translation type=\"unfinished\">Device Class</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3537\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3558\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The class code assigned by the USB-IF. A value of 0xFF will match any class code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The class code assigned by the USB-IF. A value of 0xFF will match any class code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3592\"/>\n        <source>The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.</source>\n        <translation type=\"unfinished\">The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3574\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3595\"/>\n        <source>Device Subclass</source>\n        <translation type=\"unfinished\">Device Subclass</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3632\"/>\n        <source>The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.</source>\n        <translation type=\"unfinished\">The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3635\"/>\n        <source>Device Protocol</source>\n        <translation type=\"unfinished\">Device Protocol</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3617\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3655\"/>\n        <source>USB WWID</source>\n        <translation type=\"unfinished\">USB WWID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3658\"/>\n        <source>This device path describes a USB device using its serial number.</source>\n        <translation type=\"unfinished\">This device path describes a USB device using its serial number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3661\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a USB device using its serial number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a USB device using its serial number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3685\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3707\"/>\n        <source>USB interface Number.</source>\n        <translation type=\"unfinished\">USB interface Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3747\"/>\n        <source>USB vendor id of the device.</source>\n        <translation type=\"unfinished\">USB vendor id of the device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3750\"/>\n        <source>Device Vendor Id</source>\n        <translation type=\"unfinished\">Device Vendor Id</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3753\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB vendor id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB vendor id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3787\"/>\n        <source>USB product id of the device.</source>\n        <translation type=\"unfinished\">USB product id of the device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3790\"/>\n        <source>Device Product Id</source>\n        <translation type=\"unfinished\">Device Product Id</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3793\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB product id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB product id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3828\"/>\n        <source>Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).</source>\n        <translation type=\"unfinished\">Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3815\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3831\"/>\n        <source>Serial Number</source>\n        <translation type=\"unfinished\">Serial Number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3812\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3845\"/>\n        <source>Device Logical Unit</source>\n        <translation type=\"unfinished\">Device Logical Unit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3848\"/>\n        <source>Device Logical Unit Settings.</source>\n        <translation type=\"unfinished\">Device Logical Unit Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3851\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device Logical Unit Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device Logical Unit Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3897\"/>\n        <source>Logical Unit Number for the interface.</source>\n        <translation type=\"unfinished\">Logical Unit Number for the interface.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3903\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number for the interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number for the interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3923\"/>\n        <source>SATA settings.</source>\n        <translation type=\"unfinished\">SATA settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3950\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3972\"/>\n        <source>The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.</source>\n        <translation type=\"unfinished\">The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3953\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3975\"/>\n        <source>HBA Port</source>\n        <translation type=\"unfinished\">HBA Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3956\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3978\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4013\"/>\n        <source>The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.</source>\n        <translation type=\"unfinished\">The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4000\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4016\"/>\n        <source>Port Multiplier Port</source>\n        <translation type=\"unfinished\">Port Multiplier Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3997\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4019\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4077\"/>\n        <source>iSCSI</source>\n        <translation type=\"unfinished\">iSCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4080\"/>\n        <source>iSCSI Settings.</source>\n        <translation type=\"unfinished\">iSCSI Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4083\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4129\"/>\n        <source>Network Protocol (0 = TCP, 1+ = reserved).</source>\n        <translation type=\"unfinished\">Network Protocol (0 = TCP, 1+ = reserved).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4113\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network Protocol (0 = TCP, 1+ = reserved).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network Protocol (0 = TCP, 1+ = reserved).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4148\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4169\"/>\n        <source>iSCSI Login Options.</source>\n        <translation type=\"unfinished\">iSCSI Login Options.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4151\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4172\"/>\n        <source>Options</source>\n        <translation type=\"unfinished\">Options</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4154\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4175\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Login Options.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Login Options.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4188\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4209\"/>\n        <source>8 byte array containing the iSCSI Logical Unit Number.</source>\n        <translation type=\"unfinished\">8 byte array containing the iSCSI Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4194\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing the iSCSI Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing the iSCSI Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4228\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4250\"/>\n        <source>iSCSI Target Portal group tag the initiator intends to establish a session with.</source>\n        <translation type=\"unfinished\">iSCSI Target Portal group tag the initiator intends to establish a session with.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4231\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4253\"/>\n        <source>Target Portal Group</source>\n        <translation type=\"unfinished\">Target Portal Group</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4234\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4256\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Target Portal group tag the initiator intends to establish a session with.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Target Portal group tag the initiator intends to establish a session with.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4291\"/>\n        <source>iSCSI NodeTarget Name.</source>\n        <translation type=\"unfinished\">iSCSI NodeTarget Name.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4272\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4294\"/>\n        <source>Target Name</source>\n        <translation type=\"unfinished\">Target Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4275\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4297\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI NodeTarget Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI NodeTarget Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4308\"/>\n        <source>VLAN</source>\n        <translation type=\"unfinished\">VLAN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4311\"/>\n        <source>VLAN Settings.</source>\n        <translation type=\"unfinished\">VLAN Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4314\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4360\"/>\n        <source>VLAN identifier (0-4094).</source>\n        <translation type=\"unfinished\">VLAN identifier (0-4094).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4341\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4347\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4363\"/>\n        <source>Vlan ID</source>\n        <translation type=\"unfinished\">Vlan ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4344\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4366\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN identifier (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN identifier (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4383\"/>\n        <source>Fibre Channel Ex</source>\n        <translation type=\"unfinished\">Fibre Channel Ex</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4386\"/>\n        <source>The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation type=\"unfinished\">The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4389\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4474\"/>\n        <source>8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).</source>\n        <translation type=\"unfinished\">8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4480\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4514\"/>\n        <source>8 byte array containing Fibre Channel Logical Unit Number.</source>\n        <translation type=\"unfinished\">8 byte array containing Fibre Channel Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4499\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4520\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4537\"/>\n        <source>SAS Extended Messaging</source>\n        <translation type=\"unfinished\">SAS Extended Messaging</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4540\"/>\n        <source>The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation type=\"unfinished\">The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4543\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4567\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4588\"/>\n        <source>8-byte array of the SAS Address for Serial Attached SCSI Target Port.</source>\n        <translation type=\"unfinished\">8-byte array of the SAS Address for Serial Attached SCSI Target Port.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4570\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4576\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4591\"/>\n        <source>SAS Address</source>\n        <translation type=\"unfinished\">SAS Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4573\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4594\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Address for Serial Attached SCSI Target Port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Address for Serial Attached SCSI Target Port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4628\"/>\n        <source>8-byte array of the SAS Logical Unit Number.</source>\n        <translation type=\"unfinished\">8-byte array of the SAS Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4613\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4634\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4647\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4668\"/>\n        <source>More Information about the device and its interconnect.</source>\n        <translation type=\"unfinished\">More Information about the device and its interconnect.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4650\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4656\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4671\"/>\n        <source>Device and Topology Info</source>\n        <translation type=\"unfinished\">Device and Topology Info</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4653\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4674\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;More Information about the device and its interconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;More Information about the device and its interconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4687\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4709\"/>\n        <source>Relative Target Port (RTP).</source>\n        <translation type=\"unfinished\">Relative Target Port (RTP).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4690\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4696\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4712\"/>\n        <source>Relative Target Port</source>\n        <translation type=\"unfinished\">Relative Target Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4715\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Relative Target Port (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Relative Target Port (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4732\"/>\n        <source>NVM Express NS</source>\n        <translation type=\"unfinished\">NVM Express NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4735\"/>\n        <source>NVM Express Namespace Settings.</source>\n        <translation type=\"unfinished\">NVM Express Namespace Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4738\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM Express Namespace Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM Express Namespace Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4783\"/>\n        <source>Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.</source>\n        <translation type=\"unfinished\">Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4765\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4771\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4786\"/>\n        <source>NSID</source>\n        <translation type=\"unfinished\">NSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4768\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4789\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4802\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4823\"/>\n        <source>This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.</source>\n        <translation type=\"unfinished\">This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4805\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4811\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4826\"/>\n        <source>EUI-64</source>\n        <translation type=\"unfinished\">EUI-64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4808\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4829\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4849\"/>\n        <source>Refer to RFC 3986 for details on the URI contents.</source>\n        <translation type=\"unfinished\">Refer to RFC 3986 for details on the URI contents.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Refer to RFC 3986 for details on the URI contents.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Refer to RFC 3986 for details on the URI contents.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4876\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4898\"/>\n        <source>Instance of the URI pursuant to RFC 3986.</source>\n        <translation type=\"unfinished\">Instance of the URI pursuant to RFC 3986.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4882\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Instance of the URI pursuant to RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Instance of the URI pursuant to RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4915\"/>\n        <source>UFS</source>\n        <translation type=\"unfinished\">UFS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4918\"/>\n        <source>UFS Settings.</source>\n        <translation type=\"unfinished\">UFS Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4966\"/>\n        <source>Target ID on the UFS interface (PUN).</source>\n        <translation type=\"unfinished\">Target ID on the UFS interface (PUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4972\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the UFS interface (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the UFS interface (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5029\"/>\n        <source>SD</source>\n        <translation type=\"unfinished\">SD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5032\"/>\n        <source>SD Settings.</source>\n        <translation type=\"unfinished\">SD Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5035\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5081\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5299\"/>\n        <source>Slot Number</source>\n        <translation type=\"unfinished\">Slot Number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5084\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5280\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5286\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5302\"/>\n        <source>Slot</source>\n        <translation type=\"unfinished\">Slot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5087\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5283\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5305\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Slot Number&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Slot Number&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5104\"/>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\">Bluetooth</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5107\"/>\n        <source>EFI Bluetooth Settings.</source>\n        <translation type=\"unfinished\">EFI Bluetooth Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5110\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI Bluetooth Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI Bluetooth Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5155\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5373\"/>\n        <source>48-bit Bluetooth device address.</source>\n        <translation type=\"unfinished\">48-bit Bluetooth device address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5143\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5158\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5361\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5376\"/>\n        <source>Device Address</source>\n        <translation type=\"unfinished\">Device Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5161\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5379\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-bit Bluetooth device address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-bit Bluetooth device address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5178\"/>\n        <source>Wi-Fi</source>\n        <translation type=\"unfinished\">Wi-Fi</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5181\"/>\n        <source>Wi-Fi Settings.</source>\n        <translation type=\"unfinished\">Wi-Fi Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5184\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wi-Fi Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wi-Fi Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5208\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5230\"/>\n        <source>SSID in octet string.</source>\n        <translation type=\"unfinished\">SSID in octet string.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5211\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5217\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5233\"/>\n        <source>SSID</source>\n        <translation type=\"unfinished\">SSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5214\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5236\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID in octet string.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID in octet string.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5247\"/>\n        <source>eMMC</source>\n        <translation type=\"unfinished\">eMMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5250\"/>\n        <source>Embedded Multi-Media Card Settings.</source>\n        <translation type=\"unfinished\">Embedded Multi-Media Card Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5253\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Embedded Multi-Media Card Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Embedded Multi-Media Card Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5322\"/>\n        <source>BluetoothLE</source>\n        <translation type=\"unfinished\">BluetoothLE</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5325\"/>\n        <source>EFI BluetoothLE Settings.</source>\n        <translation type=\"unfinished\">EFI BluetoothLE Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5328\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI BluetoothLE Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI BluetoothLE Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5416\"/>\n        <source>0x00 - Public Device Address.\n0x01 - Random Device Address.</source>\n        <translation type=\"unfinished\">0x00 - Public Device Address.\n0x01 - Random Device Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5396\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5403\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5420\"/>\n        <source>Address Type</source>\n        <translation type=\"unfinished\">Address Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5399\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5423\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Public Device Address.\n0x01 - Random Device Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Public Device Address.\n0x01 - Random Device Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5428\"/>\n        <source>Public</source>\n        <translation type=\"unfinished\">Public</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5433\"/>\n        <source>Random</source>\n        <translation type=\"unfinished\">Random</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5445\"/>\n        <source>DNS</source>\n        <translation type=\"unfinished\">DNS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5448\"/>\n        <source>DNS Settings.</source>\n        <translation type=\"unfinished\">DNS Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5451\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DNS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DNS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5499\"/>\n        <source>0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.</source>\n        <translation type=\"unfinished\">0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5482\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5506\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5514\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5575\"/>\n        <source>One or more instances of the DNS server address in EFI_IP_ADDRESS.</source>\n        <translation type=\"unfinished\">One or more instances of the DNS server address in EFI_IP_ADDRESS.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5520\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5581\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;One or more instances of the DNS server address in EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;One or more instances of the DNS server address in EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5536\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7584\"/>\n        <source>Data format.</source>\n        <translation type=\"unfinished\">Data format.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5592\"/>\n        <source>NVDIMM NS</source>\n        <translation type=\"unfinished\">NVDIMM NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5595\"/>\n        <source>This device path describes a bootable NVDIMM namespace that is defined by a namespace label.</source>\n        <translation type=\"unfinished\">This device path describes a bootable NVDIMM namespace that is defined by a namespace label.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVDIMM namespace that is defined by a namespace label.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVDIMM namespace that is defined by a namespace label.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5622\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5643\"/>\n        <source>Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.</source>\n        <translation type=\"unfinished\">Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5646\"/>\n        <source>UUID</source>\n        <translation type=\"unfinished\">UUID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5628\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5649\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5663\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5698\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5706\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5724\"/>\n        <source>REST Service</source>\n        <translation type=\"unfinished\">REST Service</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5666\"/>\n        <source>REST Service Settings.</source>\n        <translation type=\"unfinished\">REST Service Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5669\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;REST Service Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;REST Service Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5719\"/>\n        <source>0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.</source>\n        <translation type=\"unfinished\">0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5701\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5727\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5733\"/>\n        <source>Redfish</source>\n        <translation type=\"unfinished\">Redfish</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5738\"/>\n        <source>OData</source>\n        <translation type=\"unfinished\">OData</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5743\"/>\n        <source>Vendor specific</source>\n        <translation type=\"unfinished\">Vendor specific</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5775\"/>\n        <source>0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.</source>\n        <translation type=\"unfinished\">0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5755\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5779\"/>\n        <source>Access Mode</source>\n        <translation type=\"unfinished\">Access Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5782\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5787\"/>\n        <source>In-Band</source>\n        <translation type=\"unfinished\">In-Band</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5792\"/>\n        <source>Out-of-band</source>\n        <translation type=\"unfinished\">Out-of-band</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5821\"/>\n        <source>GUID of vendor specific REST service.</source>\n        <translation type=\"unfinished\">GUID of vendor specific REST service.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID of vendor specific REST service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID of vendor specific REST service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5898\"/>\n        <source>Vendor-defined data.</source>\n        <translation type=\"unfinished\">Vendor-defined data.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5915\"/>\n        <source>NVMe-oF NS</source>\n        <translation type=\"unfinished\">NVMe-oF NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5918\"/>\n        <source>This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.</source>\n        <translation type=\"unfinished\">This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5967\"/>\n        <source>Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.</source>\n        <translation type=\"unfinished\">Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5970\"/>\n        <source>NIDT</source>\n        <translation type=\"unfinished\">NIDT</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5973\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5986\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6007\"/>\n        <source>Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.</source>\n        <translation type=\"unfinished\">Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5989\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5995\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6010\"/>\n        <source>NID</source>\n        <translation type=\"unfinished\">NID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5992\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6013\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6023\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6045\"/>\n        <source>Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.</source>\n        <translation type=\"unfinished\">Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6026\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6048\"/>\n        <source>Subsystem NQN</source>\n        <translation type=\"unfinished\">Subsystem NQN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6029\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6051\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6066\"/>\n        <source>Hard Drive</source>\n        <translation type=\"unfinished\">Hard Drive</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6069\"/>\n        <source>The Hard Drive Media Device Path is used to represent a partition on a hard drive.</source>\n        <translation type=\"unfinished\">The Hard Drive Media Device Path is used to represent a partition on a hard drive.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6072\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Hard Drive Media Device Path is used to represent a partition on a hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Hard Drive Media Device Path is used to represent a partition on a hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6174\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6196\"/>\n        <source>Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].</source>\n        <translation type=\"unfinished\">Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6180\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6236\"/>\n        <source>Starting LBA of the partition on the hard drive.</source>\n        <translation type=\"unfinished\">Starting LBA of the partition on the hard drive.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6466\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6487\"/>\n        <source>Partition Start</source>\n        <translation type=\"unfinished\">Partition Start</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting LBA of the partition on the hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting LBA of the partition on the hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6255\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6276\"/>\n        <source>Size of the partition in units of Logical Blocks.</source>\n        <translation type=\"unfinished\">Size of the partition in units of Logical Blocks.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6258\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6264\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6279\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6527\"/>\n        <source>Partition Size</source>\n        <translation type=\"unfinished\">Partition Size</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6261\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6282\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Logical Blocks.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Logical Blocks.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6295\"/>\n        <source>Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation type=\"unfinished\">Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6301\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6310\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6367\"/>\n        <source>Partition Signature</source>\n        <translation type=\"unfinished\">Partition Signature</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6304\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6322\"/>\n        <source>PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.</source>\n        <translation type=\"unfinished\">PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6328\"/>\n        <source>Signature Type</source>\n        <translation type=\"unfinished\">Signature Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6331\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6338\"/>\n        <source>None</source>\n        <translation type=\"unfinished\">None</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6361\"/>\n        <source>Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation type=\"unfinished\">Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6370\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6392\"/>\n        <source>CD-ROM</source>\n        <translation type=\"unfinished\">CD-ROM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6395\"/>\n        <source>The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.</source>\n        <translation type=\"unfinished\">The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6398\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6444\"/>\n        <source>Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.</source>\n        <translation type=\"unfinished\">Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6425\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6431\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6447\"/>\n        <source>Boot Entry</source>\n        <translation type=\"unfinished\">Boot Entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6450\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6463\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6484\"/>\n        <source>Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.</source>\n        <translation type=\"unfinished\">Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6469\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6490\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6524\"/>\n        <source>Size of the partition in units of Blocks, also called Sectors.</source>\n        <translation type=\"unfinished\">Size of the partition in units of Blocks, also called Sectors.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6530\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Blocks, also called Sectors.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Blocks, also called Sectors.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6547\"/>\n        <source>File Path</source>\n        <translation type=\"unfinished\">File Path</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6550\"/>\n        <source>File Path settings.</source>\n        <translation type=\"unfinished\">File Path settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6553\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File Path settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File Path settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6599\"/>\n        <source>Path including directory and file names.</source>\n        <translation type=\"unfinished\">Path including directory and file names.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6586\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6602\"/>\n        <source>Path Name</source>\n        <translation type=\"unfinished\">Path Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6583\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6605\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Path including directory and file names.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Path including directory and file names.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6619\"/>\n        <source>The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.</source>\n        <translation type=\"unfinished\">The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6622\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6667\"/>\n        <source>The ID of the protocol.</source>\n        <translation type=\"unfinished\">The ID of the protocol.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6673\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ID of the protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ID of the protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6687\"/>\n        <source>Firmware File</source>\n        <translation type=\"unfinished\">Firmware File</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6690\"/>\n        <source>Describes a firmware file in a firmware volume.</source>\n        <translation type=\"unfinished\">Describes a firmware file in a firmware volume.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6693\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware file in a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware file in a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6717\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6738\"/>\n        <source>Firmware file name GUID.</source>\n        <translation type=\"unfinished\">Firmware file name GUID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6723\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6744\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware file name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware file name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6758\"/>\n        <source>Firmware Volume</source>\n        <translation type=\"unfinished\">Firmware Volume</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6761\"/>\n        <source>Describes a firmware volume.</source>\n        <translation type=\"unfinished\">Describes a firmware volume.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6764\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6809\"/>\n        <source>Firmware volume name GUID.</source>\n        <translation type=\"unfinished\">Firmware volume name GUID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware volume name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware volume name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6829\"/>\n        <source>Relative Offset Range</source>\n        <translation type=\"unfinished\">Relative Offset Range</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6832\"/>\n        <source>This device path node specifies a range of offsets relative to the first byte available on the device.</source>\n        <translation type=\"unfinished\">This device path node specifies a range of offsets relative to the first byte available on the device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6835\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path node specifies a range of offsets relative to the first byte available on the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path node specifies a range of offsets relative to the first byte available on the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6880\"/>\n        <source>Reserved for future use.</source>\n        <translation type=\"unfinished\">Reserved for future use.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6886\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved for future use.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved for future use.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6899\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6920\"/>\n        <source>Offset of the first byte, relative to the parent device node.</source>\n        <translation type=\"unfinished\">Offset of the first byte, relative to the parent device node.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6902\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6908\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6923\"/>\n        <source>Starting Offset</source>\n        <translation type=\"unfinished\">Starting Offset</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6905\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the first byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the first byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6939\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6960\"/>\n        <source>Offset of the last byte, relative to the parent device node.</source>\n        <translation type=\"unfinished\">Offset of the last byte, relative to the parent device node.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6942\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6963\"/>\n        <source>Ending Offset</source>\n        <translation type=\"unfinished\">Ending Offset</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6966\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the last byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the last byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6983\"/>\n        <source>RAM Disk</source>\n        <translation type=\"unfinished\">RAM Disk</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6986\"/>\n        <source>RAM Disk Settings.</source>\n        <translation type=\"unfinished\">RAM Disk Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6989\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7016\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7037\"/>\n        <source>Starting Address</source>\n        <translation type=\"unfinished\">Starting Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7056\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7077\"/>\n        <source>Ending Address</source>\n        <translation type=\"unfinished\">Ending Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7093\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7114\"/>\n        <source>GUID that defines the type of the RAM Disk.</source>\n        <translation type=\"unfinished\">GUID that defines the type of the RAM Disk.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7120\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID that defines the type of the RAM Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID that defines the type of the RAM Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7130\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7152\"/>\n        <source>RAM Disk instance number, if supported.</source>\n        <translation type=\"unfinished\">RAM Disk instance number, if supported.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7133\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7155\"/>\n        <source>Disk Instance</source>\n        <translation type=\"unfinished\">Disk Instance</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7158\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk instance number, if supported.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk instance number, if supported.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7179\"/>\n        <source>This Device Path is used to describe the booting of non-EFI-aware operating systems.</source>\n        <translation type=\"unfinished\">This Device Path is used to describe the booting of non-EFI-aware operating systems.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7182\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path is used to describe the booting of non-EFI-aware operating systems.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path is used to describe the booting of non-EFI-aware operating systems.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7206\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7249\"/>\n        <source>An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.</source>\n        <translation type=\"unfinished\">An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7220\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7263\"/>\n        <source>Device Type</source>\n        <translation type=\"unfinished\">Device Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7223\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7290\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7347\"/>\n        <source>Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero</source>\n        <translation type=\"unfinished\">Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7311\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7368\"/>\n        <source>Status Flag</source>\n        <translation type=\"unfinished\">Status Flag</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7371\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7402\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7424\"/>\n        <source>String that describes the boot device to a user.</source>\n        <translation type=\"unfinished\">String that describes the boot device to a user.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7408\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7430\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;String that describes the boot device to a user.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;String that describes the boot device to a user.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7543\"/>\n        <source>Vendor-assigned GUID that defines the data that follows.</source>\n        <translation type=\"unfinished\">Vendor-assigned GUID that defines the data that follows.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7549\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-assigned GUID that defines the data that follows.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-assigned GUID that defines the data that follows.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7562\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7622\"/>\n        <source>Vendor-defined variable size data.</source>\n        <translation type=\"unfinished\">Vendor-defined variable size data.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7568\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7628\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined variable size data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined variable size data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7642\"/>\n        <source>Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.</source>\n        <translation type=\"unfinished\">Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7645\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7721\"/>\n        <source>Unknown file path specifier settings</source>\n        <translation type=\"unfinished\">Unknown file path specifier settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7724\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown file path specifier settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown file path specifier settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7748\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7772\"/>\n        <source>Unknown Type</source>\n        <translation type=\"unfinished\">Unknown Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7754\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7775\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7812\"/>\n        <source>Unknown Sub-Type</source>\n        <translation type=\"unfinished\">Unknown Sub-Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7828\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7831\"/>\n        <source>Unknown data</source>\n        <translation type=\"unfinished\">Unknown data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/filepathdialog.cpp\" line=\"1569\"/>\n        <source>Couldn&apos;t change data format!</source>\n        <translation type=\"unfinished\">Couldn&apos;t change data format!</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeyListModel</name>\n    <message>\n        <location filename=\"../src/hotkeylistmodel.cpp\" line=\"100\"/>\n        <source>boot option</source>\n        <translation type=\"unfinished\">boot option</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Boot option</source>\n        <translation type=\"unfinished\">Boot option</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Hot key</source>\n        <translation type=\"unfinished\">Hot key</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Vendor data</source>\n        <translation type=\"unfinished\">Vendor data</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeysDialog</name>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"20\"/>\n        <source>Hot Keys editor</source>\n        <translation type=\"unfinished\">Hot Keys editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"41\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"44\"/>\n        <source>Hot Keys</source>\n        <translation type=\"unfinished\">Hot Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"47\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"125\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"128\"/>\n        <source>Index filter</source>\n        <translation type=\"unfinished\">Index filter</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"131\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Index filter&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Index filter&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"163\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"166\"/>\n        <source>Remove hot key</source>\n        <translation type=\"unfinished\">Remove hot key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"191\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"194\"/>\n        <source>Add hot key</source>\n        <translation type=\"unfinished\">Add hot key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"197\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <location filename=\"../include/commands.h\" line=\"21\"/>\n        <location filename=\"../include/commands.h\" line=\"66\"/>\n        <source>Change %1 to &quot;%2&quot;</source>\n        <translation type=\"unfinished\">Change %1 to &quot;%2&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"35\"/>\n        <source>Insert %1 entry &quot;%2&quot; at position %3</source>\n        <translation type=\"unfinished\">Insert %1 entry &quot;%2&quot; at position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"50\"/>\n        <source>Remove %1 entry &quot;%2&quot; from position %3</source>\n        <translation type=\"unfinished\">Remove %1 entry &quot;%2&quot; from position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"73\"/>\n        <location filename=\"../src/commands.cpp\" line=\"116\"/>\n        <source>Move %1 entry &quot;%2&quot; from position %3 to %4</source>\n        <translation type=\"unfinished\">Move %1 entry &quot;%2&quot; from position %3 to %4</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <location filename=\"../include/commands.h\" line=\"157\"/>\n        <location filename=\"../include/commands.h\" line=\"198\"/>\n        <source>Change %1 entry &quot;%2&quot; %3 to &quot;%4&quot;</source>\n        <translation type=\"unfinished\">Change %1 entry &quot;%2&quot; %3 to &quot;%4&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <source>Optional data</source>\n        <translation type=\"unfinished\">Optional data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"227\"/>\n        <source>Insert %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation type=\"unfinished\">Insert %1 entry &quot;%2&quot; file path at position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"242\"/>\n        <source>Remove %1 entry &quot;%2&quot; file path from position %3</source>\n        <translation type=\"unfinished\">Remove %1 entry &quot;%2&quot; file path from position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"257\"/>\n        <source>Set %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation type=\"unfinished\">Set %1 entry &quot;%2&quot; file path at position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <source>Insert %1 entry at position %2</source>\n        <translation type=\"unfinished\">Insert %1 entry at position %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>Key</source>\n        <translation type=\"unfinished\">Key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <source>Remove %1 entry from position %2</source>\n        <translation type=\"unfinished\">Remove %1 entry from position %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <location filename=\"../include/commands.h\" line=\"362\"/>\n        <location filename=\"../include/commands.h\" line=\"403\"/>\n        <source>Change %1 entry at position %2 %3 to &quot;%4&quot;</source>\n        <translation type=\"unfinished\">Change %1 entry at position %2 %3 to &quot;%4&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>keys</source>\n        <translation type=\"unfinished\">keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"293\"/>\n        <location filename=\"../src/commands.cpp\" line=\"333\"/>\n        <source>Move %1 entry &quot;%2&quot; file path from position %3 to %4</source>\n        <translation type=\"unfinished\">Move %1 entry &quot;%2&quot; file path from position %3 to %4</translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/efibooteditor_de.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"de\" sourcelanguage=\"en_US\">\n<context>\n    <name>BootEntryForm</name>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"169\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"172\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"182\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"185\"/>\n        <source>Description</source>\n        <translation>Beschreibung</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"198\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"201\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"204\"/>\n        <source>Path</source>\n        <translation>Pfad</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"415\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"418\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"478\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"481\"/>\n        <source>Optional data</source>\n        <translation>Optionale Daten</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"421\"/>\n        <source>Optional</source>\n        <translation>Optional</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"434\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"437\"/>\n        <source>Optional data format</source>\n        <translation>Optionales Datenformat</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"6\"/>\n        <source>Boot entry form</source>\n        <translation>Booteintragformular</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"24\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"27\"/>\n        <source>Error</source>\n        <translation>Fehler</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"40\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"43\"/>\n        <source>Error note</source>\n        <translation>Fehlerhinweis</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"46\"/>\n        <source>This entry placeholder is shown here to indicate it&apos;s referenced in boot order. It won&apos;t be modified on save, just left as is.</source>\n        <translation>Der Platzhalter für diesen Eintrag wird hier angezeigt, um zu verdeutlichen, dass er in der Bootreihenfolge referenziert wird. Er wird beim Speichern nicht verändert, sondern einfach so belassen, wie er ist.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"147\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"150\"/>\n        <source>Hot Keys</source>\n        <translation>Tastenkürzel</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Tastenkürzel&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"188\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry description.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Eintrag Beschreibung.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"222\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"225\"/>\n        <source>Device path</source>\n        <translation>Gerätepfad</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Gerätepfad.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"280\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"283\"/>\n        <source>Move file path up</source>\n        <translation>Dateipfad nach oben verschieben</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"286\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dateipfad nach oben verschieben.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"305\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"308\"/>\n        <source>Move file path down</source>\n        <translation>Dateipfad nach unten verschieben</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"311\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dateipfad nach unten verschieben.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"330\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"333\"/>\n        <source>Remove file path</source>\n        <translation>Dateipfad entfernen</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"336\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dateipfad entfernen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"355\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"358\"/>\n        <source>Edit file path</source>\n        <translation>Dateipfad bearbeiten</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"361\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Edit file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dateipfad bearbeiten.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"380\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"383\"/>\n        <source>Add file path</source>\n        <translation>Dateipfad hinzufügen</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt; Dateipfad hinzufügen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optionales Datenformat.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"444\"/>\n        <source>BASE64</source>\n        <translation>BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"449\"/>\n        <source>UTF-16</source>\n        <translation>UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"454\"/>\n        <source>UTF-8</source>\n        <translation>UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"459\"/>\n        <source>HEX</source>\n        <translation>HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"484\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry optional data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optionale Daten eingeben.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"497\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"500\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"503\"/>\n        <source>Attributes</source>\n        <translation>Eigenschaften</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"623\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry category.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Eingabe der Kategorie.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"122\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Eintragsindex.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"540\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Is entry considered for automatic boot?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wird der Eintrag für den automatischen Boot berücksichtigt?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"569\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hidden.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Versteckt.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"585\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Force reconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wiederverbinden erzwingen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"534\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"537\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"543\"/>\n        <source>Active</source>\n        <translation>Aktiv</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"579\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"582\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"588\"/>\n        <source>Force reconnect</source>\n        <translation>Wiederverbinden erzwingen</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"563\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"566\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"572\"/>\n        <source>Hidden</source>\n        <translation>Versteckt</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"598\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"601\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"604\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"617\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"620\"/>\n        <source>Category</source>\n        <translation>Kategorie</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"627\"/>\n        <source>Boot</source>\n        <translation>Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"632\"/>\n        <source>App</source>\n        <translation>Anwendung</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"68\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"71\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"74\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"116\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"119\"/>\n        <source>Index</source>\n        <translation>Index</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentryform.cpp\" line=\"117\"/>\n        <source>Couldn&apos;t change optional data format!</source>\n        <translation>Konnte das optionale Datenformat nicht ändern!</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryListModel</name>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"88\"/>\n        <source>Set Next boot to &quot;%1&quot;</source>\n        <translation>Nächsten Boot auf „%1“ setzen</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"184\"/>\n        <source>index</source>\n        <translation>Index</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"200\"/>\n        <source>description</source>\n        <translation>Beschreibung</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"237\"/>\n        <source>optional data</source>\n        <translation>optionale Daten</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"253\"/>\n        <source>attributes</source>\n        <translation>Attribute</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"269\"/>\n        <source>next boot</source>\n        <translation>nächster Bootvorgang</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryWidget</name>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"12\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"221\"/>\n        <source>Boot entry</source>\n        <translation>Booteintrag</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"36\"/>\n        <source>Next boot</source>\n        <translation>Nächster Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"39\"/>\n        <source>Run at next boot</source>\n        <translation>Beim nächsten Boot ausführen</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"42\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;When chosen, entry will run at next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wenn ausgewählt, wird der Eintrag beim nächsten Booten ausgeführt.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"140\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"143\"/>\n        <source>Current boot</source>\n        <translation>Aktueller Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This entry is currently booted.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dieser Eintrag wird derzeit gebootet.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"181\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Index des Booteintrags.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"218\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry description, human readable name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Beschreibung des Booteintrags, menschenlesbarer Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"67\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"70\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"76\"/>\n        <source>Device path</source>\n        <translation>Gerätepfad</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"73\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot-Gerätepfad.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"113\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data, arguments passed to boot executable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optionale Daten, Argumente, die an die Boot-Ausführung übergeben werden.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"178\"/>\n        <source>Boot entry index</source>\n        <translation>Index des Booteintrags</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"184\"/>\n        <source>Index</source>\n        <translation>Index</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"212\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"215\"/>\n        <source>Boot entry description</source>\n        <translation>Beschreibung des Booteintrags</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"107\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"110\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"116\"/>\n        <source>Optional data</source>\n        <translation>Optionale Daten</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootData</name>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"111\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"813\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1027\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1361\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1472\"/>\n        <source>%1: not found</source>\n        <translation>%1: nicht gefunden</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"120\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"821\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1387\"/>\n        <source>%1: failed deserialization</source>\n        <translation>%1: fehlgeschlagene Deserialisierung</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Error loading entries</source>\n        <translation>Fehler beim Laden von Einträgen</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Failed to load some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>Einige EFI Boot Manager-Einträge konnten nicht geladen werden:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Error saving entries</source>\n        <translation>Fehler beim Speichern von Einträgen</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Entry %1(%2): duplicated index!</source>\n        <translation>Eintrag %1(%2): duplizierter Index!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"389\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"419\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"458\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"479\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"487\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"516\"/>\n        <source>Error saving %1</source>\n        <translation>Fehler beim Speichern von %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"407\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"470\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"504\"/>\n        <source>Error removing %1</source>\n        <translation>Fehler beim Entfernen von %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Error importing boot configuration</source>\n        <translation>Fehler beim Importieren der Boot-Konfiguration</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <source>Couldn&apos;t open selected file (%1).</source>\n        <translation>Die ausgewählte Datei (%1) konnte nicht geöffnet werden.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <source>Parser failed: %1</source>\n        <translation>Parser fehlgeschlagen: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <source>Invalid _Type: %1</source>\n        <translation>Ungültiger _Typ: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <source>Error exporting boot configuration</source>\n        <translation>Fehler beim Exportieren der Boot-Konfiguration</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <source>Couldn&apos;t open selected file (%1): %2.</source>\n        <translation>Ausgewählte Datei (%1) konnte nicht geöffnet werden: %2.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <source>Couldn&apos;t write into file (%1): %2.</source>\n        <translation>Es konnte nicht in die Datei (%1) geschrieben werden: %2.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Error dumping raw EFI data</source>\n        <translation>Fehler beim Dumpen von EFI-Rohdaten</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Failed to dump some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>Einige EFI-Bootmanager-Einträge konnten nicht gedumpt werden:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"905\"/>\n        <source>Timeout</source>\n        <translation>Zeitüberschreitung</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"921\"/>\n        <source>Apple boot-args</source>\n        <translation>Apple-Boot-Argumente</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"937\"/>\n        <source>Firmware actions</source>\n        <translation>Firmware-Aktionen</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"73\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation>Laden der EFI Boot Manager Einträge…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"89\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"787\"/>\n        <source>Searching EFI Boot Manager entries…</source>\n        <translation>Suche nach EFI Boot Manager-Einträgen…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"116\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"292\"/>\n        <source>Processing EFI Boot Manager entries (%1)…</source>\n        <translation>Verarbeitung der EFI Boot Manager-Einträge (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"308\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation>Speichern von EFI Boot Manager-Einträgen…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"333\"/>\n        <source>Searching old EFI Boot Manager entries…</source>\n        <translation>Suche nach alten EFI Boot Manager-Einträgen…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"374\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"416\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"447\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"476\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"484\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"491\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"513\"/>\n        <source>Saving EFI Boot Manager entries (%1)…</source>\n        <translation>Speichern der EFI Boot Manager-Einträge (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"467\"/>\n        <source>Removing old EFI Boot Manager entries (%1)…</source>\n        <translation>Entfernen alter EFI Boot Manager-Einträge (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"404\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"501\"/>\n        <source>Removing EFI Boot Manager entries (%1)…</source>\n        <translation>EFI Boot Manager Einträge werden entfernt (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"94\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"338\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"792\"/>\n        <source>Couldn&apos;t load EFI Boot Manager variables</source>\n        <translation>EFI Boot Manager-Variablen konnten nicht geladen werden</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"100\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"799\"/>\n        <source>Couldn&apos;t find any EFI Boot Manager variables</source>\n        <translation>EFI Boot Manager Variablen konnten nicht gefunden werden</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"529\"/>\n        <source>Importing boot configuration…</source>\n        <translation>Importieren der Boot-Konfiguration…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"565\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"770\"/>\n        <source>Exporting boot configuration…</source>\n        <translation>Exportieren der Boot-Konfiguration…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"587\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"809\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"875\"/>\n        <source>Exporting EFI Boot Manager entries (%1)…</source>\n        <translation>Exportieren von EFI Boot Manager-Einträgen (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1013\"/>\n        <source>Importing boot configuration from JSON…</source>\n        <translation>Importieren der Boot-Konfiguration aus JSON…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1032\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1366\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1477\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1531\"/>\n        <source>Importing EFI Boot Manager entries (%1)…</source>\n        <translation>Importieren von EFI Boot Manager-Einträgen (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1035\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1376\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>%1: %2 expected</source>\n        <translation>%1: %2 erwartet</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1043\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1048\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1053\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <source>number</source>\n        <translation>number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1058\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1063\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1068\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1073\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1078\"/>\n        <source>bool</source>\n        <translation>bool</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1109\"/>\n        <source>%1: unknown boot manager capability</source>\n        <translation>%1: unbekannte Bootmanager-Fähigkeit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1122\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1166\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1212\"/>\n        <source>array</source>\n        <translation>array</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1333\"/>\n        <source>string</source>\n        <translation>string</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1156\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1192\"/>\n        <source>%1: unknown os indication</source>\n        <translation>%1: unbekannte Betriebssystem-Angabe</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1083\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1235\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1264\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1290\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1309\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1328\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>object</source>\n        <translation>object</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <source>hexadecimal number</source>\n        <translation>hexadecimal number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1270\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1315\"/>\n        <source>%1: failed parsing</source>\n        <translation>%1: Lesen fehlgeschlagen</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Failed to import some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>Importieren einiger EFI Boot Manager-Einträge ist fehlgeschlagen:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1347\"/>\n        <source>Importing boot configuration from raw dump…</source>\n        <translation>Importieren der Boot-Konfiguration aus einem Rohdump…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1379\"/>\n        <source>object(raw_data: string, efi_attributes: number)</source>\n        <extracomment>Expected JSON structure, thrown as error description. raw_data and efi_attributes are field names in JSON file</extracomment>\n        <translation>object(raw_data: string, efi_attributes: number)</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"15\"/>\n        <source>Boot</source>\n        <translation>Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"16\"/>\n        <source>Driver</source>\n        <translation>Treiber</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"17\"/>\n        <source>System Preparation</source>\n        <translation>Systemvorbereitung</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"18\"/>\n        <source>Platform Recovery</source>\n        <translation>Plattform Wiederherstellung</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditor</name>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"18\"/>\n        <source>EFI Boot Editor</source>\n        <translation>EFI-Boot-Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"71\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"412\"/>\n        <source>Boot</source>\n        <translation>Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"74\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"98\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"101\"/>\n        <source>Boot entries</source>\n        <translation>Boot-Einträge</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"77\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"104\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Boot entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Liste der Boot-Einträge.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"133\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"415\"/>\n        <source>Driver</source>\n        <translation>Treiber</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"136\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"160\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"163\"/>\n        <source>Driver entries</source>\n        <translation>Treibereinträge</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"139\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"166\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Driver entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Liste der Treibereinträge.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"195\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"418\"/>\n        <source>System Preparation</source>\n        <translation>Systemvorbereitung</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"198\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"222\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"225\"/>\n        <source>SysPrep entries</source>\n        <translation>SysPrep-Einträge</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"201\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of SysPrep entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Liste der SysPrep-Einträge.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"257\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"421\"/>\n        <source>Platform Recovery</source>\n        <translation>Plattform-Wiederherstellung</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"260\"/>\n        <source>PlatformRecovery entries</source>\n        <translation>PlatformRecovery Einträge</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"263\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of PlatformRecovery entries (READONLY).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Liste der PlatformRecovery-Einträge (READONLY).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"284\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"287\"/>\n        <source>PlatformRecovery entries (READONLY)</source>\n        <translation>PlatformRecovery Einträge (READONLY)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"346\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"349\"/>\n        <source>Add new entry</source>\n        <translation>Neuen Eintrag erstellen</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"352\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to add new boot entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Klicke darauf, um einen neuen Boot-Eintrag hinzuzufügen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"408\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"411\"/>\n        <source>Remove entry</source>\n        <translation>Eintrag entfernen</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"414\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to remove currently selected entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Klicke darauf, um den aktuell ausgewählten Eintrag zu entfernen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"439\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"442\"/>\n        <source>Move entry up</source>\n        <translation>Eintrag nach oben verschieben</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"445\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Klicke darauf, um den aktuell ausgewählten Eintrag nach oben zu verschieben.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"470\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"473\"/>\n        <source>Move entry down</source>\n        <translation>Eintrag nach unten verschieben</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"476\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Klicke darauf, um den aktuell ausgewählten Eintrag nach unten zu verschieben.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"501\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"504\"/>\n        <source>Reorder entries</source>\n        <translation>Einträge neu anordnen</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"507\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click here to adjust the order of all entries based on their position on the list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Klicke hier, um die Reihenfolge aller Einträge entsprechend ihrer Position in der Liste anzupassen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"599\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"608\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Global settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Globale Einstellungen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"602\"/>\n        <source>Global</source>\n        <translation>Global</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"632\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"635\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"654\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"657\"/>\n        <source>Boot manager timeout</source>\n        <translation>Bootmanager-Zeitüberschreitung</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"638\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"660\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot manager timeout.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Bootmanager-Zeitüberschreitung.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"663\"/>\n        <source>s</source>\n        <translation>s</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"674\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"677\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"686\"/>\n        <source>Firmware details</source>\n        <translation>Firmware Details</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"680\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"689\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware Details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"683\"/>\n        <source>Firmware</source>\n        <translation>Firmware</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"719\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"722\"/>\n        <source>Available firmware features</source>\n        <translation>Verfügbare Firmware-Funktionen</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"725\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware features.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Verfügbare Firmware-Funktionen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"728\"/>\n        <source>Features</source>\n        <translation>Funktionen</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"737\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"740\"/>\n        <source>Platform supports reporting of deferred capsule processing by creation of result variable</source>\n        <translation type=\"unfinished\">Platform supports reporting of deferred capsule processing by creation of result variable</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"743\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports reporting of deferred capsule processing by creation of result variable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports reporting of deferred capsule processing by creation of result variable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"746\"/>\n        <source>Capsule Reporting</source>\n        <translation type=\"unfinished\">Capsule Reporting</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"756\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"759\"/>\n        <source>Firmware supports timestamp based revocation</source>\n        <translation>Firmware unterstützt zeitstempelbasierten Widerruf</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"762\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware supports timestamp based revocation.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware unterstützt zeitstempelbasierten Widerruf.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"765\"/>\n        <source>Timestamp based revocation</source>\n        <translation>Zeitstempelbasierter Widerruf</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"775\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"778\"/>\n        <source>Platform supports processing of Firmware Management Protocol update capsule</source>\n        <translation>Plattform unterstützt die Verarbeitung von Aktualisierungskapseln des Firmware Management Protokolls</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"781\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of Firmware Management Protocol update capsule.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Plattform unterstützt die Verarbeitung von Aktualisierungskapseln des Firmware Management Protokolls.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"784\"/>\n        <source>FMP Capsule</source>\n        <translation>FMP-Kapsel</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"794\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"797\"/>\n        <source>Platform supports processing of file capsules</source>\n        <translation>Plattform unterstützt Verarbeitung von Dateikapseln</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"800\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of file capsules.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Plattform unterstützt Verarbeitung von Dateikapseln.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"803\"/>\n        <source>File Capsule</source>\n        <translation>Dateikapsel</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"828\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"831\"/>\n        <source>Available firmware actions</source>\n        <translation>Verfügbare Firmware-Aktionen</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware actions.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Verfügbare Firmware-Aktionen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"837\"/>\n        <source>Actions</source>\n        <translation>Aktionen</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"846\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"849\"/>\n        <source>Stop at a firmware user interface on the next boot</source>\n        <translation>Beim nächsten Booten an einer Firmware-Benutzeroberfläche anhalten</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Stop at a firmware user interface on the next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Beim nächsten Booten an einer Firmware-Benutzeroberfläche anhalten.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"855\"/>\n        <source>Boot to firmware UI</source>\n        <translation>Zur Firmware-Benutzeroberfläche booten</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"862\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"865\"/>\n        <source>Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot</source>\n        <translation type=\"unfinished\">Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"871\"/>\n        <source>Collect current config</source>\n        <translation>Aktuelle Konfiguration sammeln</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"878\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"881\"/>\n        <source>Indicate that Platform-defined recovery should commence upon reboot</source>\n        <translation>Angeben, dass die plattformdefinierte Wiederherstellung nach dem Neustart beginnen soll</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"884\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that Platform-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Angeben, dass die plattformdefinierte Wiederherstellung nach dem Neustart beginnen soll.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"887\"/>\n        <source>Start Platform recovery</source>\n        <translation>Starte Plattformwiederherstellung</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"894\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"897\"/>\n        <source>Indicate that OS-defined recovery should commence upon reboot</source>\n        <translation>Angeben, dass die vom Betriebssystem definierte Wiederherstellung beim Neustart beginnen soll</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"900\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that OS-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Angeben, dass die vom Betriebssystem definierte Wiederherstellung beim Neustart beginnen soll.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"903\"/>\n        <source>Start OS recovery</source>\n        <translation>Starte OS-Wiederherstellung</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"932\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"935\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"944\"/>\n        <source>Secure boot settings</source>\n        <translation>Secure Boot Einstellungen</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"938\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"947\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Secure boot settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Secure Boot Einstellungen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"941\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1025\"/>\n        <source>Secure Boot</source>\n        <translation>Secure Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"978\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"981\"/>\n        <source>Defines whether the system is currently operating in Audit Mode</source>\n        <translation>Legt fest, ob sich das System derzeit im Audit-Modus befindet</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"984\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Audit Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Legt fest, ob sich das System derzeit im Audit-Modus befindet.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"987\"/>\n        <source>Audit Mode</source>\n        <translation>Audit-Modus</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"997\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1000\"/>\n        <source>Defines whether the system is currently operating in Deployed Mode</source>\n        <translation>Legt fest, ob sich das System derzeit im Einsatzmodus befindet</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1003\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Deployed Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Legt fest, ob sich das System derzeit im Einsatzmodus befindet.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1006\"/>\n        <source>Deployed Mode</source>\n        <translation>Einsatzmodus</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1016\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1019\"/>\n        <source>Defines whether the platform firmware is operating with Secure Boot enabled</source>\n        <translation>Legt fest, ob die Plattform-Firmware mit aktiviertem Secure Boot arbeitet</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1022\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the platform firmware is operating with Secure Boot enabled.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Legt fest, ob die Plattform-Firmware mit aktiviertem Secure Boot arbeitet.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1035\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1038\"/>\n        <source>Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables</source>\n        <translation type=\"unfinished\">Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1041\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1044\"/>\n        <source>Setup Mode</source>\n        <translation>Einrichtungsmodus</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1054\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1057\"/>\n        <source>Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys</source>\n        <translation type=\"unfinished\">Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1063\"/>\n        <source>Vendor Keys</source>\n        <translation>Anbieter-Schlüssel</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1074\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1077\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1086\"/>\n        <source>Apple settings</source>\n        <translation>Apple-Einstellungen</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1080\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apple settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apple-Einstellungen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1083\"/>\n        <source>Apple</source>\n        <translation>Apple</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1113\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1116\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1129\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1132\"/>\n        <source>macOS boot arguments</source>\n        <translation>macOS Boot Argumente</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1119\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;macOS boot arguments.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;macOS Boot Argumente.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1161\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1164\"/>\n        <source>Undo stack</source>\n        <translation>Stapel rückgängig machen</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1167\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo stack&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Stapel rückgängig machen&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1194\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Datei-Menü.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1214\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Help menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hilfe-Menü.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1255\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Exit the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Programm beenden.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1272\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apply changes to the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wende die Änderungen auf das System an.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1289\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reloads EFI data from the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Lädt die EFI-Daten erneut aus dem System.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1306\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Show information about the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Informationen über das Programm anzeigen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1320\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Export current entries into JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Aktuelle Einträge in JSON exportieren.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1337\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Import EFI data from JSON dump.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Importiere EFI-Daten aus einem JSON-Dump.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1354\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dumps raw EFI data for debugging purposes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dumped rohe EFI Daten für Debugging-Zwecke.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1362\"/>\n        <source>&amp;Undo</source>\n        <translation>&amp;Rückgängig</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1365\"/>\n        <source>Undo</source>\n        <translation>Rückgängig</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1368\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Rückgängig&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1371\"/>\n        <source>Ctrl+Z</source>\n        <translation>Strg+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1379\"/>\n        <source>&amp;Redo</source>\n        <translation>&amp;Wiederherstellen</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1382\"/>\n        <source>Redo</source>\n        <translation>Wiederherstellen</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1385\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Redo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wiederherstellen&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1388\"/>\n        <source>Ctrl+Shift+Z</source>\n        <translation>Strg+Umschalt+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1396\"/>\n        <source>Hot &amp;keys</source>\n        <translation type=\"unfinished\">Hot &amp;keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1399\"/>\n        <source>Hot Keys</source>\n        <translation type=\"unfinished\">Hot Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1402\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"593\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"596\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"605\"/>\n        <source>Global settings</source>\n        <translation>Globale Einstellungen</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"641\"/>\n        <source>Timeout</source>\n        <translation>Zeitüberschreitung</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1122\"/>\n        <source>Boot args</source>\n        <translation>Boot-Argumente</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1188\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1191\"/>\n        <source>File</source>\n        <translation>Datei</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1197\"/>\n        <source>&amp;File</source>\n        <translation>&amp;Datei</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1208\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1211\"/>\n        <source>Help</source>\n        <translation>Hilfe</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1217\"/>\n        <source>&amp;Help</source>\n        <translation>&amp;Hilfe</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1225\"/>\n        <source>&amp;Edit</source>\n        <translation>&amp;Bearbeiten</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1249\"/>\n        <source>&amp;Quit</source>\n        <translation>&amp;Beenden</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1252\"/>\n        <source>Quit</source>\n        <translation>Beenden</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1258\"/>\n        <source>Ctrl+Q</source>\n        <translation>Strg+Q</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1266\"/>\n        <source>&amp;Save</source>\n        <translation>&amp;Speichern</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1269\"/>\n        <source>Save</source>\n        <translation>Speichern</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1275\"/>\n        <source>Ctrl+S</source>\n        <translation>Strg+S</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1283\"/>\n        <source>&amp;Reload</source>\n        <translation>&amp;Neu laden</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1286\"/>\n        <source>Reload</source>\n        <translation>Neu laden</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1292\"/>\n        <source>Ctrl+R</source>\n        <translation>Strg+R</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1300\"/>\n        <source>About &amp;EFI Boot Editor</source>\n        <translation>Über &amp;EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1303\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"29\"/>\n        <source>About EFI Boot Editor</source>\n        <translation>Über EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1314\"/>\n        <source>&amp;Export</source>\n        <translation>&amp;Exportieren</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1317\"/>\n        <source>Export</source>\n        <translation>Exportieren</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1323\"/>\n        <source>Ctrl+E</source>\n        <translation>Strg+E</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1331\"/>\n        <source>&amp;Import</source>\n        <translation>&amp;Importieren</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1334\"/>\n        <source>Import</source>\n        <translation>Importieren</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1340\"/>\n        <source>Ctrl+I</source>\n        <translation>Strg+I</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1348\"/>\n        <source>&amp;Dump raw EFI data</source>\n        <translation>&amp;EFI-Rohdaten dumpen</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1351\"/>\n        <source>Dump raw EFI data</source>\n        <translation>EFI-Rohdaten dumpen</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"26\"/>\n        <source>Working…</source>\n        <translation>Arbeitet…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"92\"/>\n        <source>Undo %1</source>\n        <translation>%1 rückgängig machen</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"95\"/>\n        <source>Redo %1</source>\n        <translation>%1 wiederherstellen</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"137\"/>\n        <source>Are you sure you want to reload the entries?&lt;br/&gt;ALL of your changes will be lost!</source>\n        <translation>Bist du sicher, dass du die Einträge neu laden willst?&lt;br/&gt;ALLE deine Änderungen gehen dann verloren!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"162\"/>\n        <source>Are you sure you want to reorder the boot entries?&lt;br/&gt;All indexes will be overwritten!</source>\n        <translation>Bist du sicher, dass du die Boot-Einträge neu anordnen willst?&lt;br/&gt;Alle Indexe werden überschrieben!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"221\"/>\n        <source>Are you sure you want to save?&lt;br/&gt;Your EFI configuration will be overwritten!</source>\n        <translation>Bist du sicher, dass du speichern willst?&lt;br/&gt;Deine EFI-Konfiguration wird überschrieben!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <source>Open boot configuration dump</source>\n        <translation>Boot-Konfigurationsdump öffnen</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>JSON documents (*.json)</source>\n        <translation>JSON-Dokumente (*.json)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <source>Save boot configuration dump</source>\n        <translation>Boot-Konfigurationsdump speichern</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>Save raw EFI dump</source>\n        <translation>Roh-EFI-Dump speichern</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"31\"/>\n        <source>&lt;h1&gt;EFI Boot Editor&lt;/h1&gt;&lt;p&gt;Version &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Boot Editor for (U)EFI based systems.&lt;/p&gt;</source>\n        <extracomment>About dialog</extracomment>\n        <translation>&lt;h1&gt;EFI Boot Editor&lt;/h1&gt;&lt;p&gt;Version &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Boot Editor für (U)EFI-basierte Systeme.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"45\"/>\n        <source>&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;Website&lt;/a&gt;&lt;/p&gt;&lt;p&gt;The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.&lt;/p&gt;&lt;p&gt;License: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL Version 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;On Linux uses &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; for EFI variables access.&lt;/p&gt;&lt;p&gt;Uses Tango Icons as fallback icons.&lt;/p&gt;</source>\n        <extracomment>About dialog details</extracomment>\n        <translation type=\"unfinished\">&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;Website&lt;/a&gt;&lt;/p&gt;&lt;p&gt;The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.&lt;/p&gt;&lt;p&gt;License: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL Version 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;On Linux uses &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; for EFI variables access.&lt;/p&gt;&lt;p&gt;Uses Tango Icons as fallback icons.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"330\"/>\n        <source>Reorder %1 entries</source>\n        <translation>Neuordnung von %1 Einträgen</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"453\"/>\n        <source>Are you sure you want to quit?</source>\n        <translation>Bist du sicher, dass du aufhören willst?</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"123\"/>\n        <source>EFI support required</source>\n        <translation>EFI-Unterstützung erforderlich</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"383\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Duplicate entry&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Duplizierter Eintrag&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"377\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"380\"/>\n        <source>Duplicate entry</source>\n        <translation>Duplizierter Eintrag</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditorCLI</name>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"13\"/>\n        <source>Boot Editor for (U)EFI based systems.</source>\n        <translation>Boot-Editor für (U)EFI-basierte Systeme.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <source>Export configuration.</source>\n        <translation>Konfiguration exportieren.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>FILE</source>\n        <translation>DATEI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <source>Dump raw EFI data.</source>\n        <translation>EFI-Rohdaten dumpen.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>Import configuration from JSON (either from export or raw dump).</source>\n        <translation>Importiere die Konfiguration aus JSON (entweder aus dem Export oder dem Rohdump).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"19\"/>\n        <source>Force import, don&apos;t ask for confirmation.</source>\n        <translation>Erzwinge den Import und frage nicht nach einer Bestätigung.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"26\"/>\n        <source>EFI support required</source>\n        <translation>EFI-Unterstützung erforderlich</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"45\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation>EFI-Bootmanager-Einträge werden geladen …</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"47\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"57\"/>\n        <source>Exporting boot configuration…</source>\n        <translation>Bootkonfiguration wird exportiert…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"67\"/>\n        <source>Importing boot configuration…</source>\n        <translation>Boot-Konfiguration wird importiert…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Loaded %0 %1 entries</source>\n        <translation>%0 %1 Einträge geladen</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <source>Boot</source>\n        <translation>Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <source>Driver</source>\n        <translation>Treiber</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <source>System Preparation</source>\n        <translation>Systemvorbereitung</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Hot Key</source>\n        <translation type=\"unfinished\">Hot Key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"78\"/>\n        <source>Are you sure you want to save?\nYour EFI configuration will be overwritten!</source>\n        <translation>Bist du sicher, dass du speichern willst?\nDeine EFI-Konfiguration wird überschrieben!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"86\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation>EFI Boot Manager-Einträge werden gespeichert…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"98\"/>\n        <source>ERROR: %0! %1</source>\n        <translation>FEHLER: %0! %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"114\"/>\n        <source>Finished</source>\n        <translation>Abgeschlossen</translation>\n    </message>\n</context>\n<context>\n    <name>EFIKeySequenceEdit</name>\n    <message>\n        <location filename=\"../src/efikeysequenceedit.cpp\" line=\"109\"/>\n        <source>Press hot key</source>\n        <translation type=\"unfinished\">Press hot key</translation>\n    </message>\n</context>\n<context>\n    <name>FilePathDialog</name>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"12\"/>\n        <source>File path editor</source>\n        <translation>Dateipfad Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"47\"/>\n        <source>PCI</source>\n        <translation>PCI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"80\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"86\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"196\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"202\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"218\"/>\n        <source>Function</source>\n        <translation>Funktion</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"121\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"127\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"143\"/>\n        <source>Device</source>\n        <translation>Gerät</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"721\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"727\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"742\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"835\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"841\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"856\"/>\n        <source>HID</source>\n        <translation>HID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"761\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"767\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"782\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"896\"/>\n        <source>UID</source>\n        <translation>UID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1813\"/>\n        <source>USB</source>\n        <translation>USB</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1819\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB-Einstellungen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1893\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1909\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3688\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3710\"/>\n        <source>Interface</source>\n        <translation>Schnittstelle</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7442\"/>\n        <source>Vendor</source>\n        <translation>Anbieter</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7445\"/>\n        <source>Vendor settings</source>\n        <translation>Anbietereinstellungen</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7448\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Anbietereinstellungen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1778\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1793\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5824\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6348\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7117\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7546\"/>\n        <source>GUID</source>\n        <translation>GUID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5539\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7587\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7850\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7853\"/>\n        <source>Data format</source>\n        <translation>Datenformat</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5542\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7590\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7856\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Datenformat.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5546\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5869\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7860\"/>\n        <source>BASE64</source>\n        <translation>BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1168\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5551\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5874\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7865\"/>\n        <source>UTF-16</source>\n        <translation>UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1173\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5556\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7604\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7870\"/>\n        <source>UTF-8</source>\n        <translation>UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5561\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7875\"/>\n        <source>HEX</source>\n        <translation>HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5523\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5901\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7888\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7891\"/>\n        <source>Data</source>\n        <translation>Daten</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7894\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Daten.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7565\"/>\n        <source>Vendor data</source>\n        <translation>Anbieterdaten</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7481\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7757\"/>\n        <source>Type</source>\n        <translation>Typ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7478\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7500\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Typ.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7504\"/>\n        <source>HW</source>\n        <translation>HW</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7509\"/>\n        <source>MSG</source>\n        <translation>MSG</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7514\"/>\n        <source>MEDIA</source>\n        <translation>MEDIA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2292\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2298\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2313\"/>\n        <source>MAC</source>\n        <translation>MAC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2265\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;MAC settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;MAC-Einstellungen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2374\"/>\n        <source>IPv4</source>\n        <translation>IPv4</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2380\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv4 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv4 Einstellungen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2569\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2591\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2925\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2931\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2947\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4110\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4116\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4132\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6616\"/>\n        <source>Protocol</source>\n        <translation>Protokoll</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3003\"/>\n        <source>Static</source>\n        <translation>Statisch</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2692\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Subnet mask.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Subnetzmaske.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2730\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5479\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5486\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5503\"/>\n        <source>IPv6</source>\n        <translation>IPv6</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2736\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv6 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv6 Einstellungen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3008\"/>\n        <source>Stateless auto-configuration</source>\n        <translation>Zustandslose Autokonfiguration</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3013\"/>\n        <source>Stateful auto-configuration</source>\n        <translation>Zustandsabhängige Autokonfiguration</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3920\"/>\n        <source>SATA</source>\n        <translation>SATA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SATA settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SATA-Einstellungen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1387\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1393\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1409\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1658\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1664\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1679\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3900\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4035\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4041\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4057\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4191\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4197\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4212\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4496\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4502\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4610\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4616\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4988\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5009\"/>\n        <source>LUN</source>\n        <translation>LUN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4885\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4901\"/>\n        <source>URI</source>\n        <translation>URI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6105\"/>\n        <source>Disk</source>\n        <translation>Festplatte</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6102\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Festplatte.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6123\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6126\"/>\n        <source>Choose disk</source>\n        <translation>Festplatte wählen</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6129\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Choose disk from discovered in the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Choose disk from discovered in the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6133\"/>\n        <source>Custom</source>\n        <translation>Benutzerdefiniert</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6147\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6150\"/>\n        <source>Reload drives</source>\n        <translation>Laufwerke neu laden</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reload system drives list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Liste der Systemlaufwerke neu laden.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6343\"/>\n        <source>MBR</source>\n        <translation>MBR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6177\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6183\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6199\"/>\n        <source>Partition</source>\n        <translation>Partition</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6720\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6741\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6797\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6812\"/>\n        <source>Name</source>\n        <translation>Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7176\"/>\n        <source>BIOS Boot Specification</source>\n        <translation>BIOS-Boot-Spezifikation</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7405\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7411\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7427\"/>\n        <source>Description</source>\n        <translation>Beschreibung</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7639\"/>\n        <source>End</source>\n        <translation>Ende</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7669\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7672\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7678\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7797\"/>\n        <source>Sub-Type</source>\n        <translation>Untertyp</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7675\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7697\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Untertyp.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7701\"/>\n        <source>End This Instance</source>\n        <translation>Diese Instanz beenden</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7706\"/>\n        <source>End Entire</source>\n        <translation>Alles beenden</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7718\"/>\n        <source>Unknown</source>\n        <translation>Unbekannt</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"50\"/>\n        <source>The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.</source>\n        <translation>Der Gerätepfad für PCI definiert den Pfad zur PCI-Konfigurationsraumadresse für ein PCI-Gerät.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"53\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Der Gerätepfad für PCI definiert den Pfad zur PCI-Konfigurationsraumadresse für ein PCI-Gerät.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"77\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"99\"/>\n        <source>PCI Function Number.</source>\n        <translation>PCI-Funktionsnummer.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"83\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"105\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Function Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI-Funktionsnummer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"118\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"140\"/>\n        <source>PCI Device Number.</source>\n        <translation>PCI Gerätenummer.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"124\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Device Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Gerätenummer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"163\"/>\n        <source>PCCARD</source>\n        <translation>PCCARD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"166\"/>\n        <source>PCCARD Settings.</source>\n        <translation>PCCARD Einstellungen.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCCARD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCCARD-Einstellungen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"193\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"215\"/>\n        <source>Function Number (0 = First Function).</source>\n        <translation>Funktion Nummer (0 = erste Funktion).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"199\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"221\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Function Number (0 = First Function).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Funktionsnummer (0 = erste Funktion).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"238\"/>\n        <source>Memory Mapped</source>\n        <translation>Speicher zugeordnet</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"241\"/>\n        <source>Memory Mapped Settings.</source>\n        <translation>Einstellungen für zugeordneten Speicher.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Memory Mapped Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Einstellungen für zugeordneten Speicher.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"268\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"290\"/>\n        <source>The type of memory to allocate.</source>\n        <translation>Der Typ des zuzuordnenden Speichers.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"271\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"293\"/>\n        <source>Memory Type</source>\n        <translation>Speichertyp</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"274\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"296\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The type of memory to allocate.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Der Typ des zuzuordnenden Speichers.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"300\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1584\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1738\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1753\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3145\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3160\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4416\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4437\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6868\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6883\"/>\n        <source>Reserved</source>\n        <translation>Reserviert</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"305\"/>\n        <source>Loader Code</source>\n        <translation>Lader-Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"310\"/>\n        <source>Loader Data</source>\n        <translation>Lader-Daten</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"315\"/>\n        <source>Boot Services Code</source>\n        <translation>Bootdienste-Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"320\"/>\n        <source>Boot Services Data</source>\n        <translation>Bootdienste-Daten</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"325\"/>\n        <source>Runtime Services Code</source>\n        <translation>Laufzeitdienste-Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"330\"/>\n        <source>Runtime Services Data</source>\n        <translation>Laufzeitdienste-Daten</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"335\"/>\n        <source>Conventional</source>\n        <translation>Konventionell</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"340\"/>\n        <source>Unusable</source>\n        <translation>Unverwendbar</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"345\"/>\n        <source>ACPI Reclaim</source>\n        <translation type=\"unfinished\">ACPI Reclaim</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"350\"/>\n        <source>ACPI Memory NVS</source>\n        <translation>ACPI Memory NVS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"355\"/>\n        <source>Memory Mapped IO</source>\n        <translation>Memory Mapped IO</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"360\"/>\n        <source>Memory Mapped IO Port Space</source>\n        <translation>Memory Mapped IO Port Space</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"365\"/>\n        <source>Pal Code</source>\n        <translation>Pal Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"370\"/>\n        <source>Persistent</source>\n        <translation>Persistent</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"375\"/>\n        <source>Unaccepted</source>\n        <translation>Nicht akzeptiert</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"383\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7013\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7034\"/>\n        <source>Starting Memory Address.</source>\n        <translation type=\"unfinished\">Startspeicheradresse.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"386\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"407\"/>\n        <source>Start Address</source>\n        <translation>Startadresse</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"389\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7019\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7040\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Startspeicheradresse.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"423\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7053\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7074\"/>\n        <source>Ending Memory Address.</source>\n        <translation>Endspeicheradresse.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"426\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"432\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"447\"/>\n        <source>End Address</source>\n        <translation>Endadresse</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"429\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7080\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ending Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Endspeicheradresse.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"467\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"522\"/>\n        <source>Controller</source>\n        <translation>Controller</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"470\"/>\n        <source>Controller settings.</source>\n        <translation>Controller-Einstellungen.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"473\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller-Einstellungen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"519\"/>\n        <source>Controller number.</source>\n        <translation>Controller-Nummer.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"525\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller-Nummer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"542\"/>\n        <source>BMC</source>\n        <translation>BMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"545\"/>\n        <source>The Device Path for a Baseboard Management Controller (BMC) host interface.</source>\n        <translation>Der Gerätepfad für eine Baseboard Management Controller (BMC) Host-Schnittstelle.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"548\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for a Baseboard Management Controller (BMC) host interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Der Gerätepfad für eine Baseboard Management Controller (BMC) Host-Schnittstelle.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"602\"/>\n        <source>The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.</source>\n        <translation type=\"unfinished\">Der Baseboard Management Controller (BMC) Hostinterfacetyp:\n0x00 - Unbekannt.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"579\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"589\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2332\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2354\"/>\n        <source>Interface Type</source>\n        <translation>Schnittstellentyp</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"582\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"612\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Der Baseboard Management Controller (BMC) Hostinterfacetyp:\n0x00 - Unbekannt.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"625\"/>\n        <source>Keyboard Controller Style</source>\n        <translation>Tastaturcontrollerstil</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"630\"/>\n        <source>Server Management Interface Chip</source>\n        <translation>Server Management Interface Chip</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"635\"/>\n        <source>Block Transfer</source>\n        <translation>Block Transfer</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"643\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"664\"/>\n        <source>Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.</source>\n        <translation type=\"unfinished\">Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"667\"/>\n        <source>Base Address</source>\n        <translation>Basisadresse</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"670\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"688\"/>\n        <source>ACPI</source>\n        <translation>ACPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"805\"/>\n        <source>This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.</source>\n        <translation>Dieser Gerätepfad enthält ACPI Geräte IDs, die eine Geräte Plug und Play Hardware ID und die zugehörige einzigartige persistente ID representieren.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"808\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dieser Gerätepfad enthält ACPI-Gerät IDs, die die Plug and Play Hardware ID des Geräts und die entsprechende eindeutige persistente ID darstellen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"718\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"739\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"832\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"853\"/>\n        <source>Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.</source>\n        <translation>Geräte PnP Hardware ID gespeichert in einer numerischen 32-Bit komprimierten EISA-Typ ID. Dieser Wert muss der entsprechenden HID im Namensraum AKPI entsprechen.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"724\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"745\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"838\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"859\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP Hardware ID gespeichert in einer numerischen 32-Bit komprimierten EISA-Typ-ID. Dieser Wert muss der entsprechenden HID im ACPI-Namensraum entsprechen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"779\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"872\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"893\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.</source>\n        <translation>Einzigartige ID, die von ACPI benötigt wird, wenn zwei Geräte dieselbe HID haben. Dieser Wert muss auch dem entsprechenden UID/HID-Paar im ACPI-Namensraum entsprechen. Nur der 32-Bit-Numerwerttyp von UID wird unterstützt; daher dürfen keine Strings für die UID im ACPI-Namensraum verwendet werden.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"764\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"785\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"899\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID, die von ACPI benötigt wird, wenn zwei Geräte dieselbe HID haben. Dieser Wert muss auch dem entsprechenden UID/HID-Paar im ACPI-Namensraum entsprechen. Nur der 32-Bit-Numerwerttyp von UID wird unterstützt; daher dürfen keine Strings für die UID im ACPI-Namensraum verwendet werden.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"802\"/>\n        <source>Expanded</source>\n        <translation>Erweitert</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"912\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"933\"/>\n        <source>Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.</source>\n        <translation>Geräte kompatible PnP Hardware ID gespeichert in einer numerischen 32-Bit komprimierten EISA-Typ ID. Dieser Wert muss mindestens einer der kompatiblen Geräte-IDs entsprechen, die von der entsprechenden CID im Namensraum AKPI zurückgegeben wurden.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"915\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"921\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"936\"/>\n        <source>CID</source>\n        <translation>CID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"918\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"939\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices kompatible PnP Hardware ID gespeichert in einer numerischen 32-Bit komprimierten EISA-Typ-ID. Dieser Wert muss mindestens einer der kompatiblen Geräte-IDs entsprechen, die von der entsprechenden CID im ACPI-Namensraum zurückgegeben wurden.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"952\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"974\"/>\n        <source>Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.</source>\n        <translation>Geräte PnP Hardware ID als String gespeichert. Dieser Wert muss der entsprechenden HID im Namensraum AKPI entsprechen. Ist die Länge dieses Strings 0, so wird das HID-Feld verwendet. Ist die Länge dieses Strings größer als 0, dann übertrifft dieses Feld das HID-Feld.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"955\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"961\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"977\"/>\n        <source>HIDSTR</source>\n        <translation>HIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"958\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"980\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP Hardware ID als String gespeichert. Dieser Wert muss der entsprechenden HID im Namensraum AKPI entsprechen. Ist die Länge dieses Strings 0, so wird das HID-Feld verwendet. Ist die Länge dieses Strings größer als 0, dann übertrifft dieses Feld das HID-Feld.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"987\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1009\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.</source>\n        <translation type=\"unfinished\">Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"990\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"996\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1012\"/>\n        <source>UIDSTR</source>\n        <translation>UIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"993\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1015\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1044\"/>\n        <source>Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.</source>\n        <translation type=\"unfinished\">Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1025\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1031\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1047\"/>\n        <source>CIDSTR</source>\n        <translation>CIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1028\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1050\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1061\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1094\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1100\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1115\"/>\n        <source>ADR</source>\n        <translation>ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1064\"/>\n        <source>The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.</source>\n        <translation>Der ADR-Gerätepfad wird verwendet, um Videoausgabegeräteattribute zur Unterstützung des Grafikausgabeprotokolls zu enthalten.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1067\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Der ADR-Gerätepfad wird verwendet, um Videoausgabegeräteattribute zur Unterstützung des Grafikausgabeprotokolls zu enthalten.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1091\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1112\"/>\n        <source>ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required</source>\n        <translation>ADR-Wert. Für Videoausgabegeräte stammt der Wert dieses Feldes aus Tabelle B-2 der ACPI 3.0-Spezifikation. Mindestens ein ADR-Wert ist erforderlich</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1097\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1118\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR-Wert. Für Videoausgabegeräte stammt der Wert dieses Feldes aus Tabelle B-2 der ACPI 3.0-Spezifikation. Mindestens ein ADR-Wert ist erforderlich&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1131\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1192\"/>\n        <source>This device path may optionally contain more than one ADR entry.</source>\n        <translation>Dieser Gerätepfad kann optional mehr als einen ADR-Eintrag enthalten.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1195\"/>\n        <source>Additional ADR</source>\n        <translation>Zusätzliche ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1198\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path may optionally contain more than one ADR entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dieser Gerätepfad kann optional mehr als einen ADR-Eintrag enthalten.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1153\"/>\n        <source>Additional ADR format.</source>\n        <translation>Zusätzliches ADR-Format.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1156\"/>\n        <source>Additional ADR format</source>\n        <translation>Zusätzliches ADR-Format</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1159\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Additional ADR format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Zusätzliches ADR-Format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1209\"/>\n        <source>NVDIMM</source>\n        <translation>NVDIMM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1212\"/>\n        <source>This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.</source>\n        <translation>Dieser Gerätepfad beschreibt ein NVDIMM-Gerät unter Verwendung des in der ACPI 6.0-Spezifikation definierten NFIT-Geräte-Handles als Bezeichner.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dieser Gerätepfad beschreibt ein NVDIMM-Gerät unter Verwendung des in der ACPI 6.0-Spezifikation definierten NFIT-Geräte-Handles als Bezeichner.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1260\"/>\n        <source>NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.</source>\n        <translation type=\"unfinished\">NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1242\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1248\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1263\"/>\n        <source>NFIT Device Handle</source>\n        <translation>NFIT Gerät Handle</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1245\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1284\"/>\n        <source>ATAPI</source>\n        <translation>ATAPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1287\"/>\n        <source>ATAPI Settings.</source>\n        <translation>ATAPI Einstellungen.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI-Einstellungen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1336\"/>\n        <source>Set to zero for primary or one for secondary.</source>\n        <translation>Setze den Wert Null für primär oder Eins für sekundär.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1317\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1323\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1339\"/>\n        <source>Primary</source>\n        <translation>Primär</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1320\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1342\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for primary or one for secondary.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Setze den Wert Null für primär oder Eins für sekundär.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1349\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1371\"/>\n        <source>Set to zero for master or one for slave mode.</source>\n        <translation>Setze den Wert auf Null für den Master- oder Eins für den Slave-Modus.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1374\"/>\n        <source>Slave</source>\n        <translation>Slave</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1377\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for master or one for slave mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Setze den Wert auf Null für den Master- oder Eins für den Slave-Modus.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1384\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1406\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4054\"/>\n        <source>Logical Unit Number.</source>\n        <translation>Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1390\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1412\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4038\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1429\"/>\n        <source>SCSI</source>\n        <translation>SCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1432\"/>\n        <source>SCSI Settings.</source>\n        <translation>SCSI Einstellungen.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1435\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI-Einstellungen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1481\"/>\n        <source>Target ID on the SCSI bus (PUN).</source>\n        <translation>Ziel-ID auf dem SCSI-Bus (PUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1962\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1984\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4969\"/>\n        <source>Target ID</source>\n        <translation>Ziel-ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1465\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1487\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the SCSI bus (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ziel-ID auf dem SCSI-Bus (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4985\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5006\"/>\n        <source>Logical Unit Number (LUN).</source>\n        <translation>Logical Unit Number (LUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5012\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1545\"/>\n        <source>Fibre Channel</source>\n        <translation>Fibre Channel</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1548\"/>\n        <source>Fibre Channel Settings</source>\n        <translation>Fibre Channel Einstellungen</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1551\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Einstellungen&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1596\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1750\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4434\"/>\n        <source>Reserved.</source>\n        <translation>Vorbehalten.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1581\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1602\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1756\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3142\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4419\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vorbehalten.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1615\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1636\"/>\n        <source>Fibre Channel World Wide Name.</source>\n        <translation>Fibre Channel Weltweiter Name.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1624\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1639\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4456\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4477\"/>\n        <source>World Wide Name</source>\n        <translation>Weltweiter Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1621\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1642\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel World Wide Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Weltweiter Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1676\"/>\n        <source>Fibre Channel Logical Unit Number.</source>\n        <translation>Fibre Channel Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1661\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1682\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1699\"/>\n        <source>Firewire</source>\n        <translation>Firewire</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1702\"/>\n        <source>Firewire Settings.</source>\n        <translation>Firewire-Einstellungen.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1705\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firewire Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firewire-Einstellungen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1790\"/>\n        <source>1394 Global Unique ID (GUID)</source>\n        <translation>1394 Global Unique ID (GUID)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1796\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 Global Unique ID (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 Global Unique ID (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1816\"/>\n        <source>USB settings.</source>\n        <translation>USB-Einstellungen.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1865\"/>\n        <source>USB Parent Port Number.</source>\n        <translation>USB Parent Port Nummer.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1852\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1868\"/>\n        <source>Parent Port</source>\n        <translation>Übergeordneter Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1871\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Parent Port Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Parent Port Nummer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1906\"/>\n        <source>USB Interface Number.</source>\n        <translation>USB-Schnittstellennummer.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1912\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB-Schnittstellennummer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1929\"/>\n        <source>I2O</source>\n        <translation>I2O</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1932\"/>\n        <source>I2O Settings</source>\n        <translation>I2O Einstellungen</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1935\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;I2O Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;I2O Einstellungen&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1981\"/>\n        <source>Target ID (TID) for a device.</source>\n        <translation>Ziel-ID (TID) für ein Gerät.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1965\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1987\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID (TID) for a device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ziel-ID (TID) für ein Gerät.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2004\"/>\n        <source>InfiniBand</source>\n        <translation>InfiniBand</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2007\"/>\n        <source>InfiniBand Settings.</source>\n        <translation>InfiniBand Einstellungen.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2010\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;InfiniBand Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;InfiniBand Einstellungen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2034\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2067\"/>\n        <source>Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.</source>\n        <translation type=\"unfinished\">Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2043\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2055\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2076\"/>\n        <source>Resource Flags</source>\n        <translation type=\"unfinished\">Resource Flags</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2046\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2079\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2098\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2119\"/>\n        <source>128-bit Global Identifier for remote fabric port</source>\n        <translation type=\"unfinished\">128-bit Global Identifier for remote fabric port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2101\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2122\"/>\n        <source>PORT GID</source>\n        <translation>PORT GID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2104\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2125\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;128-bit Global Identifier for remote fabric port&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;128-bit Global Identifier for remote fabric port&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2135\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2156\"/>\n        <source>64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)</source>\n        <translation type=\"unfinished\">64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2138\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2144\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2159\"/>\n        <source>IOC GUID/Service ID</source>\n        <translation>IOC GUID/Service ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2141\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2162\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2175\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2196\"/>\n        <source>64-bit persistent ID of remote IOC port.</source>\n        <translation type=\"unfinished\">64-bit persistent ID of remote IOC port.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2184\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2199\"/>\n        <source>Target Port ID</source>\n        <translation>Ziel Port ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2181\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote IOC port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote IOC port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2236\"/>\n        <source>64-bit persistent ID of remote device.</source>\n        <translation type=\"unfinished\">64-bit persistent ID of remote device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2239\"/>\n        <source>Device ID</source>\n        <translation>Geräte-ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2259\"/>\n        <source>MAC Address</source>\n        <translation>MAC-Adresse</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2262\"/>\n        <source>MAC settings.</source>\n        <translation>MAC-Einstellungen.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2289\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2310\"/>\n        <source>The MAC address for a network interface padded with 0s.</source>\n        <translation>Die MAC-Adresse für eine Netzwerkschnittstelle, aufgefüllt mit Nullen.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2295\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2316\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The MAC address for a network interface padded with 0s.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Die MAC-Adresse für eine Netzwerkschnittstelle, aufgefüllt mit Nullen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2329\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2351\"/>\n        <source>Network interface type (i.e., 802.3, FDDI). See RFC 3232.</source>\n        <translation>Typ der Netzwerkschnittstelle (d.&#xa0;h. 802.3, FDDI). Siehe RFC 3232.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2357\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network interface type (i.e., 802.3, FDDI). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Typ der Netzwerkschnittstelle (d.&#xa0;h. 802.3, FDDI). Siehe RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2377\"/>\n        <source>IPv4 settings.</source>\n        <translation>IPv4-Einstellungen.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2425\"/>\n        <source>The local IPv4 address.</source>\n        <translation>Die lokale IPv4-Adresse.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2407\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2763\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2784\"/>\n        <source>Local IP Address</source>\n        <translation>Lokale IP-Adresse</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2431\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Die lokale IPv4-Adresse&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2465\"/>\n        <source>The remote IPv4 address.</source>\n        <translation>Die entfernte IPv4-Adresse.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2447\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2824\"/>\n        <source>Remote IP Address</source>\n        <translation>Entfernte IP-Adresse</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2471\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Die entfernte IPv4-Adresse.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2862\"/>\n        <source>The local port number.</source>\n        <translation>Die lokale Portnummer.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2487\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2865\"/>\n        <source>Local Port</source>\n        <translation>Lokaler Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2490\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Die lokale Portnummer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2547\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2903\"/>\n        <source>The remote port number.</source>\n        <translation type=\"unfinished\">The remote port number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2550\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2906\"/>\n        <source>Remote Port</source>\n        <translation type=\"unfinished\">Remote Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2553\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2909\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2566\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2588\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2922\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2944\"/>\n        <source>The network protocol (i.e., UDP, TCP). See RFC 3232.</source>\n        <translation>Das Netzwerkprotokoll (d. h. UDP, TCP). Siehe RFC 3232.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2928\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2950\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The network protocol (i.e., UDP, TCP). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Das Netzwerkprotokoll (d. h. UDP, TCP). Siehe RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2631\"/>\n        <source>0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.</source>\n        <translation type=\"unfinished\">0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2635\"/>\n        <source>Static IP Address</source>\n        <translation>Statische IP-Adresse</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2667\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3083\"/>\n        <source>The Gateway IP Address.</source>\n        <translation>Die Gateway-IP-Adresse.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3071\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3086\"/>\n        <source>Gateway IP Address</source>\n        <translation>Gateway IP Adresse</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2673\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Gateway IP Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Die Gateway-IP-Adresse.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2686\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2707\"/>\n        <source>Subnet mask.</source>\n        <translation>Subnetz-Maske.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2689\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2695\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2710\"/>\n        <source>Subnet Mask</source>\n        <translation>Subnetz-Maske</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2733\"/>\n        <source>IPv6 settings.</source>\n        <translation>IPv6-Einstellungen.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2760\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2781\"/>\n        <source>The local IPv6 address.</source>\n        <translation>Die lokale IPv6-Adresse.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2787\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Die lokale IPv6-Adresse&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2821\"/>\n        <source>The remote IPv6 address.</source>\n        <translation>Die entfernte IPv6-Adresse.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Die entfernte IPv6-Adresse.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2963\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2989\"/>\n        <source>0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.</source>\n        <translation type=\"unfinished\">0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2976\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2994\"/>\n        <source>IP Address Origin</source>\n        <translation>Herkunft der IP-Adresse</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2971\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2997\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3021\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3043\"/>\n        <source>The Prefix Length.</source>\n        <translation>Die Prefix Länge.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3024\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3030\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3046\"/>\n        <source>Prefix Length</source>\n        <translation>Präfix Länge</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3027\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3049\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Prefix Length.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Die Prefix Länge.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3106\"/>\n        <source>UART</source>\n        <translation>UART</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3109\"/>\n        <source>UART Settings.</source>\n        <translation>UART Einstellungen.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3112\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART-Einstellungen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3176\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3197\"/>\n        <source>The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.</source>\n        <translation type=\"unfinished\">The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3179\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3185\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3200\"/>\n        <source>Baud Rate</source>\n        <translation>Baud Rate</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3182\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3203\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3216\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3238\"/>\n        <source>The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.</source>\n        <translation type=\"unfinished\">The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3219\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3225\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3241\"/>\n        <source>Data Bits</source>\n        <translation>Datenbits</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3222\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3257\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3291\"/>\n        <source>The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.</source>\n        <translation type=\"unfinished\">The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3266\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3300\"/>\n        <source>Parity</source>\n        <translation>Parität</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3303\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3313\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3394\"/>\n        <source>Default</source>\n        <translation>Standard</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3318\"/>\n        <source>No</source>\n        <translation>Nein</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3323\"/>\n        <source>Even</source>\n        <translation>Gerade</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3328\"/>\n        <source>Odd</source>\n        <translation>Ungerade</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3333\"/>\n        <source>Mark</source>\n        <translation>Markieren</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3338\"/>\n        <source>Space</source>\n        <translation type=\"unfinished\">Space</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3346\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3376\"/>\n        <source>The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.</source>\n        <translation type=\"unfinished\">The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3353\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3363\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3383\"/>\n        <source>Stop Bits</source>\n        <translation>Stopp Bits</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3356\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3399\"/>\n        <source>1</source>\n        <translation>1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3404\"/>\n        <source>1.5</source>\n        <translation>1.5</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3409\"/>\n        <source>2</source>\n        <translation>2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3421\"/>\n        <source>USB Class</source>\n        <translation>USB-Klasse</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3424\"/>\n        <source>USB Class Settings.</source>\n        <translation>USB-Klasseneinstellungen.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3427\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Class Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB-Klasseneinstellungen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3451\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3472\"/>\n        <source>Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.</source>\n        <translation type=\"unfinished\">Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3454\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3460\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3475\"/>\n        <source>Vendor ID</source>\n        <translation>Anbieter-ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3457\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3478\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3491\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3512\"/>\n        <source>Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.</source>\n        <translation type=\"unfinished\">Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3515\"/>\n        <source>Product ID</source>\n        <translation>Produkt-ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3518\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3552\"/>\n        <source>The class code assigned by the USB-IF. A value of 0xFF will match any class code.</source>\n        <translation type=\"unfinished\">The class code assigned by the USB-IF. A value of 0xFF will match any class code.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3540\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3555\"/>\n        <source>Device Class</source>\n        <translation>Geräteklasse</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3537\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3558\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The class code assigned by the USB-IF. A value of 0xFF will match any class code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The class code assigned by the USB-IF. A value of 0xFF will match any class code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3592\"/>\n        <source>The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.</source>\n        <translation type=\"unfinished\">The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3574\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3595\"/>\n        <source>Device Subclass</source>\n        <translation>Geräte-Unterklasse</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Der von der USB-IF zugewiesene Unterklassencode. Ein Wert von 0xFF entspricht einem beliebigen Unterklassencode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3632\"/>\n        <source>The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.</source>\n        <translation>Der von der USB-IF zugewiesene Protokollcode. Ein Wert von 0xFF entspricht einem beliebigen Protokollcode.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3635\"/>\n        <source>Device Protocol</source>\n        <translation>Geräteprotokoll</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3617\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Der von der USB-IF zugewiesene Protokollcode. Ein Wert von 0xFF entspricht einem beliebigen Protokollcode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3655\"/>\n        <source>USB WWID</source>\n        <translation>USB WWID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3658\"/>\n        <source>This device path describes a USB device using its serial number.</source>\n        <translation>Dieser Gerätepfad beschreibt ein USB-Gerät anhand seiner Seriennummer.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3661\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a USB device using its serial number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dieser Gerätepfad beschreibt ein USB-Gerät anhand seiner Seriennummer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3685\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3707\"/>\n        <source>USB interface Number.</source>\n        <translation>USB-Schnittstellennummer.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB-Schnittstellennummer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3747\"/>\n        <source>USB vendor id of the device.</source>\n        <translation>USB-Hersteller-ID des Geräts.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3750\"/>\n        <source>Device Vendor Id</source>\n        <translation>Geräte-Hersteller-ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3753\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB vendor id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB-Hersteller-ID des Geräts.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3787\"/>\n        <source>USB product id of the device.</source>\n        <translation>USB-Produkt-ID des Geräts.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3790\"/>\n        <source>Device Product Id</source>\n        <translation>Gerät Produkt-ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3793\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB product id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB-Produkt-ID des Geräts.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3828\"/>\n        <source>Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).</source>\n        <translation type=\"unfinished\">Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3815\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3831\"/>\n        <source>Serial Number</source>\n        <translation>Seriennummer</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3812\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3845\"/>\n        <source>Device Logical Unit</source>\n        <translation type=\"unfinished\">Device Logical Unit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3848\"/>\n        <source>Device Logical Unit Settings.</source>\n        <translation type=\"unfinished\">Device Logical Unit Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3851\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device Logical Unit Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device Logical Unit Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3897\"/>\n        <source>Logical Unit Number for the interface.</source>\n        <translation>Logical Unit Number für die Schnittstelle.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3903\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number for the interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number für die Schnittstelle.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3923\"/>\n        <source>SATA settings.</source>\n        <translation>SATA Einstellungen.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3950\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3972\"/>\n        <source>The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.</source>\n        <translation type=\"unfinished\">The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3953\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3975\"/>\n        <source>HBA Port</source>\n        <translation>HBA Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3956\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3978\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4013\"/>\n        <source>The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.</source>\n        <translation type=\"unfinished\">The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4000\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4016\"/>\n        <source>Port Multiplier Port</source>\n        <translation type=\"unfinished\">Port Multiplier Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3997\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4019\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4077\"/>\n        <source>iSCSI</source>\n        <translation>iSCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4080\"/>\n        <source>iSCSI Settings.</source>\n        <translation>iSCSI-Einstellungen.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4083\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI-Einstellungen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4129\"/>\n        <source>Network Protocol (0 = TCP, 1+ = reserved).</source>\n        <translation>Netzwerkprotokoll (0 = TCP, 1+ = reserviert).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4113\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network Protocol (0 = TCP, 1+ = reserved).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Netzwerkprotokoll (0 = TCP, 1+ = reserviert).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4148\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4169\"/>\n        <source>iSCSI Login Options.</source>\n        <translation>iSCSI Login Optionen.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4151\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4172\"/>\n        <source>Options</source>\n        <translation>Optionen</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4154\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4175\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Login Options.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Login-Optionen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4188\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4209\"/>\n        <source>8 byte array containing the iSCSI Logical Unit Number.</source>\n        <translation type=\"unfinished\">8 byte array containing the iSCSI Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4194\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing the iSCSI Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing the iSCSI Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4228\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4250\"/>\n        <source>iSCSI Target Portal group tag the initiator intends to establish a session with.</source>\n        <translation type=\"unfinished\">iSCSI Target Portal group tag the initiator intends to establish a session with.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4231\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4253\"/>\n        <source>Target Portal Group</source>\n        <translation>Ziel-Portal-Gruppe</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4234\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4256\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Target Portal group tag the initiator intends to establish a session with.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Target Portal group tag the initiator intends to establish a session with.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4291\"/>\n        <source>iSCSI NodeTarget Name.</source>\n        <translation>iSCSI NodeTarget Name.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4272\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4294\"/>\n        <source>Target Name</source>\n        <translation>Zielname</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4275\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4297\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI NodeTarget Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI NodeTarget Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4308\"/>\n        <source>VLAN</source>\n        <translation>VLAN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4311\"/>\n        <source>VLAN Settings.</source>\n        <translation>VLAN Einstellungen.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4314\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN Einstellungen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4360\"/>\n        <source>VLAN identifier (0-4094).</source>\n        <translation>VLAN-Bezeichner (0-4094).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4341\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4347\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4363\"/>\n        <source>Vlan ID</source>\n        <translation>Vlan ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4344\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4366\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN identifier (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN-Bezeichner (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4383\"/>\n        <source>Fibre Channel Ex</source>\n        <translation>Fibre Channel Ex</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4386\"/>\n        <source>The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation type=\"unfinished\">The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4389\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4474\"/>\n        <source>8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).</source>\n        <translation type=\"unfinished\">8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4480\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4514\"/>\n        <source>8 byte array containing Fibre Channel Logical Unit Number.</source>\n        <translation type=\"unfinished\">8 byte array containing Fibre Channel Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4499\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4520\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4537\"/>\n        <source>SAS Extended Messaging</source>\n        <translation type=\"unfinished\">SAS Extended Messaging</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4540\"/>\n        <source>The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation type=\"unfinished\">The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4543\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4567\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4588\"/>\n        <source>8-byte array of the SAS Address for Serial Attached SCSI Target Port.</source>\n        <translation type=\"unfinished\">8-byte array of the SAS Address for Serial Attached SCSI Target Port.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4570\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4576\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4591\"/>\n        <source>SAS Address</source>\n        <translation>SAS-Adresse</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4573\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4594\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Address for Serial Attached SCSI Target Port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Address for Serial Attached SCSI Target Port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4628\"/>\n        <source>8-byte array of the SAS Logical Unit Number.</source>\n        <translation type=\"unfinished\">8-byte array of the SAS Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4613\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4634\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4647\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4668\"/>\n        <source>More Information about the device and its interconnect.</source>\n        <translation>Weitere Informationen über das Gerät und seine Verbindung.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4650\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4656\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4671\"/>\n        <source>Device and Topology Info</source>\n        <translation>Geräte- und Topologieinformationen</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4653\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4674\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;More Information about the device and its interconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Weitere Informationen über das Gerät und seine Verbindung.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4687\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4709\"/>\n        <source>Relative Target Port (RTP).</source>\n        <translation>Relativer Zielport (RTP).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4690\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4696\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4712\"/>\n        <source>Relative Target Port</source>\n        <translation>Relativer Zielport</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4715\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Relative Target Port (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Relativer Zielport (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4732\"/>\n        <source>NVM Express NS</source>\n        <translation>NVM Express NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4735\"/>\n        <source>NVM Express Namespace Settings.</source>\n        <translation>NVM Express Namespace Einstellungen.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4738\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM Express Namespace Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM Express Namespace Einstellungen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4783\"/>\n        <source>Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.</source>\n        <translation>Namensraumbezeichner (NSID). Die Werte 0 und 0xFFFFFFFF sind ungültig.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4765\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4771\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4786\"/>\n        <source>NSID</source>\n        <translation>NSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4768\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4789\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namensraumbezeichner (NSID). Die Werte 0 und 0xFFFFFFFF sind ungültig.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4802\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4823\"/>\n        <source>This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.</source>\n        <translation type=\"unfinished\">This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4805\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4811\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4826\"/>\n        <source>EUI-64</source>\n        <translation>EUI-64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4808\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4829\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4849\"/>\n        <source>Refer to RFC 3986 for details on the URI contents.</source>\n        <translation>Einzelheiten zu den URI-Inhalten finden Sie in RFC 3986.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Refer to RFC 3986 for details on the URI contents.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Einzelheiten zu den URI-Inhalten finden Sie in RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4876\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4898\"/>\n        <source>Instance of the URI pursuant to RFC 3986.</source>\n        <translation type=\"unfinished\">Instance of the URI pursuant to RFC 3986.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4882\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Instance of the URI pursuant to RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Instance of the URI pursuant to RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4915\"/>\n        <source>UFS</source>\n        <translation>UFS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4918\"/>\n        <source>UFS Settings.</source>\n        <translation>UFS-Einstellungen.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS Einstellungen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4966\"/>\n        <source>Target ID on the UFS interface (PUN).</source>\n        <translation type=\"unfinished\">Target ID on the UFS interface (PUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4972\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the UFS interface (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the UFS interface (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5029\"/>\n        <source>SD</source>\n        <translation>SD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5032\"/>\n        <source>SD Settings.</source>\n        <translation>SD-Einstellungen.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5035\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SD-Einstellungen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5081\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5299\"/>\n        <source>Slot Number</source>\n        <translation>Slot Nummer</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5084\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5280\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5286\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5302\"/>\n        <source>Slot</source>\n        <translation>Slot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5087\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5283\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5305\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Slot Number&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Slot Nummer&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5104\"/>\n        <source>Bluetooth</source>\n        <translation>Bluetooth</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5107\"/>\n        <source>EFI Bluetooth Settings.</source>\n        <translation>EFI Bluetooth-Einstellungen.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5110\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI Bluetooth Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI Bluetooth-Einstellungen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5155\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5373\"/>\n        <source>48-bit Bluetooth device address.</source>\n        <translation>48-Bit-Bluetooth-Geräteadresse.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5143\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5158\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5361\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5376\"/>\n        <source>Device Address</source>\n        <translation>Geräteadresse</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5161\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5379\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-bit Bluetooth device address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-Bit-Bluetooth-Geräteadresse.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5178\"/>\n        <source>Wi-Fi</source>\n        <translation>Wi-Fi</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5181\"/>\n        <source>Wi-Fi Settings.</source>\n        <translation>Wi-Fi-Einstellungen.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5184\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wi-Fi Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wi-Fi-Einstellungen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5208\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5230\"/>\n        <source>SSID in octet string.</source>\n        <translation>SSID in einer Oktett-Zeichenkette.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5211\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5217\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5233\"/>\n        <source>SSID</source>\n        <translation>SSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5214\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5236\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID in octet string.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID in einer Oktett-Zeichenkette.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5247\"/>\n        <source>eMMC</source>\n        <translation>eMMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5250\"/>\n        <source>Embedded Multi-Media Card Settings.</source>\n        <translation>Einstellungen der eingebetteten Multimediakarte.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5253\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Embedded Multi-Media Card Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Einstellungen der eingebetteten Multimediakarte.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5322\"/>\n        <source>BluetoothLE</source>\n        <translation>BluetoothLE</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5325\"/>\n        <source>EFI BluetoothLE Settings.</source>\n        <translation>EFI BluetoothLE-Einstellungen.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5328\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI BluetoothLE Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI BluetoothLE-Einstellungen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5416\"/>\n        <source>0x00 - Public Device Address.\n0x01 - Random Device Address.</source>\n        <translation>0x00 - Öffentliche Geräteadresse.\n0x01 - Zufällige Geräteadresse.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5396\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5403\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5420\"/>\n        <source>Address Type</source>\n        <translation>Adresstyp</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5399\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5423\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Public Device Address.\n0x01 - Random Device Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Öffentliche Geräteadresse.\n0x01 - Zufällige Geräteadresse.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5428\"/>\n        <source>Public</source>\n        <translation>Öffentlich</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5433\"/>\n        <source>Random</source>\n        <translation>Zufällig</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5445\"/>\n        <source>DNS</source>\n        <translation>DNS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5448\"/>\n        <source>DNS Settings.</source>\n        <translation>DNS-Einstellungen.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5451\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DNS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DNS Einstellungen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5499\"/>\n        <source>0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.</source>\n        <translation>0x00 - Die DNS-Serveradresse ist eine IPv4-Adresse.\n0x01 - Die DNS-Serveradresse ist eine IPv6-Adresse.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5482\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5506\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Die DNS-Serveradresse ist eine IPv4-Adresse.\n0x01 - Die DNS-Serveradresse ist eine IPv6-Adresse.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5514\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5575\"/>\n        <source>One or more instances of the DNS server address in EFI_IP_ADDRESS.</source>\n        <translation>Eine oder mehrere Instanzen der DNS-Serveradresse in EFI_IP_ADDRESS.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5520\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5581\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;One or more instances of the DNS server address in EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Eine oder mehrere Instanzen der DNS-Serveradresse in EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5536\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7584\"/>\n        <source>Data format.</source>\n        <translation>Datenformat.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5592\"/>\n        <source>NVDIMM NS</source>\n        <translation>NVDIMM NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5595\"/>\n        <source>This device path describes a bootable NVDIMM namespace that is defined by a namespace label.</source>\n        <translation>Dieser Gerätepfad beschreibt einen bootfähigen NVDIMM-Namensraum, der durch eine Namensraumbezeichnung definiert ist.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVDIMM namespace that is defined by a namespace label.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dieser Gerätepfad beschreibt einen bootfähigen NVDIMM-Namensraum, der durch eine Namensraumbezeichnung definiert ist.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5622\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5643\"/>\n        <source>Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.</source>\n        <translation type=\"unfinished\">Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5646\"/>\n        <source>UUID</source>\n        <translation>UUID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5628\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5649\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5663\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5698\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5706\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5724\"/>\n        <source>REST Service</source>\n        <translation>REST-Dienst</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5666\"/>\n        <source>REST Service Settings.</source>\n        <translation>REST-Dienst-Einstellungen.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5669\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;REST Service Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;REST-Dienst-Einstellungen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5719\"/>\n        <source>0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.</source>\n        <translation>0x01 - Redfish REST-Dienst.\n0x02 - OData REST-Dienst.\n0xFF - Anbieterspezifischer REST-Dienst.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5701\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5727\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Redfish REST-Dienst.\n0x02 - OData REST-Dienst.\n0xFF - Anbieterspezifischer REST-Dienst.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5733\"/>\n        <source>Redfish</source>\n        <translation>Redfish</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5738\"/>\n        <source>OData</source>\n        <translation>OData</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5743\"/>\n        <source>Vendor specific</source>\n        <translation>Anbieterspezifisch</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5775\"/>\n        <source>0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.</source>\n        <translation type=\"unfinished\">0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5755\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5779\"/>\n        <source>Access Mode</source>\n        <translation>Zugriffsmodus</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5782\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5787\"/>\n        <source>In-Band</source>\n        <translation>In-Band</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5792\"/>\n        <source>Out-of-band</source>\n        <translation>Out-of-Band</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5821\"/>\n        <source>GUID of vendor specific REST service.</source>\n        <translation>GUID des herstellerspezifischen REST-Dienstes.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID of vendor specific REST service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID des herstellerspezifischen REST-Dienstes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5898\"/>\n        <source>Vendor-defined data.</source>\n        <translation>Anbieterdefinierte Daten.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Anbieterdefinierte Daten.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5915\"/>\n        <source>NVMe-oF NS</source>\n        <translation>NVMe-oF NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5918\"/>\n        <source>This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.</source>\n        <translation type=\"unfinished\">This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5967\"/>\n        <source>Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.</source>\n        <translation type=\"unfinished\">Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5970\"/>\n        <source>NIDT</source>\n        <translation>NIDT</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5973\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5986\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6007\"/>\n        <source>Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.</source>\n        <translation type=\"unfinished\">Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5989\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5995\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6010\"/>\n        <source>NID</source>\n        <translation>NID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5992\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6013\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6023\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6045\"/>\n        <source>Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.</source>\n        <translation type=\"unfinished\">Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6026\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6048\"/>\n        <source>Subsystem NQN</source>\n        <translation>Untersystem NQN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6029\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6051\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6066\"/>\n        <source>Hard Drive</source>\n        <translation>Festplatte</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6069\"/>\n        <source>The Hard Drive Media Device Path is used to represent a partition on a hard drive.</source>\n        <translation>Der Festplatten-Mediengerätepfad wird verwendet, um eine Partition auf einer Festplatte darzustellen.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6072\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Hard Drive Media Device Path is used to represent a partition on a hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Der Festplatten-Mediengerätepfad wird verwendet, um eine Partition auf einer Festplatte darzustellen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6174\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6196\"/>\n        <source>Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].</source>\n        <translation type=\"unfinished\">Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6180\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6236\"/>\n        <source>Starting LBA of the partition on the hard drive.</source>\n        <translation type=\"unfinished\">Starting LBA of the partition on the hard drive.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6466\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6487\"/>\n        <source>Partition Start</source>\n        <translation>Partition Start</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting LBA of the partition on the hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting LBA of the partition on the hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6255\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6276\"/>\n        <source>Size of the partition in units of Logical Blocks.</source>\n        <translation>Größe der Partition in Einheiten von logischen Blöcken.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6258\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6264\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6279\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6527\"/>\n        <source>Partition Size</source>\n        <translation>Partitionsgröße</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6261\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6282\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Logical Blocks.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Größe der Partition in Einheiten von logischen Blöcken.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6295\"/>\n        <source>Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation type=\"unfinished\">Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6301\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6310\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6367\"/>\n        <source>Partition Signature</source>\n        <translation>Partitionssignatur</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6304\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6322\"/>\n        <source>PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.</source>\n        <translation type=\"unfinished\">PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6328\"/>\n        <source>Signature Type</source>\n        <translation>Signaturtyp</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6331\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6338\"/>\n        <source>None</source>\n        <translation>Keine</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6361\"/>\n        <source>Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation type=\"unfinished\">Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6370\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6392\"/>\n        <source>CD-ROM</source>\n        <translation>CD-ROM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6395\"/>\n        <source>The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.</source>\n        <translation>Der CD-ROM-Mediengerätepfad wird verwendet, um eine Systempartition zu definieren, die auf einer CD-ROM existiert.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6398\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Der CD-ROM-Mediengerätepfad wird verwendet, um eine Systempartition zu definieren, die auf einer CD-ROM existiert.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6444\"/>\n        <source>Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.</source>\n        <translation>Booteintragsnummer aus dem Bootkatalog. Der Eintrag Initial/Standard ist als Null definiert.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6425\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6431\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6447\"/>\n        <source>Boot Entry</source>\n        <translation>Booteintrag</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6450\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Booteintragsnummer aus dem Bootkatalog. Der Eintrag Initial/Standard ist als Null definiert.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6463\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6484\"/>\n        <source>Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.</source>\n        <translation type=\"unfinished\">Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6469\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6490\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6524\"/>\n        <source>Size of the partition in units of Blocks, also called Sectors.</source>\n        <translation>Größe der Partition in Einheiten von Blöcken, auch Sektoren genannt.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6530\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Blocks, also called Sectors.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Größe der Partition in Einheiten von Blöcken, auch Sektoren genannt.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6547\"/>\n        <source>File Path</source>\n        <translation>Dateipfad</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6550\"/>\n        <source>File Path settings.</source>\n        <translation>Dateipfad-Einstellungen.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6553\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File Path settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dateipfad-Einstellungen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6599\"/>\n        <source>Path including directory and file names.</source>\n        <translation>Pfad mit Verzeichnis- und Dateinamen.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6586\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6602\"/>\n        <source>Path Name</source>\n        <translation>Pfadname</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6583\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6605\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Path including directory and file names.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Pfad mit Verzeichnis- und Dateinamen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6619\"/>\n        <source>The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.</source>\n        <translation>Der Medienprotokoll-Gerätepfad wird verwendet, um das Protokoll zu bezeichnen, das in einem Gerätepfad an der Stelle des angegebenen Pfads verwendet wird.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6622\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Der Medienprotokoll-Gerätepfad wird verwendet, um das Protokoll zu bezeichnen, das in einem Gerätepfad an der Stelle des angegebenen Pfads verwendet wird.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6667\"/>\n        <source>The ID of the protocol.</source>\n        <translation>Die ID des Protokolls.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6673\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ID of the protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Die ID des Protokolls.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6687\"/>\n        <source>Firmware File</source>\n        <translation>Firmware Datei</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6690\"/>\n        <source>Describes a firmware file in a firmware volume.</source>\n        <translation>Beschreibt eine Firmware-Datei in einem Firmware-Volume.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6693\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware file in a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Beschreibt eine Firmware-Datei in einem Firmware-Volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6717\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6738\"/>\n        <source>Firmware file name GUID.</source>\n        <translation>Firmware Dateiname GUID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6723\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6744\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware file name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware Dateiname GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6758\"/>\n        <source>Firmware Volume</source>\n        <translation>Firmware-Volume</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6761\"/>\n        <source>Describes a firmware volume.</source>\n        <translation>Beschreibt ein Firmware-Volume.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6764\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Beschreibt ein Firmware-Volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6809\"/>\n        <source>Firmware volume name GUID.</source>\n        <translation>Firmware-Volumenname GUID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware volume name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware-Volumenname GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6829\"/>\n        <source>Relative Offset Range</source>\n        <translation type=\"unfinished\">Relative Offset Range</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6832\"/>\n        <source>This device path node specifies a range of offsets relative to the first byte available on the device.</source>\n        <translation>Dieser Gerätepfadknoten gibt einen Bereich von Versätzen relativ zu dem auf dem Gerät verfügbaren ersten Byte an.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6835\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path node specifies a range of offsets relative to the first byte available on the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dieser Gerätepfadknoten gibt einen Bereich von Versätzen relativ zu dem auf dem Gerät verfügbaren ersten Byte an.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6880\"/>\n        <source>Reserved for future use.</source>\n        <translation>Reserviert für zukünftige Verwendung.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6886\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved for future use.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserviert für zukünftige Verwendung.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6899\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6920\"/>\n        <source>Offset of the first byte, relative to the parent device node.</source>\n        <translation>Offset des ersten Bytes, bezogen auf den übergeordneten Geräteknoten.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6902\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6908\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6923\"/>\n        <source>Starting Offset</source>\n        <translation>Startversatz</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6905\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the first byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset des ersten Bytes, bezogen auf den übergeordneten Geräteknoten.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6939\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6960\"/>\n        <source>Offset of the last byte, relative to the parent device node.</source>\n        <translation>Offset des letzten Bytes, bezogen auf den übergeordneten Geräteknoten.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6942\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6963\"/>\n        <source>Ending Offset</source>\n        <translation>Endversatz</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6966\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the last byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset des letzten Bytes, bezogen auf den übergeordneten Geräteknoten.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6983\"/>\n        <source>RAM Disk</source>\n        <translation>RAM Disk</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6986\"/>\n        <source>RAM Disk Settings.</source>\n        <translation>RAM-Disk-Einstellungen.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6989\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM-Disk-Einstellungen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7016\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7037\"/>\n        <source>Starting Address</source>\n        <translation>Startadresse</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7056\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7077\"/>\n        <source>Ending Address</source>\n        <translation>Endadresse</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7093\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7114\"/>\n        <source>GUID that defines the type of the RAM Disk.</source>\n        <translation>GUID, die den Typ der RAM-Disk definiert.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7120\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID that defines the type of the RAM Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID, die den Typ der RAM-Disk definiert.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7130\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7152\"/>\n        <source>RAM Disk instance number, if supported.</source>\n        <translation>RAM-Disk-Instanznummer, falls unterstützt.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7133\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7155\"/>\n        <source>Disk Instance</source>\n        <translation>Festplatteninstanz</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7158\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk instance number, if supported.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM-Disk-Instanznummer, falls unterstützt.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7179\"/>\n        <source>This Device Path is used to describe the booting of non-EFI-aware operating systems.</source>\n        <translation>Dieser Gerätepfad wird verwendet, um das Booten von nicht-EFI-fähigen Betriebssystemen zu beschreiben.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7182\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path is used to describe the booting of non-EFI-aware operating systems.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dieser Gerätepfad wird verwendet, um das Booten von nicht-EFI-fähigen Betriebssystemen zu beschreiben.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7206\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7249\"/>\n        <source>An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.</source>\n        <translation>Eine Identifikationsnummer, die beschreibt, um welchen Gerätetyp es sich handelt:\n  0x00 - Reserviert.\n  0x01 - Diskette.\n  0x02 - Festplatte.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB-Gerät.\n  0x06 - Eingebettetes Netzwerk.\n  0x07..0x7F - Reserviert.\n  0x80 - BEV-Gerät.\n  0x81..0xFE - Reserviert.\n  0xFF - Unbekannt.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7220\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7263\"/>\n        <source>Device Type</source>\n        <translation>Gerätetyp</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7223\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Eine Identifikationsnummer, die beschreibt, um welchen Gerätetyp es sich handelt:\n  0x00 - Reserviert.\n  0x01 - Diskette.\n  0x02 - Festplatte.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB-Gerät.\n  0x06 - Eingebettetes Netzwerk.\n  0x07..0x7F - Reserviert.\n  0x80 - BEV-Gerät.\n  0x81..0xFE - Reserviert.\n  0xFF - Unbekannt.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7290\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7347\"/>\n        <source>Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero</source>\n        <translation type=\"unfinished\">Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7311\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7368\"/>\n        <source>Status Flag</source>\n        <translation>Status Flagge</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7371\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7402\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7424\"/>\n        <source>String that describes the boot device to a user.</source>\n        <translation>Zeichenfolge, die das Boot-Gerät für einen Benutzer beschreibt.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7408\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7430\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;String that describes the boot device to a user.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Zeichenfolge, die das Boot-Gerät für einen Benutzer beschreibt.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7543\"/>\n        <source>Vendor-assigned GUID that defines the data that follows.</source>\n        <translation>Hersteller zugewiesene GUID, die die folgenden Daten definiert.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7549\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-assigned GUID that defines the data that follows.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hersteller zugewiesene GUID, die die folgenden Daten definiert.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7562\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7622\"/>\n        <source>Vendor-defined variable size data.</source>\n        <translation>Anbieterdefinierte Daten mit variabler Größe.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7568\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7628\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined variable size data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Anbieterdefinierte Daten mit variabler Größe.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7642\"/>\n        <source>Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.</source>\n        <translation>Je nach Untertyp wird dieser Gerätepfadknoten verwendet, um das Ende der Gerätepfadinstanz oder der Gerätepfadstruktur anzuzeigen.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7645\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Je nach Untertyp wird dieser Gerätepfadknoten verwendet, um das Ende der Gerätepfadinstanz oder der Gerätepfadstruktur anzuzeigen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7721\"/>\n        <source>Unknown file path specifier settings</source>\n        <translation>Unbekannte Einstellungen für den Dateipfadbezeichner</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7724\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown file path specifier settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unbekannte Einstellungen für den Dateipfadbezeichner.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7748\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7772\"/>\n        <source>Unknown Type</source>\n        <translation>Unbekannter Typ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7754\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7775\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unbekannter Typ.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7812\"/>\n        <source>Unknown Sub-Type</source>\n        <translation>Unbekannter Untertyp</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unbekannter Untertyp.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7828\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7831\"/>\n        <source>Unknown data</source>\n        <translation>Unbekannte Daten</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unbekannte Daten.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/filepathdialog.cpp\" line=\"1569\"/>\n        <source>Couldn&apos;t change data format!</source>\n        <translation>Konnte das Datenformat nicht ändern!</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeyListModel</name>\n    <message>\n        <location filename=\"../src/hotkeylistmodel.cpp\" line=\"100\"/>\n        <source>boot option</source>\n        <translation type=\"unfinished\">boot option</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Boot option</source>\n        <translation type=\"unfinished\">Boot option</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Hot key</source>\n        <translation type=\"unfinished\">Hot key</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Vendor data</source>\n        <translation type=\"unfinished\">Anbieterdaten</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeysDialog</name>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"20\"/>\n        <source>Hot Keys editor</source>\n        <translation type=\"unfinished\">Hot Keys editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"41\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"44\"/>\n        <source>Hot Keys</source>\n        <translation type=\"unfinished\">Hot Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"47\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"125\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"128\"/>\n        <source>Index filter</source>\n        <translation type=\"unfinished\">Index filter</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"131\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Index filter&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Index filter&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"163\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"166\"/>\n        <source>Remove hot key</source>\n        <translation type=\"unfinished\">Remove hot key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"191\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"194\"/>\n        <source>Add hot key</source>\n        <translation type=\"unfinished\">Add hot key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"197\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <location filename=\"../include/commands.h\" line=\"21\"/>\n        <location filename=\"../include/commands.h\" line=\"66\"/>\n        <source>Change %1 to &quot;%2&quot;</source>\n        <translation>%1 in „%2“ ändern</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"35\"/>\n        <source>Insert %1 entry &quot;%2&quot; at position %3</source>\n        <translation>%1 Eintrag „%2“ bei Position %3 einfügen</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"50\"/>\n        <source>Remove %1 entry &quot;%2&quot; from position %3</source>\n        <translation type=\"unfinished\">Remove %1 entry &quot;%2&quot; from position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"73\"/>\n        <location filename=\"../src/commands.cpp\" line=\"116\"/>\n        <source>Move %1 entry &quot;%2&quot; from position %3 to %4</source>\n        <translation>%1 Eintrag „%2“ von Position %3 nach %4 verschieben</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <location filename=\"../include/commands.h\" line=\"157\"/>\n        <location filename=\"../include/commands.h\" line=\"198\"/>\n        <source>Change %1 entry &quot;%2&quot; %3 to &quot;%4&quot;</source>\n        <translation>%1 Eintrag „%2“ %3 zu „%4“ ändern</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <source>Optional data</source>\n        <translation>Optionale Daten</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"227\"/>\n        <source>Insert %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation>%1 Eintrag „%2“ Dateipfad an Position %3 einfügen</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"242\"/>\n        <source>Remove %1 entry &quot;%2&quot; file path from position %3</source>\n        <translation type=\"unfinished\">Remove %1 entry &quot;%2&quot; file path from position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"257\"/>\n        <source>Set %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation type=\"unfinished\">Set %1 entry &quot;%2&quot; file path at position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <source>Insert %1 entry at position %2</source>\n        <translation type=\"unfinished\">Insert %1 entry at position %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>Key</source>\n        <translation>Schlüssel</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <source>Remove %1 entry from position %2</source>\n        <translation type=\"unfinished\">Remove %1 entry from position %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <location filename=\"../include/commands.h\" line=\"362\"/>\n        <location filename=\"../include/commands.h\" line=\"403\"/>\n        <source>Change %1 entry at position %2 %3 to &quot;%4&quot;</source>\n        <translation type=\"unfinished\">Change %1 entry at position %2 %3 to &quot;%4&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>keys</source>\n        <translation type=\"unfinished\">keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"293\"/>\n        <location filename=\"../src/commands.cpp\" line=\"333\"/>\n        <source>Move %1 entry &quot;%2&quot; file path from position %3 to %4</source>\n        <translation type=\"unfinished\">Move %1 entry &quot;%2&quot; file path from position %3 to %4</translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/efibooteditor_en.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"en_US\" sourcelanguage=\"en_US\">\n<context>\n    <name>BootEntryForm</name>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"169\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"172\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"182\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"185\"/>\n        <source>Description</source>\n        <translation>Description</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"198\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"201\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"204\"/>\n        <source>Path</source>\n        <translation>Path</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"415\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"418\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"478\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"481\"/>\n        <source>Optional data</source>\n        <translation>Optional data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"421\"/>\n        <source>Optional</source>\n        <translation>Optional</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"434\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"437\"/>\n        <source>Optional data format</source>\n        <translation>Optional data format</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"6\"/>\n        <source>Boot entry form</source>\n        <translation>Boot entry form</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"24\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"27\"/>\n        <source>Error</source>\n        <translation>Error</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"40\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"43\"/>\n        <source>Error note</source>\n        <translation>Error note</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"46\"/>\n        <source>This entry placeholder is shown here to indicate it&apos;s referenced in boot order. It won&apos;t be modified on save, just left as is.</source>\n        <translation>This entry placeholder is shown here to indicate it&apos;s referenced in boot order. It won&apos;t be modified on save, just left as is.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"147\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"150\"/>\n        <source>Hot Keys</source>\n        <translation>Hot Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"188\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry description.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry description.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"222\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"225\"/>\n        <source>Device path</source>\n        <translation>Device path</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"280\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"283\"/>\n        <source>Move file path up</source>\n        <translation>Move file path up</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"286\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"305\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"308\"/>\n        <source>Move file path down</source>\n        <translation>Move file path down</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"311\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"330\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"333\"/>\n        <source>Remove file path</source>\n        <translation>Remove file path</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"336\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"355\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"358\"/>\n        <source>Edit file path</source>\n        <translation>Edit file path</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"361\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Edit file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Edit file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"380\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"383\"/>\n        <source>Add file path</source>\n        <translation>Add file path</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"444\"/>\n        <source>BASE64</source>\n        <translation>BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"449\"/>\n        <source>UTF-16</source>\n        <translation>UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"454\"/>\n        <source>UTF-8</source>\n        <translation>UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"459\"/>\n        <source>HEX</source>\n        <translation>HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"484\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry optional data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry optional data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"497\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"500\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"503\"/>\n        <source>Attributes</source>\n        <translation>Attributes</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"623\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry category.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry category.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"122\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"540\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Is entry considered for automatic boot?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Is entry considered for automatic boot?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"569\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hidden.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hidden.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"585\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Force reconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Force reconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"534\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"537\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"543\"/>\n        <source>Active</source>\n        <translation>Active</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"579\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"582\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"588\"/>\n        <source>Force reconnect</source>\n        <translation>Force reconnect</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"563\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"566\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"572\"/>\n        <source>Hidden</source>\n        <translation>Hidden</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"598\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"601\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"604\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"617\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"620\"/>\n        <source>Category</source>\n        <translation>Category</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"627\"/>\n        <source>Boot</source>\n        <translation>Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"632\"/>\n        <source>App</source>\n        <translation>App</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"68\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"71\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"74\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"116\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"119\"/>\n        <source>Index</source>\n        <translation>Index</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentryform.cpp\" line=\"117\"/>\n        <source>Couldn&apos;t change optional data format!</source>\n        <translation>Couldn&apos;t change optional data format!</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryListModel</name>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"88\"/>\n        <source>Set Next boot to &quot;%1&quot;</source>\n        <translation>Set Next boot to &quot;%1&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"184\"/>\n        <source>index</source>\n        <translation>index</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"200\"/>\n        <source>description</source>\n        <translation>description</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"237\"/>\n        <source>optional data</source>\n        <translation>optional data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"253\"/>\n        <source>attributes</source>\n        <translation>attributes</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"269\"/>\n        <source>next boot</source>\n        <translation>next boot</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryWidget</name>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"12\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"221\"/>\n        <source>Boot entry</source>\n        <translation>Boot entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"36\"/>\n        <source>Next boot</source>\n        <translation>Next boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"39\"/>\n        <source>Run at next boot</source>\n        <translation>Run at next boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"42\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;When chosen, entry will run at next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;When chosen, entry will run at next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"140\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"143\"/>\n        <source>Current boot</source>\n        <translation>Current boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This entry is currently booted.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This entry is currently booted.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"181\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"218\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry description, human readable name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry description, human readable name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"67\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"70\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"76\"/>\n        <source>Device path</source>\n        <translation>Device path</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"73\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"113\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data, arguments passed to boot executable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data, arguments passed to boot executable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"178\"/>\n        <source>Boot entry index</source>\n        <translation>Boot entry index</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"184\"/>\n        <source>Index</source>\n        <translation>Index</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"212\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"215\"/>\n        <source>Boot entry description</source>\n        <translation>Boot entry description</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"107\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"110\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"116\"/>\n        <source>Optional data</source>\n        <translation>Optional data</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootData</name>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"111\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"813\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1027\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1361\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1472\"/>\n        <source>%1: not found</source>\n        <translation>%1: not found</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"120\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"821\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1387\"/>\n        <source>%1: failed deserialization</source>\n        <translation>%1: failed deserialization</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Error loading entries</source>\n        <translation>Error loading entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Failed to load some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>Failed to load some EFI Boot Manager entries:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Error saving entries</source>\n        <translation>Error saving entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Entry %1(%2): duplicated index!</source>\n        <translation>Entry %1(%2): duplicated index!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"389\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"419\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"458\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"479\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"487\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"516\"/>\n        <source>Error saving %1</source>\n        <translation>Error saving %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"407\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"470\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"504\"/>\n        <source>Error removing %1</source>\n        <translation>Error removing %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Error importing boot configuration</source>\n        <translation>Error importing boot configuration</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <source>Couldn&apos;t open selected file (%1).</source>\n        <translation>Couldn&apos;t open selected file (%1).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <source>Parser failed: %1</source>\n        <translation>Parser failed: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <source>Invalid _Type: %1</source>\n        <translation>Invalid _Type: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <source>Error exporting boot configuration</source>\n        <translation>Error exporting boot configuration</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <source>Couldn&apos;t open selected file (%1): %2.</source>\n        <translation>Couldn&apos;t open selected file (%1): %2.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <source>Couldn&apos;t write into file (%1): %2.</source>\n        <translation>Couldn&apos;t write into file (%1): %2.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Error dumping raw EFI data</source>\n        <translation>Error dumping raw EFI data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Failed to dump some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>Failed to dump some EFI Boot Manager entries:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"905\"/>\n        <source>Timeout</source>\n        <translation>Timeout</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"921\"/>\n        <source>Apple boot-args</source>\n        <translation>Apple boot-args</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"937\"/>\n        <source>Firmware actions</source>\n        <translation>Firmware actions</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"73\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation>Loading EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"89\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"787\"/>\n        <source>Searching EFI Boot Manager entries…</source>\n        <translation>Searching EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"116\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"292\"/>\n        <source>Processing EFI Boot Manager entries (%1)…</source>\n        <translation>Processing EFI Boot Manager entries (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"308\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation>Saving EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"333\"/>\n        <source>Searching old EFI Boot Manager entries…</source>\n        <translation>Searching old EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"374\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"416\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"447\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"476\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"484\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"491\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"513\"/>\n        <source>Saving EFI Boot Manager entries (%1)…</source>\n        <translation>Saving EFI Boot Manager entries (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"467\"/>\n        <source>Removing old EFI Boot Manager entries (%1)…</source>\n        <translation>Removing old EFI Boot Manager entries (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"404\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"501\"/>\n        <source>Removing EFI Boot Manager entries (%1)…</source>\n        <translation>Removing EFI Boot Manager entries (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"94\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"338\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"792\"/>\n        <source>Couldn&apos;t load EFI Boot Manager variables</source>\n        <translation>Couldn&apos;t load EFI Boot Manager variables</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"100\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"799\"/>\n        <source>Couldn&apos;t find any EFI Boot Manager variables</source>\n        <translation>Couldn&apos;t find any EFI Boot Manager variables</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"529\"/>\n        <source>Importing boot configuration…</source>\n        <translation>Importing boot configuration…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"565\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"770\"/>\n        <source>Exporting boot configuration…</source>\n        <translation>Exporting boot configuration…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"587\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"809\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"875\"/>\n        <source>Exporting EFI Boot Manager entries (%1)…</source>\n        <translation>Exporting EFI Boot Manager entries (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1013\"/>\n        <source>Importing boot configuration from JSON…</source>\n        <translation>Importing boot configuration from JSON…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1032\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1366\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1477\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1531\"/>\n        <source>Importing EFI Boot Manager entries (%1)…</source>\n        <translation>Importing EFI Boot Manager entries (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1035\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1376\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>%1: %2 expected</source>\n        <translation>%1: %2 expected</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1043\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1048\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1053\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <source>number</source>\n        <translation>number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1058\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1063\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1068\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1073\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1078\"/>\n        <source>bool</source>\n        <translation>bool</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1109\"/>\n        <source>%1: unknown boot manager capability</source>\n        <translation>%1: unknown boot manager capability</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1122\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1166\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1212\"/>\n        <source>array</source>\n        <translation>array</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1333\"/>\n        <source>string</source>\n        <translation>string</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1156\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1192\"/>\n        <source>%1: unknown os indication</source>\n        <translation>%1: unknown os indication</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1083\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1235\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1264\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1290\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1309\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1328\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>object</source>\n        <translation>object</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <source>hexadecimal number</source>\n        <translation>hexadecimal number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1270\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1315\"/>\n        <source>%1: failed parsing</source>\n        <translation>%1: failed parsing</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Failed to import some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>Failed to import some EFI Boot Manager entries:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1347\"/>\n        <source>Importing boot configuration from raw dump…</source>\n        <translation>Importing boot configuration from raw dump…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1379\"/>\n        <source>object(raw_data: string, efi_attributes: number)</source>\n        <extracomment>Expected JSON structure, thrown as error description. raw_data and efi_attributes are field names in JSON file</extracomment>\n        <translation>object(raw_data: string, efi_attributes: number)</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"15\"/>\n        <source>Boot</source>\n        <translation>Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"16\"/>\n        <source>Driver</source>\n        <translation>Driver</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"17\"/>\n        <source>System Preparation</source>\n        <translation>System Preparation</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"18\"/>\n        <source>Platform Recovery</source>\n        <translation>Platform Recovery</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditor</name>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"18\"/>\n        <source>EFI Boot Editor</source>\n        <translation>EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"71\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"412\"/>\n        <source>Boot</source>\n        <translation>Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"74\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"98\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"101\"/>\n        <source>Boot entries</source>\n        <translation>Boot entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"77\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"104\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Boot entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Boot entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"133\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"415\"/>\n        <source>Driver</source>\n        <translation>Driver</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"136\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"160\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"163\"/>\n        <source>Driver entries</source>\n        <translation>Driver entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"139\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"166\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Driver entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Driver entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"195\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"418\"/>\n        <source>System Preparation</source>\n        <translation>System Preparation</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"198\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"222\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"225\"/>\n        <source>SysPrep entries</source>\n        <translation>SysPrep entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"201\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of SysPrep entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of SysPrep entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"257\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"421\"/>\n        <source>Platform Recovery</source>\n        <translation>Platform Recovery</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"260\"/>\n        <source>PlatformRecovery entries</source>\n        <translation>PlatformRecovery entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"263\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of PlatformRecovery entries (READONLY).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of PlatformRecovery entries (READONLY).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"284\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"287\"/>\n        <source>PlatformRecovery entries (READONLY)</source>\n        <translation>PlatformRecovery entries (READONLY)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"346\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"349\"/>\n        <source>Add new entry</source>\n        <translation>Add new entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"352\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to add new boot entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to add new boot entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"377\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"380\"/>\n        <source>Duplicate entry</source>\n        <translation>Duplicate entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"383\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Duplicate entry&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Duplicate entry&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"408\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"411\"/>\n        <source>Remove entry</source>\n        <translation>Remove entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"414\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to remove currently selected entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to remove currently selected entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"439\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"442\"/>\n        <source>Move entry up</source>\n        <translation>Move entry up</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"445\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"470\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"473\"/>\n        <source>Move entry down</source>\n        <translation>Move entry down</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"476\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"501\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"504\"/>\n        <source>Reorder entries</source>\n        <translation>Reorder entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"507\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click here to adjust the order of all entries based on their position on the list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click here to adjust the order of all entries based on their position on the list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"599\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"608\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Global settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Global settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"602\"/>\n        <source>Global</source>\n        <translation>Global</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"632\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"635\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"654\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"657\"/>\n        <source>Boot manager timeout</source>\n        <translation>Boot manager timeout</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"638\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"660\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot manager timeout.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot manager timeout.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"663\"/>\n        <source>s</source>\n        <translation>s</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"674\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"677\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"686\"/>\n        <source>Firmware details</source>\n        <translation>Firmware details</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"680\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"689\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"683\"/>\n        <source>Firmware</source>\n        <translation>Firmware</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"719\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"722\"/>\n        <source>Available firmware features</source>\n        <translation>Available firmware features</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"725\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware features.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware features.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"728\"/>\n        <source>Features</source>\n        <translation>Features</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"737\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"740\"/>\n        <source>Platform supports reporting of deferred capsule processing by creation of result variable</source>\n        <translation>Platform supports reporting of deferred capsule processing by creation of result variable</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"743\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports reporting of deferred capsule processing by creation of result variable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports reporting of deferred capsule processing by creation of result variable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"746\"/>\n        <source>Capsule Reporting</source>\n        <translation>Capsule Reporting</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"756\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"759\"/>\n        <source>Firmware supports timestamp based revocation</source>\n        <translation>Firmware supports timestamp based revocation</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"762\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware supports timestamp based revocation.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware supports timestamp based revocation.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"765\"/>\n        <source>Timestamp based revocation</source>\n        <translation>Timestamp based revocation</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"775\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"778\"/>\n        <source>Platform supports processing of Firmware Management Protocol update capsule</source>\n        <translation>Platform supports processing of Firmware Management Protocol update capsule</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"781\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of Firmware Management Protocol update capsule.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of Firmware Management Protocol update capsule.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"784\"/>\n        <source>FMP Capsule</source>\n        <translation>FMP Capsule</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"794\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"797\"/>\n        <source>Platform supports processing of file capsules</source>\n        <translation>Platform supports processing of file capsules</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"800\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of file capsules.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of file capsules.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"803\"/>\n        <source>File Capsule</source>\n        <translation>File Capsule</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"828\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"831\"/>\n        <source>Available firmware actions</source>\n        <translation>Available firmware actions</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware actions.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware actions.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"837\"/>\n        <source>Actions</source>\n        <translation>Actions</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"846\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"849\"/>\n        <source>Stop at a firmware user interface on the next boot</source>\n        <translation>Stop at a firmware user interface on the next boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Stop at a firmware user interface on the next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Stop at a firmware user interface on the next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"855\"/>\n        <source>Boot to firmware UI</source>\n        <translation>Boot to firmware UI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"862\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"865\"/>\n        <source>Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot</source>\n        <translation>Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"871\"/>\n        <source>Collect current config</source>\n        <translation>Collect current config</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"878\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"881\"/>\n        <source>Indicate that Platform-defined recovery should commence upon reboot</source>\n        <translation>Indicate that Platform-defined recovery should commence upon reboot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"884\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that Platform-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that Platform-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"887\"/>\n        <source>Start Platform recovery</source>\n        <translation>Start Platform recovery</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"894\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"897\"/>\n        <source>Indicate that OS-defined recovery should commence upon reboot</source>\n        <translation>Indicate that OS-defined recovery should commence upon reboot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"900\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that OS-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that OS-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"903\"/>\n        <source>Start OS recovery</source>\n        <translation>Start OS recovery</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"932\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"935\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"944\"/>\n        <source>Secure boot settings</source>\n        <translation>Secure boot settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"938\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"947\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Secure boot settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Secure boot settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"941\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1025\"/>\n        <source>Secure Boot</source>\n        <translation>Secure Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"978\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"981\"/>\n        <source>Defines whether the system is currently operating in Audit Mode</source>\n        <translation>Defines whether the system is currently operating in Audit Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"984\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Audit Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Audit Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"987\"/>\n        <source>Audit Mode</source>\n        <translation>Audit Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"997\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1000\"/>\n        <source>Defines whether the system is currently operating in Deployed Mode</source>\n        <translation>Defines whether the system is currently operating in Deployed Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1003\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Deployed Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Deployed Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1006\"/>\n        <source>Deployed Mode</source>\n        <translation>Deployed Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1016\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1019\"/>\n        <source>Defines whether the platform firmware is operating with Secure Boot enabled</source>\n        <translation>Defines whether the platform firmware is operating with Secure Boot enabled</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1022\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the platform firmware is operating with Secure Boot enabled.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the platform firmware is operating with Secure Boot enabled.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1035\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1038\"/>\n        <source>Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables</source>\n        <translation>Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1041\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1044\"/>\n        <source>Setup Mode</source>\n        <translation>Setup Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1054\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1057\"/>\n        <source>Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys</source>\n        <translation>Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1063\"/>\n        <source>Vendor Keys</source>\n        <translation>Vendor Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1074\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1077\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1086\"/>\n        <source>Apple settings</source>\n        <translation>Apple settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1080\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apple settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apple settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1083\"/>\n        <source>Apple</source>\n        <translation>Apple</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1113\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1116\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1129\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1132\"/>\n        <source>macOS boot arguments</source>\n        <translation>macOS boot arguments</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1119\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;macOS boot arguments.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;macOS boot arguments.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1161\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1164\"/>\n        <source>Undo stack</source>\n        <translation>Undo stack</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1167\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo stack&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo stack&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1194\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1214\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Help menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Help menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1255\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Exit the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Exit the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1272\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apply changes to the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apply changes to the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1289\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reloads EFI data from the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reloads EFI data from the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1306\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Show information about the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Show information about the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1320\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Export current entries into JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Export current entries into JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1337\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Import EFI data from JSON dump.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Import EFI data from JSON dump.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1354\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dumps raw EFI data for debugging purposes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dumps raw EFI data for debugging purposes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1362\"/>\n        <source>&amp;Undo</source>\n        <translation>&amp;Undo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1365\"/>\n        <source>Undo</source>\n        <translation>Undo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1368\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1371\"/>\n        <source>Ctrl+Z</source>\n        <translation>Ctrl+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1379\"/>\n        <source>&amp;Redo</source>\n        <translation>&amp;Redo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1382\"/>\n        <source>Redo</source>\n        <translation>Redo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1385\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Redo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Redo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1388\"/>\n        <source>Ctrl+Shift+Z</source>\n        <translation>Ctrl+Shift+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1396\"/>\n        <source>Hot &amp;keys</source>\n        <translation>Hot &amp;keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1399\"/>\n        <source>Hot Keys</source>\n        <translation>Hot Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1402\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"593\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"596\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"605\"/>\n        <source>Global settings</source>\n        <translation>Global settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"641\"/>\n        <source>Timeout</source>\n        <translation>Timeout</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1122\"/>\n        <source>Boot args</source>\n        <translation>Boot args</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1188\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1191\"/>\n        <source>File</source>\n        <translation>File</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1197\"/>\n        <source>&amp;File</source>\n        <translation>&amp;File</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1208\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1211\"/>\n        <source>Help</source>\n        <translation>Help</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1217\"/>\n        <source>&amp;Help</source>\n        <translation>&amp;Help</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1225\"/>\n        <source>&amp;Edit</source>\n        <translation>&amp;Edit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1249\"/>\n        <source>&amp;Quit</source>\n        <translation>&amp;Quit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1252\"/>\n        <source>Quit</source>\n        <translation>Quit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1258\"/>\n        <source>Ctrl+Q</source>\n        <translation>Ctrl+Q</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1266\"/>\n        <source>&amp;Save</source>\n        <translation>&amp;Save</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1269\"/>\n        <source>Save</source>\n        <translation>Save</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1275\"/>\n        <source>Ctrl+S</source>\n        <translation>Ctrl+S</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1283\"/>\n        <source>&amp;Reload</source>\n        <translation>&amp;Reload</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1286\"/>\n        <source>Reload</source>\n        <translation>Reload</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1292\"/>\n        <source>Ctrl+R</source>\n        <translation>Ctrl+R</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1300\"/>\n        <source>About &amp;EFI Boot Editor</source>\n        <translation>About &amp;EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1303\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"29\"/>\n        <source>About EFI Boot Editor</source>\n        <translation>About EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1314\"/>\n        <source>&amp;Export</source>\n        <translation>&amp;Export</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1317\"/>\n        <source>Export</source>\n        <translation>Export</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1323\"/>\n        <source>Ctrl+E</source>\n        <translation>Ctrl+E</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1331\"/>\n        <source>&amp;Import</source>\n        <translation>&amp;Import</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1334\"/>\n        <source>Import</source>\n        <translation>Import</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1340\"/>\n        <source>Ctrl+I</source>\n        <translation>Ctrl+I</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1348\"/>\n        <source>&amp;Dump raw EFI data</source>\n        <translation>&amp;Dump raw EFI data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1351\"/>\n        <source>Dump raw EFI data</source>\n        <translation>Dump raw EFI data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"26\"/>\n        <source>Working…</source>\n        <translation>Working…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"92\"/>\n        <source>Undo %1</source>\n        <translation>Undo %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"95\"/>\n        <source>Redo %1</source>\n        <translation>Redo %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"137\"/>\n        <source>Are you sure you want to reload the entries?&lt;br/&gt;ALL of your changes will be lost!</source>\n        <translation>Are you sure you want to reload the entries?&lt;br/&gt;ALL of your changes will be lost!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"162\"/>\n        <source>Are you sure you want to reorder the boot entries?&lt;br/&gt;All indexes will be overwritten!</source>\n        <translation>Are you sure you want to reorder the boot entries?&lt;br/&gt;All indexes will be overwritten!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"221\"/>\n        <source>Are you sure you want to save?&lt;br/&gt;Your EFI configuration will be overwritten!</source>\n        <translation>Are you sure you want to save?&lt;br/&gt;Your EFI configuration will be overwritten!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <source>Open boot configuration dump</source>\n        <translation>Open boot configuration dump</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>JSON documents (*.json)</source>\n        <translation>JSON documents (*.json)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <source>Save boot configuration dump</source>\n        <translation>Save boot configuration dump</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>Save raw EFI dump</source>\n        <translation>Save raw EFI dump</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"31\"/>\n        <source>&lt;h1&gt;EFI Boot Editor&lt;/h1&gt;&lt;p&gt;Version &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Boot Editor for (U)EFI based systems.&lt;/p&gt;</source>\n        <extracomment>About dialog</extracomment>\n        <translation>&lt;h1&gt;EFI Boot Editor&lt;/h1&gt;&lt;p&gt;Version &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Boot Editor for (U)EFI based systems.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"45\"/>\n        <source>&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;Website&lt;/a&gt;&lt;/p&gt;&lt;p&gt;The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.&lt;/p&gt;&lt;p&gt;License: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL Version 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;On Linux uses &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; for EFI variables access.&lt;/p&gt;&lt;p&gt;Uses Tango Icons as fallback icons.&lt;/p&gt;</source>\n        <extracomment>About dialog details</extracomment>\n        <translation>&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;Website&lt;/a&gt;&lt;/p&gt;&lt;p&gt;The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.&lt;/p&gt;&lt;p&gt;License: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL Version 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;On Linux uses &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; for EFI variables access.&lt;/p&gt;&lt;p&gt;Uses Tango Icons as fallback icons.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"330\"/>\n        <source>Reorder %1 entries</source>\n        <translation>Reorder %1 entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"453\"/>\n        <source>Are you sure you want to quit?</source>\n        <translation>Are you sure you want to quit?</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"123\"/>\n        <source>EFI support required</source>\n        <translation>EFI support required</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditorCLI</name>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"13\"/>\n        <source>Boot Editor for (U)EFI based systems.</source>\n        <translation>Boot Editor for (U)EFI based systems.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <source>Export configuration.</source>\n        <translation>Export configuration.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>FILE</source>\n        <translation>FILE</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <source>Dump raw EFI data.</source>\n        <translation>Dump raw EFI data.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>Import configuration from JSON (either from export or raw dump).</source>\n        <translation>Import configuration from JSON (either from export or raw dump).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"19\"/>\n        <source>Force import, don&apos;t ask for confirmation.</source>\n        <translation>Force import, don&apos;t ask for confirmation.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"26\"/>\n        <source>EFI support required</source>\n        <translation>EFI support required</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"45\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation>Loading EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"47\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"57\"/>\n        <source>Exporting boot configuration…</source>\n        <translation>Exporting boot configuration…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"67\"/>\n        <source>Importing boot configuration…</source>\n        <translation>Importing boot configuration…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Loaded %0 %1 entries</source>\n        <translation>Loaded %0 %1 entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <source>Boot</source>\n        <translation>Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <source>Driver</source>\n        <translation>Driver</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <source>System Preparation</source>\n        <translation>System Preparation</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Hot Key</source>\n        <translation>Hot Key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"78\"/>\n        <source>Are you sure you want to save?\nYour EFI configuration will be overwritten!</source>\n        <translation>Are you sure you want to save?\nYour EFI configuration will be overwritten!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"86\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation>Saving EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"98\"/>\n        <source>ERROR: %0! %1</source>\n        <translation>ERROR: %0! %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"114\"/>\n        <source>Finished</source>\n        <translation>Finished</translation>\n    </message>\n</context>\n<context>\n    <name>EFIKeySequenceEdit</name>\n    <message>\n        <location filename=\"../src/efikeysequenceedit.cpp\" line=\"109\"/>\n        <source>Press hot key</source>\n        <translation>Press hot key</translation>\n    </message>\n</context>\n<context>\n    <name>FilePathDialog</name>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"12\"/>\n        <source>File path editor</source>\n        <translation>File path editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"47\"/>\n        <source>PCI</source>\n        <translation>PCI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"80\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"86\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"196\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"202\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"218\"/>\n        <source>Function</source>\n        <translation>Function</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"121\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"127\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"143\"/>\n        <source>Device</source>\n        <translation>Device</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"721\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"727\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"742\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"835\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"841\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"856\"/>\n        <source>HID</source>\n        <translation>HID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"761\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"767\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"782\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"896\"/>\n        <source>UID</source>\n        <translation>UID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1813\"/>\n        <source>USB</source>\n        <translation>USB</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1819\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1893\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1909\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3688\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3710\"/>\n        <source>Interface</source>\n        <translation>Interface</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7442\"/>\n        <source>Vendor</source>\n        <translation>Vendor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7445\"/>\n        <source>Vendor settings</source>\n        <translation>Vendor settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7448\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1778\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1793\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5824\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6348\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7117\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7546\"/>\n        <source>GUID</source>\n        <translation>GUID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5539\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7587\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7850\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7853\"/>\n        <source>Data format</source>\n        <translation>Data format</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5542\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7590\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7856\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5546\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5869\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7860\"/>\n        <source>BASE64</source>\n        <translation>BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1168\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5551\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5874\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7865\"/>\n        <source>UTF-16</source>\n        <translation>UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1173\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5556\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7604\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7870\"/>\n        <source>UTF-8</source>\n        <translation>UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5561\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7875\"/>\n        <source>HEX</source>\n        <translation>HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5523\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5901\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7888\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7891\"/>\n        <source>Data</source>\n        <translation>Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7894\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7565\"/>\n        <source>Vendor data</source>\n        <translation>Vendor data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7481\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7757\"/>\n        <source>Type</source>\n        <translation>Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7478\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7500\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7504\"/>\n        <source>HW</source>\n        <translation>HW</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7509\"/>\n        <source>MSG</source>\n        <translation>MSG</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7514\"/>\n        <source>MEDIA</source>\n        <translation>MEDIA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2292\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2298\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2313\"/>\n        <source>MAC</source>\n        <translation>MAC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2265\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;MAC settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;MAC settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2374\"/>\n        <source>IPv4</source>\n        <translation>IPv4</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2380\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv4 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv4 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2569\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2591\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2925\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2931\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2947\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4110\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4116\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4132\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6616\"/>\n        <source>Protocol</source>\n        <translation>Protocol</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3003\"/>\n        <source>Static</source>\n        <translation>Static</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2692\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Subnet mask.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Subnet mask.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2730\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5479\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5486\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5503\"/>\n        <source>IPv6</source>\n        <translation>IPv6</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2736\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv6 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv6 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3008\"/>\n        <source>Stateless auto-configuration</source>\n        <translation>Stateless auto-configuration</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3013\"/>\n        <source>Stateful auto-configuration</source>\n        <translation>Stateful auto-configuration</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3920\"/>\n        <source>SATA</source>\n        <translation>SATA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SATA settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SATA settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1387\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1393\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1409\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1658\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1664\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1679\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3900\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4035\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4041\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4057\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4191\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4197\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4212\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4496\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4502\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4610\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4616\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4988\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5009\"/>\n        <source>LUN</source>\n        <translation>LUN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4885\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4901\"/>\n        <source>URI</source>\n        <translation>URI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6105\"/>\n        <source>Disk</source>\n        <translation>Disk</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6102\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6123\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6126\"/>\n        <source>Choose disk</source>\n        <translation>Choose disk</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6129\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Choose disk from discovered in the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Choose disk from discovered in the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6133\"/>\n        <source>Custom</source>\n        <translation>Custom</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6147\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6150\"/>\n        <source>Reload drives</source>\n        <translation>Reload drives</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reload system drives list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reload system drives list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6343\"/>\n        <source>MBR</source>\n        <translation>MBR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6177\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6183\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6199\"/>\n        <source>Partition</source>\n        <translation>Partition</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6720\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6741\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6797\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6812\"/>\n        <source>Name</source>\n        <translation>Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7176\"/>\n        <source>BIOS Boot Specification</source>\n        <translation>BIOS Boot Specification</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7405\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7411\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7427\"/>\n        <source>Description</source>\n        <translation>Description</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7639\"/>\n        <source>End</source>\n        <translation>End</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7669\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7672\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7678\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7797\"/>\n        <source>Sub-Type</source>\n        <translation>Sub-Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7675\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7697\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7701\"/>\n        <source>End This Instance</source>\n        <translation>End This Instance</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7706\"/>\n        <source>End Entire</source>\n        <translation>End Entire</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7718\"/>\n        <source>Unknown</source>\n        <translation>Unknown</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"50\"/>\n        <source>The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.</source>\n        <translation>The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"53\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"77\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"99\"/>\n        <source>PCI Function Number.</source>\n        <translation>PCI Function Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"83\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"105\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Function Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Function Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"118\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"140\"/>\n        <source>PCI Device Number.</source>\n        <translation>PCI Device Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"124\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Device Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Device Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"163\"/>\n        <source>PCCARD</source>\n        <translation>PCCARD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"166\"/>\n        <source>PCCARD Settings.</source>\n        <translation>PCCARD Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCCARD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCCARD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"193\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"215\"/>\n        <source>Function Number (0 = First Function).</source>\n        <translation>Function Number (0 = First Function).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"199\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"221\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Function Number (0 = First Function).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Function Number (0 = First Function).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"238\"/>\n        <source>Memory Mapped</source>\n        <translation>Memory Mapped</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"241\"/>\n        <source>Memory Mapped Settings.</source>\n        <translation>Memory Mapped Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Memory Mapped Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Memory Mapped Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"268\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"290\"/>\n        <source>The type of memory to allocate.</source>\n        <translation>The type of memory to allocate.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"271\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"293\"/>\n        <source>Memory Type</source>\n        <translation>Memory Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"274\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"296\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The type of memory to allocate.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The type of memory to allocate.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"300\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1584\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1738\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1753\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3145\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3160\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4416\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4437\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6868\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6883\"/>\n        <source>Reserved</source>\n        <translation>Reserved</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"305\"/>\n        <source>Loader Code</source>\n        <translation>Loader Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"310\"/>\n        <source>Loader Data</source>\n        <translation>Loader Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"315\"/>\n        <source>Boot Services Code</source>\n        <translation>Boot Services Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"320\"/>\n        <source>Boot Services Data</source>\n        <translation>Boot Services Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"325\"/>\n        <source>Runtime Services Code</source>\n        <translation>Runtime Services Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"330\"/>\n        <source>Runtime Services Data</source>\n        <translation>Runtime Services Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"335\"/>\n        <source>Conventional</source>\n        <translation>Conventional</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"340\"/>\n        <source>Unusable</source>\n        <translation>Unusable</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"345\"/>\n        <source>ACPI Reclaim</source>\n        <translation>ACPI Reclaim</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"350\"/>\n        <source>ACPI Memory NVS</source>\n        <translation>ACPI Memory NVS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"355\"/>\n        <source>Memory Mapped IO</source>\n        <translation>Memory Mapped IO</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"360\"/>\n        <source>Memory Mapped IO Port Space</source>\n        <translation>Memory Mapped IO Port Space</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"365\"/>\n        <source>Pal Code</source>\n        <translation>Pal Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"370\"/>\n        <source>Persistent</source>\n        <translation>Persistent</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"375\"/>\n        <source>Unaccepted</source>\n        <translation>Unaccepted</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"383\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7013\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7034\"/>\n        <source>Starting Memory Address.</source>\n        <translation>Starting Memory Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"386\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"407\"/>\n        <source>Start Address</source>\n        <translation>Start Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"389\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7019\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7040\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"423\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7053\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7074\"/>\n        <source>Ending Memory Address.</source>\n        <translation>Ending Memory Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"426\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"432\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"447\"/>\n        <source>End Address</source>\n        <translation>End Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"429\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7080\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ending Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ending Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"467\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"522\"/>\n        <source>Controller</source>\n        <translation>Controller</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"470\"/>\n        <source>Controller settings.</source>\n        <translation>Controller settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"473\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"519\"/>\n        <source>Controller number.</source>\n        <translation>Controller number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"525\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"542\"/>\n        <source>BMC</source>\n        <translation>BMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"545\"/>\n        <source>The Device Path for a Baseboard Management Controller (BMC) host interface.</source>\n        <translation>The Device Path for a Baseboard Management Controller (BMC) host interface.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"548\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for a Baseboard Management Controller (BMC) host interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for a Baseboard Management Controller (BMC) host interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"602\"/>\n        <source>The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.</source>\n        <translation>The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"579\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"589\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2332\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2354\"/>\n        <source>Interface Type</source>\n        <translation>Interface Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"582\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"612\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"625\"/>\n        <source>Keyboard Controller Style</source>\n        <translation>Keyboard Controller Style</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"630\"/>\n        <source>Server Management Interface Chip</source>\n        <translation>Server Management Interface Chip</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"635\"/>\n        <source>Block Transfer</source>\n        <translation>Block Transfer</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"643\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"664\"/>\n        <source>Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.</source>\n        <translation>Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"667\"/>\n        <source>Base Address</source>\n        <translation>Base Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"670\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"688\"/>\n        <source>ACPI</source>\n        <translation>ACPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"805\"/>\n        <source>This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.</source>\n        <translation>This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"808\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"718\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"739\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"832\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"853\"/>\n        <source>Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.</source>\n        <translation>Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"724\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"745\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"838\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"859\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"779\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"872\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"893\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.</source>\n        <translation>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"764\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"785\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"899\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"802\"/>\n        <source>Expanded</source>\n        <translation>Expanded</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"912\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"933\"/>\n        <source>Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.</source>\n        <translation>Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"915\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"921\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"936\"/>\n        <source>CID</source>\n        <translation>CID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"918\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"939\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"952\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"974\"/>\n        <source>Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.</source>\n        <translation>Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"955\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"961\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"977\"/>\n        <source>HIDSTR</source>\n        <translation>HIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"958\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"980\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"987\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1009\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.</source>\n        <translation>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"990\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"996\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1012\"/>\n        <source>UIDSTR</source>\n        <translation>UIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"993\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1015\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1044\"/>\n        <source>Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.</source>\n        <translation>Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1025\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1031\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1047\"/>\n        <source>CIDSTR</source>\n        <translation>CIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1028\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1050\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1061\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1094\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1100\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1115\"/>\n        <source>ADR</source>\n        <translation>ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1064\"/>\n        <source>The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.</source>\n        <translation>The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1067\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1091\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1112\"/>\n        <source>ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required</source>\n        <translation>ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1097\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1118\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1131\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1192\"/>\n        <source>This device path may optionally contain more than one ADR entry.</source>\n        <translation>This device path may optionally contain more than one ADR entry.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1195\"/>\n        <source>Additional ADR</source>\n        <translation>Additional ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1198\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path may optionally contain more than one ADR entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path may optionally contain more than one ADR entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1153\"/>\n        <source>Additional ADR format.</source>\n        <translation>Additional ADR format.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1156\"/>\n        <source>Additional ADR format</source>\n        <translation>Additional ADR format</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1159\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Additional ADR format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Additional ADR format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1209\"/>\n        <source>NVDIMM</source>\n        <translation>NVDIMM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1212\"/>\n        <source>This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.</source>\n        <translation>This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1260\"/>\n        <source>NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.</source>\n        <translation>NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1242\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1248\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1263\"/>\n        <source>NFIT Device Handle</source>\n        <translation>NFIT Device Handle</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1245\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1284\"/>\n        <source>ATAPI</source>\n        <translation>ATAPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1287\"/>\n        <source>ATAPI Settings.</source>\n        <translation>ATAPI Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1336\"/>\n        <source>Set to zero for primary or one for secondary.</source>\n        <translation>Set to zero for primary or one for secondary.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1317\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1323\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1339\"/>\n        <source>Primary</source>\n        <translation>Primary</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1320\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1342\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for primary or one for secondary.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for primary or one for secondary.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1349\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1371\"/>\n        <source>Set to zero for master or one for slave mode.</source>\n        <translation>Set to zero for master or one for slave mode.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1374\"/>\n        <source>Slave</source>\n        <translation>Slave</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1377\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for master or one for slave mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for master or one for slave mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1384\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1406\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4054\"/>\n        <source>Logical Unit Number.</source>\n        <translation>Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1390\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1412\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4038\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1429\"/>\n        <source>SCSI</source>\n        <translation>SCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1432\"/>\n        <source>SCSI Settings.</source>\n        <translation>SCSI Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1435\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1481\"/>\n        <source>Target ID on the SCSI bus (PUN).</source>\n        <translation>Target ID on the SCSI bus (PUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1962\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1984\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4969\"/>\n        <source>Target ID</source>\n        <translation>Target ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1465\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1487\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the SCSI bus (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the SCSI bus (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4985\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5006\"/>\n        <source>Logical Unit Number (LUN).</source>\n        <translation>Logical Unit Number (LUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5012\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1545\"/>\n        <source>Fibre Channel</source>\n        <translation>Fibre Channel</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1548\"/>\n        <source>Fibre Channel Settings</source>\n        <translation>Fibre Channel Settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1551\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1596\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1750\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4434\"/>\n        <source>Reserved.</source>\n        <translation>Reserved.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1581\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1602\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1756\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3142\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4419\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1615\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1636\"/>\n        <source>Fibre Channel World Wide Name.</source>\n        <translation>Fibre Channel World Wide Name.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1624\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1639\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4456\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4477\"/>\n        <source>World Wide Name</source>\n        <translation>World Wide Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1621\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1642\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel World Wide Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel World Wide Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1676\"/>\n        <source>Fibre Channel Logical Unit Number.</source>\n        <translation>Fibre Channel Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1661\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1682\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1699\"/>\n        <source>Firewire</source>\n        <translation>Firewire</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1702\"/>\n        <source>Firewire Settings.</source>\n        <translation>Firewire Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1705\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firewire Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firewire Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1790\"/>\n        <source>1394 Global Unique ID (GUID)</source>\n        <translation>1394 Global Unique ID (GUID)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1796\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 Global Unique ID (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 Global Unique ID (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1816\"/>\n        <source>USB settings.</source>\n        <translation>USB settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1865\"/>\n        <source>USB Parent Port Number.</source>\n        <translation>USB Parent Port Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1852\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1868\"/>\n        <source>Parent Port</source>\n        <translation>Parent Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1871\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Parent Port Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Parent Port Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1906\"/>\n        <source>USB Interface Number.</source>\n        <translation>USB Interface Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1912\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1929\"/>\n        <source>I2O</source>\n        <translation>I2O</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1932\"/>\n        <source>I2O Settings</source>\n        <translation>I2O Settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1935\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;I2O Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;I2O Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1981\"/>\n        <source>Target ID (TID) for a device.</source>\n        <translation>Target ID (TID) for a device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1965\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1987\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID (TID) for a device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID (TID) for a device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2004\"/>\n        <source>InfiniBand</source>\n        <translation>InfiniBand</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2007\"/>\n        <source>InfiniBand Settings.</source>\n        <translation>InfiniBand Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2010\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;InfiniBand Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;InfiniBand Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2034\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2067\"/>\n        <source>Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.</source>\n        <translation>Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2043\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2055\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2076\"/>\n        <source>Resource Flags</source>\n        <translation>Resource Flags</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2046\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2079\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2098\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2119\"/>\n        <source>128-bit Global Identifier for remote fabric port</source>\n        <translation>128-bit Global Identifier for remote fabric port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2101\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2122\"/>\n        <source>PORT GID</source>\n        <translation>PORT GID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2104\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2125\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;128-bit Global Identifier for remote fabric port&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;128-bit Global Identifier for remote fabric port&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2135\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2156\"/>\n        <source>64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)</source>\n        <translation>64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2138\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2144\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2159\"/>\n        <source>IOC GUID/Service ID</source>\n        <translation>IOC GUID/Service ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2141\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2162\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2175\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2196\"/>\n        <source>64-bit persistent ID of remote IOC port.</source>\n        <translation>64-bit persistent ID of remote IOC port.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2184\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2199\"/>\n        <source>Target Port ID</source>\n        <translation>Target Port ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2181\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote IOC port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote IOC port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2236\"/>\n        <source>64-bit persistent ID of remote device.</source>\n        <translation>64-bit persistent ID of remote device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2239\"/>\n        <source>Device ID</source>\n        <translation>Device ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2259\"/>\n        <source>MAC Address</source>\n        <translation>MAC Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2262\"/>\n        <source>MAC settings.</source>\n        <translation>MAC settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2289\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2310\"/>\n        <source>The MAC address for a network interface padded with 0s.</source>\n        <translation>The MAC address for a network interface padded with 0s.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2295\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2316\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The MAC address for a network interface padded with 0s.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The MAC address for a network interface padded with 0s.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2329\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2351\"/>\n        <source>Network interface type (i.e., 802.3, FDDI). See RFC 3232.</source>\n        <translation>Network interface type (i.e., 802.3, FDDI). See RFC 3232.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2357\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network interface type (i.e., 802.3, FDDI). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network interface type (i.e., 802.3, FDDI). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2377\"/>\n        <source>IPv4 settings.</source>\n        <translation>IPv4 settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2425\"/>\n        <source>The local IPv4 address.</source>\n        <translation>The local IPv4 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2407\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2763\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2784\"/>\n        <source>Local IP Address</source>\n        <translation>Local IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2431\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2465\"/>\n        <source>The remote IPv4 address.</source>\n        <translation>The remote IPv4 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2447\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2824\"/>\n        <source>Remote IP Address</source>\n        <translation>Remote IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2471\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2862\"/>\n        <source>The local port number.</source>\n        <translation>The local port number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2487\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2865\"/>\n        <source>Local Port</source>\n        <translation>Local Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2490\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2547\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2903\"/>\n        <source>The remote port number.</source>\n        <translation>The remote port number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2550\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2906\"/>\n        <source>Remote Port</source>\n        <translation>Remote Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2553\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2909\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2566\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2588\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2922\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2944\"/>\n        <source>The network protocol (i.e., UDP, TCP). See RFC 3232.</source>\n        <translation>The network protocol (i.e., UDP, TCP). See RFC 3232.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2928\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2950\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The network protocol (i.e., UDP, TCP). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The network protocol (i.e., UDP, TCP). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2631\"/>\n        <source>0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.</source>\n        <translation>0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2635\"/>\n        <source>Static IP Address</source>\n        <translation>Static IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2667\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3083\"/>\n        <source>The Gateway IP Address.</source>\n        <translation>The Gateway IP Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3071\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3086\"/>\n        <source>Gateway IP Address</source>\n        <translation>Gateway IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2673\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Gateway IP Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Gateway IP Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2686\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2707\"/>\n        <source>Subnet mask.</source>\n        <translation>Subnet mask.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2689\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2695\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2710\"/>\n        <source>Subnet Mask</source>\n        <translation>Subnet Mask</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2733\"/>\n        <source>IPv6 settings.</source>\n        <translation>IPv6 settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2760\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2781\"/>\n        <source>The local IPv6 address.</source>\n        <translation>The local IPv6 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2787\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2821\"/>\n        <source>The remote IPv6 address.</source>\n        <translation>The remote IPv6 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2963\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2989\"/>\n        <source>0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.</source>\n        <translation>0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2976\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2994\"/>\n        <source>IP Address Origin</source>\n        <translation>IP Address Origin</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2971\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2997\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3021\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3043\"/>\n        <source>The Prefix Length.</source>\n        <translation>The Prefix Length.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3024\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3030\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3046\"/>\n        <source>Prefix Length</source>\n        <translation>Prefix Length</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3027\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3049\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Prefix Length.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Prefix Length.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3106\"/>\n        <source>UART</source>\n        <translation>UART</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3109\"/>\n        <source>UART Settings.</source>\n        <translation>UART Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3112\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3176\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3197\"/>\n        <source>The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.</source>\n        <translation>The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3179\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3185\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3200\"/>\n        <source>Baud Rate</source>\n        <translation>Baud Rate</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3182\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3203\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3216\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3238\"/>\n        <source>The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.</source>\n        <translation>The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3219\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3225\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3241\"/>\n        <source>Data Bits</source>\n        <translation>Data Bits</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3222\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3257\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3291\"/>\n        <source>The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.</source>\n        <translation>The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3266\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3300\"/>\n        <source>Parity</source>\n        <translation>Parity</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3303\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3313\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3394\"/>\n        <source>Default</source>\n        <translation>Default</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3318\"/>\n        <source>No</source>\n        <translation>No</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3323\"/>\n        <source>Even</source>\n        <translation>Even</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3328\"/>\n        <source>Odd</source>\n        <translation>Odd</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3333\"/>\n        <source>Mark</source>\n        <translation>Mark</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3338\"/>\n        <source>Space</source>\n        <translation>Space</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3346\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3376\"/>\n        <source>The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.</source>\n        <translation>The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3353\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3363\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3383\"/>\n        <source>Stop Bits</source>\n        <translation>Stop Bits</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3356\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3399\"/>\n        <source>1</source>\n        <translation>1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3404\"/>\n        <source>1.5</source>\n        <translation>1.5</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3409\"/>\n        <source>2</source>\n        <translation>2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3421\"/>\n        <source>USB Class</source>\n        <translation>USB Class</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3424\"/>\n        <source>USB Class Settings.</source>\n        <translation>USB Class Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3427\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Class Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Class Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3451\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3472\"/>\n        <source>Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.</source>\n        <translation>Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3454\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3460\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3475\"/>\n        <source>Vendor ID</source>\n        <translation>Vendor ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3457\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3478\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3491\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3512\"/>\n        <source>Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.</source>\n        <translation>Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3515\"/>\n        <source>Product ID</source>\n        <translation>Product ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3518\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3552\"/>\n        <source>The class code assigned by the USB-IF. A value of 0xFF will match any class code.</source>\n        <translation>The class code assigned by the USB-IF. A value of 0xFF will match any class code.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3540\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3555\"/>\n        <source>Device Class</source>\n        <translation>Device Class</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3537\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3558\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The class code assigned by the USB-IF. A value of 0xFF will match any class code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The class code assigned by the USB-IF. A value of 0xFF will match any class code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3592\"/>\n        <source>The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.</source>\n        <translation>The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3574\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3595\"/>\n        <source>Device Subclass</source>\n        <translation>Device Subclass</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3632\"/>\n        <source>The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.</source>\n        <translation>The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3635\"/>\n        <source>Device Protocol</source>\n        <translation>Device Protocol</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3617\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3655\"/>\n        <source>USB WWID</source>\n        <translation>USB WWID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3658\"/>\n        <source>This device path describes a USB device using its serial number.</source>\n        <translation>This device path describes a USB device using its serial number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3661\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a USB device using its serial number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a USB device using its serial number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3685\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3707\"/>\n        <source>USB interface Number.</source>\n        <translation>USB interface Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3747\"/>\n        <source>USB vendor id of the device.</source>\n        <translation>USB vendor id of the device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3750\"/>\n        <source>Device Vendor Id</source>\n        <translation>Device Vendor Id</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3753\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB vendor id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB vendor id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3787\"/>\n        <source>USB product id of the device.</source>\n        <translation>USB product id of the device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3790\"/>\n        <source>Device Product Id</source>\n        <translation>Device Product Id</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3793\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB product id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB product id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3828\"/>\n        <source>Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).</source>\n        <translation>Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3815\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3831\"/>\n        <source>Serial Number</source>\n        <translation>Serial Number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3812\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3845\"/>\n        <source>Device Logical Unit</source>\n        <translation>Device Logical Unit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3848\"/>\n        <source>Device Logical Unit Settings.</source>\n        <translation>Device Logical Unit Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3851\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device Logical Unit Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device Logical Unit Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3897\"/>\n        <source>Logical Unit Number for the interface.</source>\n        <translation>Logical Unit Number for the interface.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3903\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number for the interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number for the interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3923\"/>\n        <source>SATA settings.</source>\n        <translation>SATA settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3950\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3972\"/>\n        <source>The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.</source>\n        <translation>The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3953\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3975\"/>\n        <source>HBA Port</source>\n        <translation>HBA Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3956\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3978\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4013\"/>\n        <source>The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.</source>\n        <translation>The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4000\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4016\"/>\n        <source>Port Multiplier Port</source>\n        <translation>Port Multiplier Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3997\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4019\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4077\"/>\n        <source>iSCSI</source>\n        <translation>iSCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4080\"/>\n        <source>iSCSI Settings.</source>\n        <translation>iSCSI Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4083\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4129\"/>\n        <source>Network Protocol (0 = TCP, 1+ = reserved).</source>\n        <translation>Network Protocol (0 = TCP, 1+ = reserved).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4113\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network Protocol (0 = TCP, 1+ = reserved).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network Protocol (0 = TCP, 1+ = reserved).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4148\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4169\"/>\n        <source>iSCSI Login Options.</source>\n        <translation>iSCSI Login Options.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4151\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4172\"/>\n        <source>Options</source>\n        <translation>Options</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4154\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4175\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Login Options.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Login Options.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4188\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4209\"/>\n        <source>8 byte array containing the iSCSI Logical Unit Number.</source>\n        <translation>8 byte array containing the iSCSI Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4194\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing the iSCSI Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing the iSCSI Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4228\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4250\"/>\n        <source>iSCSI Target Portal group tag the initiator intends to establish a session with.</source>\n        <translation>iSCSI Target Portal group tag the initiator intends to establish a session with.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4231\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4253\"/>\n        <source>Target Portal Group</source>\n        <translation>Target Portal Group</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4234\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4256\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Target Portal group tag the initiator intends to establish a session with.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Target Portal group tag the initiator intends to establish a session with.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4291\"/>\n        <source>iSCSI NodeTarget Name.</source>\n        <translation>iSCSI NodeTarget Name.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4272\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4294\"/>\n        <source>Target Name</source>\n        <translation>Target Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4275\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4297\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI NodeTarget Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI NodeTarget Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4308\"/>\n        <source>VLAN</source>\n        <translation>VLAN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4311\"/>\n        <source>VLAN Settings.</source>\n        <translation>VLAN Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4314\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4360\"/>\n        <source>VLAN identifier (0-4094).</source>\n        <translation>VLAN identifier (0-4094).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4341\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4347\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4363\"/>\n        <source>Vlan ID</source>\n        <translation>Vlan ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4344\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4366\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN identifier (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN identifier (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4383\"/>\n        <source>Fibre Channel Ex</source>\n        <translation>Fibre Channel Ex</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4386\"/>\n        <source>The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation>The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4389\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4474\"/>\n        <source>8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).</source>\n        <translation>8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4480\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4514\"/>\n        <source>8 byte array containing Fibre Channel Logical Unit Number.</source>\n        <translation>8 byte array containing Fibre Channel Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4499\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4520\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4537\"/>\n        <source>SAS Extended Messaging</source>\n        <translation>SAS Extended Messaging</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4540\"/>\n        <source>The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation>The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4543\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4567\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4588\"/>\n        <source>8-byte array of the SAS Address for Serial Attached SCSI Target Port.</source>\n        <translation>8-byte array of the SAS Address for Serial Attached SCSI Target Port.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4570\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4576\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4591\"/>\n        <source>SAS Address</source>\n        <translation>SAS Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4573\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4594\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Address for Serial Attached SCSI Target Port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Address for Serial Attached SCSI Target Port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4628\"/>\n        <source>8-byte array of the SAS Logical Unit Number.</source>\n        <translation>8-byte array of the SAS Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4613\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4634\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4647\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4668\"/>\n        <source>More Information about the device and its interconnect.</source>\n        <translation>More Information about the device and its interconnect.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4650\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4656\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4671\"/>\n        <source>Device and Topology Info</source>\n        <translation>Device and Topology Info</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4653\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4674\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;More Information about the device and its interconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;More Information about the device and its interconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4687\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4709\"/>\n        <source>Relative Target Port (RTP).</source>\n        <translation>Relative Target Port (RTP).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4690\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4696\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4712\"/>\n        <source>Relative Target Port</source>\n        <translation>Relative Target Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4715\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Relative Target Port (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Relative Target Port (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4732\"/>\n        <source>NVM Express NS</source>\n        <translation>NVM Express NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4735\"/>\n        <source>NVM Express Namespace Settings.</source>\n        <translation>NVM Express Namespace Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4738\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM Express Namespace Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM Express Namespace Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4783\"/>\n        <source>Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.</source>\n        <translation>Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4765\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4771\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4786\"/>\n        <source>NSID</source>\n        <translation>NSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4768\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4789\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4802\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4823\"/>\n        <source>This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.</source>\n        <translation>This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4805\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4811\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4826\"/>\n        <source>EUI-64</source>\n        <translation>EUI-64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4808\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4829\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4849\"/>\n        <source>Refer to RFC 3986 for details on the URI contents.</source>\n        <translation>Refer to RFC 3986 for details on the URI contents.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Refer to RFC 3986 for details on the URI contents.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Refer to RFC 3986 for details on the URI contents.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4876\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4898\"/>\n        <source>Instance of the URI pursuant to RFC 3986.</source>\n        <translation>Instance of the URI pursuant to RFC 3986.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4882\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Instance of the URI pursuant to RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Instance of the URI pursuant to RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4915\"/>\n        <source>UFS</source>\n        <translation>UFS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4918\"/>\n        <source>UFS Settings.</source>\n        <translation>UFS Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4966\"/>\n        <source>Target ID on the UFS interface (PUN).</source>\n        <translation>Target ID on the UFS interface (PUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4972\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the UFS interface (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the UFS interface (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5029\"/>\n        <source>SD</source>\n        <translation>SD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5032\"/>\n        <source>SD Settings.</source>\n        <translation>SD Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5035\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5081\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5299\"/>\n        <source>Slot Number</source>\n        <translation>Slot Number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5084\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5280\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5286\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5302\"/>\n        <source>Slot</source>\n        <translation>Slot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5087\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5283\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5305\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Slot Number&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Slot Number&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5104\"/>\n        <source>Bluetooth</source>\n        <translation>Bluetooth</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5107\"/>\n        <source>EFI Bluetooth Settings.</source>\n        <translation>EFI Bluetooth Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5110\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI Bluetooth Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI Bluetooth Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5155\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5373\"/>\n        <source>48-bit Bluetooth device address.</source>\n        <translation>48-bit Bluetooth device address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5143\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5158\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5361\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5376\"/>\n        <source>Device Address</source>\n        <translation>Device Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5161\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5379\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-bit Bluetooth device address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-bit Bluetooth device address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5178\"/>\n        <source>Wi-Fi</source>\n        <translation>Wi-Fi</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5181\"/>\n        <source>Wi-Fi Settings.</source>\n        <translation>Wi-Fi Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5184\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wi-Fi Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wi-Fi Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5208\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5230\"/>\n        <source>SSID in octet string.</source>\n        <translation>SSID in octet string.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5211\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5217\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5233\"/>\n        <source>SSID</source>\n        <translation>SSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5214\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5236\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID in octet string.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID in octet string.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5247\"/>\n        <source>eMMC</source>\n        <translation>eMMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5250\"/>\n        <source>Embedded Multi-Media Card Settings.</source>\n        <translation>Embedded Multi-Media Card Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5253\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Embedded Multi-Media Card Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Embedded Multi-Media Card Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5322\"/>\n        <source>BluetoothLE</source>\n        <translation>BluetoothLE</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5325\"/>\n        <source>EFI BluetoothLE Settings.</source>\n        <translation>EFI BluetoothLE Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5328\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI BluetoothLE Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI BluetoothLE Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5416\"/>\n        <source>0x00 - Public Device Address.\n0x01 - Random Device Address.</source>\n        <translation>0x00 - Public Device Address.\n0x01 - Random Device Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5396\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5403\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5420\"/>\n        <source>Address Type</source>\n        <translation>Address Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5399\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5423\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Public Device Address.\n0x01 - Random Device Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Public Device Address.\n0x01 - Random Device Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5428\"/>\n        <source>Public</source>\n        <translation>Public</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5433\"/>\n        <source>Random</source>\n        <translation>Random</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5445\"/>\n        <source>DNS</source>\n        <translation>DNS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5448\"/>\n        <source>DNS Settings.</source>\n        <translation>DNS Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5451\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DNS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DNS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5499\"/>\n        <source>0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.</source>\n        <translation>0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5482\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5506\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5514\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5575\"/>\n        <source>One or more instances of the DNS server address in EFI_IP_ADDRESS.</source>\n        <translation>One or more instances of the DNS server address in EFI_IP_ADDRESS.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5520\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5581\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;One or more instances of the DNS server address in EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;One or more instances of the DNS server address in EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5536\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7584\"/>\n        <source>Data format.</source>\n        <translation>Data format.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5592\"/>\n        <source>NVDIMM NS</source>\n        <translation>NVDIMM NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5595\"/>\n        <source>This device path describes a bootable NVDIMM namespace that is defined by a namespace label.</source>\n        <translation>This device path describes a bootable NVDIMM namespace that is defined by a namespace label.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVDIMM namespace that is defined by a namespace label.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVDIMM namespace that is defined by a namespace label.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5622\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5643\"/>\n        <source>Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.</source>\n        <translation>Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5646\"/>\n        <source>UUID</source>\n        <translation>UUID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5628\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5649\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5663\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5698\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5706\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5724\"/>\n        <source>REST Service</source>\n        <translation>REST Service</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5666\"/>\n        <source>REST Service Settings.</source>\n        <translation>REST Service Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5669\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;REST Service Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;REST Service Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5719\"/>\n        <source>0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.</source>\n        <translation>0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5701\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5727\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5733\"/>\n        <source>Redfish</source>\n        <translation>Redfish</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5738\"/>\n        <source>OData</source>\n        <translation>OData</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5743\"/>\n        <source>Vendor specific</source>\n        <translation>Vendor specific</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5775\"/>\n        <source>0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.</source>\n        <translation>0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5755\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5779\"/>\n        <source>Access Mode</source>\n        <translation>Access Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5782\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5787\"/>\n        <source>In-Band</source>\n        <translation>In-Band</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5792\"/>\n        <source>Out-of-band</source>\n        <translation>Out-of-band</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5821\"/>\n        <source>GUID of vendor specific REST service.</source>\n        <translation>GUID of vendor specific REST service.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID of vendor specific REST service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID of vendor specific REST service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5898\"/>\n        <source>Vendor-defined data.</source>\n        <translation>Vendor-defined data.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5915\"/>\n        <source>NVMe-oF NS</source>\n        <translation>NVMe-oF NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5918\"/>\n        <source>This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.</source>\n        <translation>This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5967\"/>\n        <source>Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.</source>\n        <translation>Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5970\"/>\n        <source>NIDT</source>\n        <translation>NIDT</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5973\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5986\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6007\"/>\n        <source>Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.</source>\n        <translation>Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5989\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5995\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6010\"/>\n        <source>NID</source>\n        <translation>NID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5992\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6013\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6023\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6045\"/>\n        <source>Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.</source>\n        <translation>Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6026\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6048\"/>\n        <source>Subsystem NQN</source>\n        <translation>Subsystem NQN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6029\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6051\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6066\"/>\n        <source>Hard Drive</source>\n        <translation>Hard Drive</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6069\"/>\n        <source>The Hard Drive Media Device Path is used to represent a partition on a hard drive.</source>\n        <translation>The Hard Drive Media Device Path is used to represent a partition on a hard drive.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6072\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Hard Drive Media Device Path is used to represent a partition on a hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Hard Drive Media Device Path is used to represent a partition on a hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6174\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6196\"/>\n        <source>Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].</source>\n        <translation>Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6180\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6236\"/>\n        <source>Starting LBA of the partition on the hard drive.</source>\n        <translation>Starting LBA of the partition on the hard drive.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6466\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6487\"/>\n        <source>Partition Start</source>\n        <translation>Partition Start</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting LBA of the partition on the hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting LBA of the partition on the hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6255\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6276\"/>\n        <source>Size of the partition in units of Logical Blocks.</source>\n        <translation>Size of the partition in units of Logical Blocks.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6258\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6264\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6279\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6527\"/>\n        <source>Partition Size</source>\n        <translation>Partition Size</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6261\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6282\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Logical Blocks.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Logical Blocks.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6295\"/>\n        <source>Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation>Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6301\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6310\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6367\"/>\n        <source>Partition Signature</source>\n        <translation>Partition Signature</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6304\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6322\"/>\n        <source>PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.</source>\n        <translation>PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6328\"/>\n        <source>Signature Type</source>\n        <translation>Signature Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6331\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6338\"/>\n        <source>None</source>\n        <translation>None</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6361\"/>\n        <source>Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation>Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6370\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6392\"/>\n        <source>CD-ROM</source>\n        <translation>CD-ROM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6395\"/>\n        <source>The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.</source>\n        <translation>The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6398\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6444\"/>\n        <source>Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.</source>\n        <translation>Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6425\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6431\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6447\"/>\n        <source>Boot Entry</source>\n        <translation>Boot Entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6450\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6463\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6484\"/>\n        <source>Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.</source>\n        <translation>Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6469\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6490\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6524\"/>\n        <source>Size of the partition in units of Blocks, also called Sectors.</source>\n        <translation>Size of the partition in units of Blocks, also called Sectors.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6530\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Blocks, also called Sectors.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Blocks, also called Sectors.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6547\"/>\n        <source>File Path</source>\n        <translation>File Path</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6550\"/>\n        <source>File Path settings.</source>\n        <translation>File Path settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6553\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File Path settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File Path settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6599\"/>\n        <source>Path including directory and file names.</source>\n        <translation>Path including directory and file names.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6586\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6602\"/>\n        <source>Path Name</source>\n        <translation>Path Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6583\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6605\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Path including directory and file names.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Path including directory and file names.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6619\"/>\n        <source>The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.</source>\n        <translation>The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6622\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6667\"/>\n        <source>The ID of the protocol.</source>\n        <translation>The ID of the protocol.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6673\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ID of the protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ID of the protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6687\"/>\n        <source>Firmware File</source>\n        <translation>Firmware File</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6690\"/>\n        <source>Describes a firmware file in a firmware volume.</source>\n        <translation>Describes a firmware file in a firmware volume.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6693\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware file in a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware file in a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6717\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6738\"/>\n        <source>Firmware file name GUID.</source>\n        <translation>Firmware file name GUID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6723\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6744\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware file name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware file name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6758\"/>\n        <source>Firmware Volume</source>\n        <translation>Firmware Volume</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6761\"/>\n        <source>Describes a firmware volume.</source>\n        <translation>Describes a firmware volume.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6764\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6809\"/>\n        <source>Firmware volume name GUID.</source>\n        <translation>Firmware volume name GUID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware volume name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware volume name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6829\"/>\n        <source>Relative Offset Range</source>\n        <translation>Relative Offset Range</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6832\"/>\n        <source>This device path node specifies a range of offsets relative to the first byte available on the device.</source>\n        <translation>This device path node specifies a range of offsets relative to the first byte available on the device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6835\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path node specifies a range of offsets relative to the first byte available on the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path node specifies a range of offsets relative to the first byte available on the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6880\"/>\n        <source>Reserved for future use.</source>\n        <translation>Reserved for future use.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6886\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved for future use.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved for future use.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6899\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6920\"/>\n        <source>Offset of the first byte, relative to the parent device node.</source>\n        <translation>Offset of the first byte, relative to the parent device node.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6902\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6908\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6923\"/>\n        <source>Starting Offset</source>\n        <translation>Starting Offset</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6905\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the first byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the first byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6939\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6960\"/>\n        <source>Offset of the last byte, relative to the parent device node.</source>\n        <translation>Offset of the last byte, relative to the parent device node.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6942\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6963\"/>\n        <source>Ending Offset</source>\n        <translation>Ending Offset</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6966\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the last byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the last byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6983\"/>\n        <source>RAM Disk</source>\n        <translation>RAM Disk</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6986\"/>\n        <source>RAM Disk Settings.</source>\n        <translation>RAM Disk Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6989\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7016\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7037\"/>\n        <source>Starting Address</source>\n        <translation>Starting Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7056\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7077\"/>\n        <source>Ending Address</source>\n        <translation>Ending Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7093\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7114\"/>\n        <source>GUID that defines the type of the RAM Disk.</source>\n        <translation>GUID that defines the type of the RAM Disk.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7120\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID that defines the type of the RAM Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID that defines the type of the RAM Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7130\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7152\"/>\n        <source>RAM Disk instance number, if supported.</source>\n        <translation>RAM Disk instance number, if supported.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7133\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7155\"/>\n        <source>Disk Instance</source>\n        <translation>Disk Instance</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7158\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk instance number, if supported.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk instance number, if supported.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7179\"/>\n        <source>This Device Path is used to describe the booting of non-EFI-aware operating systems.</source>\n        <translation>This Device Path is used to describe the booting of non-EFI-aware operating systems.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7182\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path is used to describe the booting of non-EFI-aware operating systems.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path is used to describe the booting of non-EFI-aware operating systems.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7206\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7249\"/>\n        <source>An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.</source>\n        <translation>An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7220\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7263\"/>\n        <source>Device Type</source>\n        <translation>Device Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7223\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7290\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7347\"/>\n        <source>Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero</source>\n        <translation>Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7311\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7368\"/>\n        <source>Status Flag</source>\n        <translation>Status Flag</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7371\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7402\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7424\"/>\n        <source>String that describes the boot device to a user.</source>\n        <translation>String that describes the boot device to a user.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7408\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7430\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;String that describes the boot device to a user.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;String that describes the boot device to a user.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7543\"/>\n        <source>Vendor-assigned GUID that defines the data that follows.</source>\n        <translation>Vendor-assigned GUID that defines the data that follows.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7549\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-assigned GUID that defines the data that follows.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-assigned GUID that defines the data that follows.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7562\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7622\"/>\n        <source>Vendor-defined variable size data.</source>\n        <translation>Vendor-defined variable size data.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7568\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7628\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined variable size data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined variable size data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7642\"/>\n        <source>Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.</source>\n        <translation>Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7645\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7721\"/>\n        <source>Unknown file path specifier settings</source>\n        <translation>Unknown file path specifier settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7724\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown file path specifier settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown file path specifier settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7748\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7772\"/>\n        <source>Unknown Type</source>\n        <translation>Unknown Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7754\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7775\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7812\"/>\n        <source>Unknown Sub-Type</source>\n        <translation>Unknown Sub-Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7828\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7831\"/>\n        <source>Unknown data</source>\n        <translation>Unknown data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/filepathdialog.cpp\" line=\"1569\"/>\n        <source>Couldn&apos;t change data format!</source>\n        <translation>Couldn&apos;t change data format!</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeyListModel</name>\n    <message>\n        <location filename=\"../src/hotkeylistmodel.cpp\" line=\"100\"/>\n        <source>boot option</source>\n        <translation>boot option</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Boot option</source>\n        <translation>Boot option</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Hot key</source>\n        <translation>Hot key</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Vendor data</source>\n        <translation>Vendor data</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeysDialog</name>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"20\"/>\n        <source>Hot Keys editor</source>\n        <translation>Hot Keys editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"41\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"44\"/>\n        <source>Hot Keys</source>\n        <translation>Hot Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"47\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"125\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"128\"/>\n        <source>Index filter</source>\n        <translation>Index filter</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"131\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Index filter&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Index filter&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"163\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"166\"/>\n        <source>Remove hot key</source>\n        <translation>Remove hot key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"191\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"194\"/>\n        <source>Add hot key</source>\n        <translation>Add hot key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"197\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <location filename=\"../include/commands.h\" line=\"21\"/>\n        <location filename=\"../include/commands.h\" line=\"66\"/>\n        <source>Change %1 to &quot;%2&quot;</source>\n        <translation>Change %1 to &quot;%2&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"35\"/>\n        <source>Insert %1 entry &quot;%2&quot; at position %3</source>\n        <translation>Insert %1 entry &quot;%2&quot; at position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"50\"/>\n        <source>Remove %1 entry &quot;%2&quot; from position %3</source>\n        <translation>Remove %1 entry &quot;%2&quot; from position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"73\"/>\n        <location filename=\"../src/commands.cpp\" line=\"116\"/>\n        <source>Move %1 entry &quot;%2&quot; from position %3 to %4</source>\n        <translation>Move %1 entry &quot;%2&quot; from position %3 to %4</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <location filename=\"../include/commands.h\" line=\"157\"/>\n        <location filename=\"../include/commands.h\" line=\"198\"/>\n        <source>Change %1 entry &quot;%2&quot; %3 to &quot;%4&quot;</source>\n        <translation>Change %1 entry &quot;%2&quot; %3 to &quot;%4&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <source>Optional data</source>\n        <translation>Optional data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"227\"/>\n        <source>Insert %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation>Insert %1 entry &quot;%2&quot; file path at position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"242\"/>\n        <source>Remove %1 entry &quot;%2&quot; file path from position %3</source>\n        <translation>Remove %1 entry &quot;%2&quot; file path from position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"257\"/>\n        <source>Set %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation>Set %1 entry &quot;%2&quot; file path at position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <source>Insert %1 entry at position %2</source>\n        <translation>Insert %1 entry at position %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>Key</source>\n        <translation>Key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <source>Remove %1 entry from position %2</source>\n        <translation>Remove %1 entry from position %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <location filename=\"../include/commands.h\" line=\"362\"/>\n        <location filename=\"../include/commands.h\" line=\"403\"/>\n        <source>Change %1 entry at position %2 %3 to &quot;%4&quot;</source>\n        <translation>Change %1 entry at position %2 %3 to &quot;%4&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>keys</source>\n        <translation>keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"293\"/>\n        <location filename=\"../src/commands.cpp\" line=\"333\"/>\n        <source>Move %1 entry &quot;%2&quot; file path from position %3 to %4</source>\n        <translation>Move %1 entry &quot;%2&quot; file path from position %3 to %4</translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/efibooteditor_es.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"es\" sourcelanguage=\"en_US\">\n<context>\n    <name>BootEntryForm</name>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"169\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"172\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"182\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"185\"/>\n        <source>Description</source>\n        <translation>Descripción</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"198\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"201\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"204\"/>\n        <source>Path</source>\n        <translation>Ruta</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"415\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"418\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"478\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"481\"/>\n        <source>Optional data</source>\n        <translation>Datos opcionales</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"421\"/>\n        <source>Optional</source>\n        <translation>Opcional</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"434\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"437\"/>\n        <source>Optional data format</source>\n        <translation>Formato de datos opcionales</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"6\"/>\n        <source>Boot entry form</source>\n        <translation>Formulario de entrada de arranque</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"24\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"27\"/>\n        <source>Error</source>\n        <translation>Error</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"40\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"43\"/>\n        <source>Error note</source>\n        <translation>Nota del error</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"46\"/>\n        <source>This entry placeholder is shown here to indicate it&apos;s referenced in boot order. It won&apos;t be modified on save, just left as is.</source>\n        <translation>Este marcador de posición se muestra aquí para indicar que está referenciado en el orden de arranque. No será modificado cuando se guarde, déjelo como está.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"147\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"150\"/>\n        <source>Hot Keys</source>\n        <translation>Teclas rápidas</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Teclas rápidas&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"188\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry description.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Descripción de la entrada.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"222\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"225\"/>\n        <source>Device path</source>\n        <translation>Ruta del dispositivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ruta del dispositivo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"280\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"283\"/>\n        <source>Move file path up</source>\n        <translation>Subir ruta del fichero</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"286\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Subir ruta del fichero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"305\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"308\"/>\n        <source>Move file path down</source>\n        <translation>Bajar ruta del fichero</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"311\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Bajar ruta del fichero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"330\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"333\"/>\n        <source>Remove file path</source>\n        <translation>Eliminar ruta del fichero</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"336\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Eliminar ruta del fichero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"355\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"358\"/>\n        <source>Edit file path</source>\n        <translation>Editar ruta del fichero</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"361\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Edit file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Editar ruta del fichero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"380\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"383\"/>\n        <source>Add file path</source>\n        <translation>Añadir ruta de fichero</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Añadir ruta de fichero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Formato de datos opcionales.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"444\"/>\n        <source>BASE64</source>\n        <translation>BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"449\"/>\n        <source>UTF-16</source>\n        <translation>UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"454\"/>\n        <source>UTF-8</source>\n        <translation>UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"459\"/>\n        <source>HEX</source>\n        <translation>HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"484\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry optional data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apunte de datos opcionales.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"497\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"500\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"503\"/>\n        <source>Attributes</source>\n        <translation>Atributos</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"623\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry category.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apunte de categoría.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"122\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apunte índice.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"540\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Is entry considered for automatic boot?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Se tiene en cuenta la entrada para el arranque automático?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"569\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hidden.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Oculto.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"585\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Force reconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Forzar reconexión.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"534\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"537\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"543\"/>\n        <source>Active</source>\n        <translation>Activo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"579\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"582\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"588\"/>\n        <source>Force reconnect</source>\n        <translation>Forzar reconexión</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"563\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"566\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"572\"/>\n        <source>Hidden</source>\n        <translation>Oculto</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"598\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"601\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"604\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"617\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"620\"/>\n        <source>Category</source>\n        <translation>Categoría</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"627\"/>\n        <source>Boot</source>\n        <translation>Arranque</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"632\"/>\n        <source>App</source>\n        <translation>Aplicación</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"68\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"71\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"74\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"116\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"119\"/>\n        <source>Index</source>\n        <translation>Índice</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentryform.cpp\" line=\"117\"/>\n        <source>Couldn&apos;t change optional data format!</source>\n        <translation>No se ha podido cambiar el formato de datos opcionales!</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryListModel</name>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"88\"/>\n        <source>Set Next boot to &quot;%1&quot;</source>\n        <translation>Establecer el siguiente arranque a &quot;%1&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"184\"/>\n        <source>index</source>\n        <translation>índice</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"200\"/>\n        <source>description</source>\n        <translation>descripción</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"237\"/>\n        <source>optional data</source>\n        <translation>datos opcionales</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"253\"/>\n        <source>attributes</source>\n        <translation>atributos</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"269\"/>\n        <source>next boot</source>\n        <translation>siguiente arranque</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryWidget</name>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"12\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"221\"/>\n        <source>Boot entry</source>\n        <translation>Entrada de arranque</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"36\"/>\n        <source>Next boot</source>\n        <translation>Siguiente arranque</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"39\"/>\n        <source>Run at next boot</source>\n        <translation>Ejecutar en el siguiente arranque</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"42\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;When chosen, entry will run at next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Si se elige, la entrada se ejecutará en el siguiente arranque.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"140\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"143\"/>\n        <source>Current boot</source>\n        <translation>Arranque actual</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This entry is currently booted.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Esta entrada es la que se arranca actualmente.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"181\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Índice de entrada de arranque.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"218\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry description, human readable name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Descripción de entrada de arranque, nombre legible por humanos.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"67\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"70\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"76\"/>\n        <source>Device path</source>\n        <translation>Ruta de dispositivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"73\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ruta de dispositivo de arranque.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"113\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data, arguments passed to boot executable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Datos opcionales, argumentos enviados al ejecutable de arranque.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"178\"/>\n        <source>Boot entry index</source>\n        <translation>Índice de entrada de arranque</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"184\"/>\n        <source>Index</source>\n        <translation>Índice</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"212\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"215\"/>\n        <source>Boot entry description</source>\n        <translation>Descripción de entrada de arranque</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"107\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"110\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"116\"/>\n        <source>Optional data</source>\n        <translation>Datos opcionales</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootData</name>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"111\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"813\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1027\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1361\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1472\"/>\n        <source>%1: not found</source>\n        <translation>%1: no encontrado</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"120\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"821\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1387\"/>\n        <source>%1: failed deserialization</source>\n        <translation>%1: fallo en deserialización</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Error loading entries</source>\n        <translation>Error cargando entradas</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Failed to load some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>Fallo al cargar algunas entradas del Gestor de Arranque EFI:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Error saving entries</source>\n        <translation>Error guardando entradas</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Entry %1(%2): duplicated index!</source>\n        <translation>Entrada %1(%2): índice duplicado!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"389\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"419\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"458\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"479\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"487\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"516\"/>\n        <source>Error saving %1</source>\n        <translation>Error guardando %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"407\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"470\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"504\"/>\n        <source>Error removing %1</source>\n        <translation>Error eliminando %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Error importing boot configuration</source>\n        <translation>Error importando configuración de arranque</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <source>Couldn&apos;t open selected file (%1).</source>\n        <translation>No se pudo abrir el fichero seleccionado (%1).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <source>Parser failed: %1</source>\n        <translation>Fallo en analizador: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <source>Invalid _Type: %1</source>\n        <translation>_Tipo Inválido: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <source>Error exporting boot configuration</source>\n        <translation>Error exportando configuración de arranque</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <source>Couldn&apos;t open selected file (%1): %2.</source>\n        <translation>No se pudo abrir el fichero seleccionado (%1): %2.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <source>Couldn&apos;t write into file (%1): %2.</source>\n        <translation>No se pudo escribir en el fichero (%1): %2.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Error dumping raw EFI data</source>\n        <translation>Error volcando datos EFI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Failed to dump some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>Falló el volcado de algunas entradas del Gestor de Arranque EFI:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"905\"/>\n        <source>Timeout</source>\n        <translation>Vencimiento</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"921\"/>\n        <source>Apple boot-args</source>\n        <translation>Parámetros de arranque de Apple</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"937\"/>\n        <source>Firmware actions</source>\n        <translation>Acciones de firmware</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"73\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation>Cargando entradas del Gestor de Arranque EFI…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"89\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"787\"/>\n        <source>Searching EFI Boot Manager entries…</source>\n        <translation>Buscando entradas del Gestor de Arranque EFI…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"116\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"292\"/>\n        <source>Processing EFI Boot Manager entries (%1)…</source>\n        <translation>Procesando entradas del Gestor de Arranque EFI (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"308\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation>Guardando entradas del Gestor de Arranque EFI…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"333\"/>\n        <source>Searching old EFI Boot Manager entries…</source>\n        <translation>Buscando entradas antiguas del Gestor de Arranque EFI…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"374\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"416\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"447\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"476\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"484\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"491\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"513\"/>\n        <source>Saving EFI Boot Manager entries (%1)…</source>\n        <translation>Guardando entradas del Gestor de Arranque EFI (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"467\"/>\n        <source>Removing old EFI Boot Manager entries (%1)…</source>\n        <translation>Eliminando entradas antiguas del Gestor de Arranque EFI (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"404\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"501\"/>\n        <source>Removing EFI Boot Manager entries (%1)…</source>\n        <translation>Eliminando entradas del Gestor de Arranque EFI (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"94\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"338\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"792\"/>\n        <source>Couldn&apos;t load EFI Boot Manager variables</source>\n        <translation>No se pudieron cargar variables del Gestor de Arranque EFI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"100\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"799\"/>\n        <source>Couldn&apos;t find any EFI Boot Manager variables</source>\n        <translation>No se pudieron encontrar variables del Gestor de Arranque EFI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"529\"/>\n        <source>Importing boot configuration…</source>\n        <translation>Importando configuración de arranque…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"565\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"770\"/>\n        <source>Exporting boot configuration…</source>\n        <translation>Exportando configuración de arranque…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"587\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"809\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"875\"/>\n        <source>Exporting EFI Boot Manager entries (%1)…</source>\n        <translation>Exportando entradas del Gestor de Arranque EFI (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1013\"/>\n        <source>Importing boot configuration from JSON…</source>\n        <translation>Importando configuración de arranque desde JSON…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1032\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1366\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1477\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1531\"/>\n        <source>Importing EFI Boot Manager entries (%1)…</source>\n        <translation>Importando entradas del Gestor de Arranque EFI (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1035\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1376\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>%1: %2 expected</source>\n        <translation>%1: %2 esperado</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1043\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1048\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1053\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <source>number</source>\n        <translation>número</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1058\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1063\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1068\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1073\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1078\"/>\n        <source>bool</source>\n        <translation>booleano</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1109\"/>\n        <source>%1: unknown boot manager capability</source>\n        <translation>%1: capacidad desconocida del gestor de arranque</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1122\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1166\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1212\"/>\n        <source>array</source>\n        <translation>colección</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1333\"/>\n        <source>string</source>\n        <translation>cadena</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1156\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1192\"/>\n        <source>%1: unknown os indication</source>\n        <translation>%1: indicación desconocida de SO</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1083\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1235\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1264\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1290\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1309\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1328\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>object</source>\n        <translation>objeto</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <source>hexadecimal number</source>\n        <translation>número hexadecimal</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1270\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1315\"/>\n        <source>%1: failed parsing</source>\n        <translation>%1: fallo en análisis</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Failed to import some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>Falló la importación de algunas entradas del Gestor de Arranque EFI:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1347\"/>\n        <source>Importing boot configuration from raw dump…</source>\n        <translation>Importando configuración de arranque desde volcado…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1379\"/>\n        <source>object(raw_data: string, efi_attributes: number)</source>\n        <extracomment>Expected JSON structure, thrown as error description. raw_data and efi_attributes are field names in JSON file</extracomment>\n        <translation>objeto(raw_data: cadena, efi_attributes: número)</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"15\"/>\n        <source>Boot</source>\n        <translation>Arranque</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"16\"/>\n        <source>Driver</source>\n        <translation>Unidad</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"17\"/>\n        <source>System Preparation</source>\n        <translation>Preparación de Sistema</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"18\"/>\n        <source>Platform Recovery</source>\n        <translation>Recuperación de Plataforma</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditor</name>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"18\"/>\n        <source>EFI Boot Editor</source>\n        <translation>Editor de Arranque EFI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"71\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"412\"/>\n        <source>Boot</source>\n        <translation>Arranque</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"74\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"98\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"101\"/>\n        <source>Boot entries</source>\n        <translation>Entradas de arranque</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"77\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"104\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Boot entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Lista de entradas de Arranque.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"133\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"415\"/>\n        <source>Driver</source>\n        <translation>Unidad</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"136\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"160\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"163\"/>\n        <source>Driver entries</source>\n        <translation>Entradas de controlador</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"139\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"166\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Driver entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Lista de entradas de Controlador.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"195\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"418\"/>\n        <source>System Preparation</source>\n        <translation>Preparación de Sistema</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"198\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"222\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"225\"/>\n        <source>SysPrep entries</source>\n        <translation>Entradas de Preparación de Sistema</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"201\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of SysPrep entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Lista de entradas de Preparación de Sistema.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"257\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"421\"/>\n        <source>Platform Recovery</source>\n        <translation>Recuperación de Plataforma</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"260\"/>\n        <source>PlatformRecovery entries</source>\n        <translation>Entradas de Recuperación de Plataforma</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"263\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of PlatformRecovery entries (READONLY).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Lista de entradas de Recuperación de Plataforma (SOLO LECTURA).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"284\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"287\"/>\n        <source>PlatformRecovery entries (READONLY)</source>\n        <translation>Entradas de Recuperación de Plataforma (SOLO LECTURA)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"346\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"349\"/>\n        <source>Add new entry</source>\n        <translation>Añadir apunte nuevo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"352\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to add new boot entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Haga clic en esto para añadir nueva entrada de arranque.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"377\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"380\"/>\n        <source>Duplicate entry</source>\n        <translation>Apunte duplicado</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"383\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Duplicate entry&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Duplicar apunte&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"408\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"411\"/>\n        <source>Remove entry</source>\n        <translation>Eliminar entrada</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"414\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to remove currently selected entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Haga clic en esto para eliminar la entrada seleccionada.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"439\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"442\"/>\n        <source>Move entry up</source>\n        <translation>Mover entrada hacia arriba</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"445\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Pulse esto para subir el apunte seleccionado.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"470\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"473\"/>\n        <source>Move entry down</source>\n        <translation>Mover entrada hacia abajo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"476\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Pulse en esto para bajar el apunte seleccionado.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"501\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"504\"/>\n        <source>Reorder entries</source>\n        <translation>Entradas reordenadas</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"507\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click here to adjust the order of all entries based on their position on the list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Haga clic aquí para ajustar el orden de todas las entradas basadas en su posición en la lista.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"599\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"608\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Global settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Configuración global.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"602\"/>\n        <source>Global</source>\n        <translation>Global</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"632\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"635\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"654\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"657\"/>\n        <source>Boot manager timeout</source>\n        <translation>Hora de la gestión de arranque</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"638\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"660\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot manager timeout.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;El tiempo de gestión de boot &lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"663\"/>\n        <source>s</source>\n        <translation>s</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"674\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"677\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"686\"/>\n        <source>Firmware details</source>\n        <translation>Detalles del firmware</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"680\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"689\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Detalles de Firmware.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"683\"/>\n        <source>Firmware</source>\n        <translation>Firmware</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"719\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"722\"/>\n        <source>Available firmware features</source>\n        <translation>Características de firmware disponibles</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"725\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware features.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Características disponibles de firmware.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"728\"/>\n        <source>Features</source>\n        <translation>Características</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"737\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"740\"/>\n        <source>Platform supports reporting of deferred capsule processing by creation of result variable</source>\n        <translation>Plataforma apoya la presentación de informes sobre el procesamiento de cápsulas diferidas mediante la creación de la variable resultado</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"743\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports reporting of deferred capsule processing by creation of result variable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform soporta la notificación del procesamiento de cápsulas diferidas mediante la creación de la variable resultado.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"746\"/>\n        <source>Capsule Reporting</source>\n        <translation>Capsule Reporting</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"756\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"759\"/>\n        <source>Firmware supports timestamp based revocation</source>\n        <translation>Firmware apoya la revocación basada en tiempostamp</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"762\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware supports timestamp based revocation.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware soporta la revocación basada en el timetamp.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"765\"/>\n        <source>Timestamp based revocation</source>\n        <translation>Revocación basada en Timestamp</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"775\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"778\"/>\n        <source>Platform supports processing of Firmware Management Protocol update capsule</source>\n        <translation>Plataforma es compatible con el procesamiento de cápsulas de actualización de protocolo de gestión de firmware</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"781\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of Firmware Management Protocol update capsule.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform admite el procesamiento de la cápsula de actualización del Protocolo de Gestión de Firmware.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"784\"/>\n        <source>FMP Capsule</source>\n        <translation>Cápsula FMP</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"794\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"797\"/>\n        <source>Platform supports processing of file capsules</source>\n        <translation>Plataforma soporta el procesamiento de cápsulas de archivos</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"800\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of file capsules.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Plataforma admite el procesamiento de cápsulas de archivos.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"803\"/>\n        <source>File Capsule</source>\n        <translation>Cápsula de archivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"828\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"831\"/>\n        <source>Available firmware actions</source>\n        <translation>Acciones de firmware disponibles</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware actions.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Acciones de firmware disponibles.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"837\"/>\n        <source>Actions</source>\n        <translation>Acciones</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"846\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"849\"/>\n        <source>Stop at a firmware user interface on the next boot</source>\n        <translation>Parar en una interfaz de usuario de firmware en la siguiente arranque</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Stop at a firmware user interface on the next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Detener en una interfaz de usuario de firmware en la siguiente arranque.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"855\"/>\n        <source>Boot to firmware UI</source>\n        <translation>Arranque para firmware UI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"862\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"865\"/>\n        <source>Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot</source>\n        <translation>Disparador recopilando la configuración actual y reportando los datos actualizados a la tabla de configuración del sistema EFI en la siguiente arranque</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Disparador recopilando la configuración actual y reportando los datos actualizados a la tabla de configuración del sistema de EFI en el siguiente arranque.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"871\"/>\n        <source>Collect current config</source>\n        <translation>Recoge el config actual</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"878\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"881\"/>\n        <source>Indicate that Platform-defined recovery should commence upon reboot</source>\n        <translation>Indicar que la recuperación definida por la Plataforma debe comenzar al rearranque</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"884\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that Platform-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indica que la recuperación de Plataforma-definida comenzaría al rearrancar.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"887\"/>\n        <source>Start Platform recovery</source>\n        <translation>Recuperación de plataforma inicial</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"894\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"897\"/>\n        <source>Indicate that OS-defined recovery should commence upon reboot</source>\n        <translation>Indicar que la recuperación definida por el sistema operativo debe comenzar al reinicio</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"900\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that OS-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicar que la recuperación definida por el sistema operativo debe comenzar al reiniciar. &lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"903\"/>\n        <source>Start OS recovery</source>\n        <translation>Inicio Recuperación del SO</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"932\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"935\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"944\"/>\n        <source>Secure boot settings</source>\n        <translation>Ajustes de arranque seguros</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"938\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"947\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Secure boot settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ajustes de arranque seguro.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"941\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1025\"/>\n        <source>Secure Boot</source>\n        <translation>Secure Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"978\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"981\"/>\n        <source>Defines whether the system is currently operating in Audit Mode</source>\n        <translation>Define si el sistema funciona actualmente está operando en Modo Auditoría</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"984\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Audit Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Define si el sistema está funcionando actualmente en Modo Auditoría.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"987\"/>\n        <source>Audit Mode</source>\n        <translation>Modo Auditoría</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"997\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1000\"/>\n        <source>Defines whether the system is currently operating in Deployed Mode</source>\n        <translation>Define si el sistema está operando actualmente en Modo Desplegado</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1003\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Deployed Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Define si el sistema está operando actualmente en Modo Desplegado.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1006\"/>\n        <source>Deployed Mode</source>\n        <translation>Modo Desplegado</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1016\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1019\"/>\n        <source>Defines whether the platform firmware is operating with Secure Boot enabled</source>\n        <translation>Define si el firmware de la plataforma está operando con Secure Boot habilitado</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1022\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the platform firmware is operating with Secure Boot enabled.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Define si el firmware de la plataforma está operando con Secure Boot habilitado.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1035\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1038\"/>\n        <source>Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables</source>\n        <translation>Define si el sistema debe requerir autenticación o no en solicitudes de Variables de Normativa de Arranque Segura</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1041\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Define si el sistema tendría que requerir autentificación o no en peticiones para Variables de Normativa de Secure Boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1044\"/>\n        <source>Setup Mode</source>\n        <translation>Modo Configuración</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1054\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1057\"/>\n        <source>Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys</source>\n        <translation>Define si las variables de la política de botadura de seguridad han sido modificadas por cualquiera que no sea el proveedor de la plataforma o un titular de las claves proporcionadas por el proveedor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Define si las Variables de Normativa de Boot Security han sido modificadas por cualquiera otro que el vendedor de programa o un titular de claves del proveedor-proporcionado.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1063\"/>\n        <source>Vendor Keys</source>\n        <translation>Claves de Proveedor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1074\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1077\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1086\"/>\n        <source>Apple settings</source>\n        <translation>Ajustes de Apple</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1080\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apple settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ajustes de Apple.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1083\"/>\n        <source>Apple</source>\n        <translation>Apple</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1113\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1116\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1129\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1132\"/>\n        <source>macOS boot arguments</source>\n        <translation>Argumento de arranque de macOS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1119\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;macOS boot arguments.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Argumentos de arranque de macOS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1161\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1164\"/>\n        <source>Undo stack</source>\n        <translation>Deshacer pila</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1167\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo stack&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Deshace pila&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1194\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Menú de archivo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1214\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Help menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Menú de ayuda.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1255\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Exit the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sale del programa.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1272\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apply changes to the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Aplicar cambios al sistema.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1289\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reloads EFI data from the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Recargar datos EFI desde el sistema.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1306\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Show information about the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Mostrar información sobre el programa.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1320\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Export current entries into JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Exportar apuntes actuales en JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1337\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Import EFI data from JSON dump.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Importa volcado de datos EFI de JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1354\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dumps raw EFI data for debugging purposes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Volcado de datos EFI en crudo para propósito de depuración.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1362\"/>\n        <source>&amp;Undo</source>\n        <translation>&amp;Deshacer</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1365\"/>\n        <source>Undo</source>\n        <translation>Deshacer</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1368\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Deshacer&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1371\"/>\n        <source>Ctrl+Z</source>\n        <translation>Ctrl+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1379\"/>\n        <source>&amp;Redo</source>\n        <translation>&amp;Rehacer</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1382\"/>\n        <source>Redo</source>\n        <translation>Rehacer</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1385\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Redo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Rehacer&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1388\"/>\n        <source>Ctrl+Shift+Z</source>\n        <translation>Ctrl+Mayús+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1396\"/>\n        <source>Hot &amp;keys</source>\n        <translation>&amp;Teclas rápidas</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1399\"/>\n        <source>Hot Keys</source>\n        <translation>Teclas Rápidas</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1402\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Teclas Rápidas&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"593\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"596\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"605\"/>\n        <source>Global settings</source>\n        <translation>Ajustes globales</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"641\"/>\n        <source>Timeout</source>\n        <translation>Vencimiento</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1122\"/>\n        <source>Boot args</source>\n        <translation>Arg arranque</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1188\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1191\"/>\n        <source>File</source>\n        <translation>Archivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1197\"/>\n        <source>&amp;File</source>\n        <translation>&amp;Archivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1208\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1211\"/>\n        <source>Help</source>\n        <translation>Ayuda</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1217\"/>\n        <source>&amp;Help</source>\n        <translation>Ay&amp;uda</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1225\"/>\n        <source>&amp;Edit</source>\n        <translation>&amp;Editar</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1249\"/>\n        <source>&amp;Quit</source>\n        <translation>&amp;Salir</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1252\"/>\n        <source>Quit</source>\n        <translation>Salir</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1258\"/>\n        <source>Ctrl+Q</source>\n        <translation>Ctrl+Q</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1266\"/>\n        <source>&amp;Save</source>\n        <translation>&amp;Guardar</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1269\"/>\n        <source>Save</source>\n        <translation>Guardar</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1275\"/>\n        <source>Ctrl+S</source>\n        <translation>Ctrl+S</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1283\"/>\n        <source>&amp;Reload</source>\n        <translation>&amp;Recargar</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1286\"/>\n        <source>Reload</source>\n        <translation>Recargar</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1292\"/>\n        <source>Ctrl+R</source>\n        <translation>Ctrl+R</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1300\"/>\n        <source>About &amp;EFI Boot Editor</source>\n        <translation>Acerca de &amp;EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1303\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"29\"/>\n        <source>About EFI Boot Editor</source>\n        <translation>Acerca de EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1314\"/>\n        <source>&amp;Export</source>\n        <translation>&amp;Exportar</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1317\"/>\n        <source>Export</source>\n        <translation>Exportar</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1323\"/>\n        <source>Ctrl+E</source>\n        <translation>Ctrl+E</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1331\"/>\n        <source>&amp;Import</source>\n        <translation>&amp;Importar</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1334\"/>\n        <source>Import</source>\n        <translation>Importar</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1340\"/>\n        <source>Ctrl+I</source>\n        <translation>Ctrl+I</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1348\"/>\n        <source>&amp;Dump raw EFI data</source>\n        <translation>&amp;Volcado de datos EFI en crudo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1351\"/>\n        <source>Dump raw EFI data</source>\n        <translation>Volcado de datos de EFI sin formato</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"26\"/>\n        <source>Working…</source>\n        <translation>Trabajando…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"92\"/>\n        <source>Undo %1</source>\n        <translation>Deshacer %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"95\"/>\n        <source>Redo %1</source>\n        <translation>Rehacer %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"137\"/>\n        <source>Are you sure you want to reload the entries?&lt;br/&gt;ALL of your changes will be lost!</source>\n        <translation>¿Seguro que quieres volver a cargar los apuntes?&lt;br/&gt;¡TODOS sus cambios se perderán!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"162\"/>\n        <source>Are you sure you want to reorder the boot entries?&lt;br/&gt;All indexes will be overwritten!</source>\n        <translation>¿Seguro que quieres reordenar los apuntes de arranque?&lt;br/&gt;¡Todos los índices serán sobrescritos!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"221\"/>\n        <source>Are you sure you want to save?&lt;br/&gt;Your EFI configuration will be overwritten!</source>\n        <translation>¿Seguro que quieres guardar?&lt;br/&gt;¡Su configuración de EFI será sobrescrita!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <source>Open boot configuration dump</source>\n        <translation>Abre el volcado de configuración de arranque</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>JSON documents (*.json)</source>\n        <translation>Documentos JSON (*.json)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <source>Save boot configuration dump</source>\n        <translation>Guardar volcado de configuración de arranque</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>Save raw EFI dump</source>\n        <translation>Guardar volcado EFI sin formato</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"31\"/>\n        <source>&lt;h1&gt;EFI Boot Editor&lt;/h1&gt;&lt;p&gt;Version &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Boot Editor for (U)EFI based systems.&lt;/p&gt;</source>\n        <extracomment>About dialog</extracomment>\n        <translation>&lt;h1&gt;Editor de arranque EFI&lt;/h1&gt;&lt;p&gt;Versión &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Boot Editor para (U)EFI basado en los sistemas.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"45\"/>\n        <source>&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;Website&lt;/a&gt;&lt;/p&gt;&lt;p&gt;The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.&lt;/p&gt;&lt;p&gt;License: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL Version 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;On Linux uses &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; for EFI variables access.&lt;/p&gt;&lt;p&gt;Uses Tango Icons as fallback icons.&lt;/p&gt;</source>\n        <extracomment>About dialog details</extracomment>\n        <translation>&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;Sitio web&lt;/a&gt;&lt;/p&gt;&lt;p&gt;El programa se proporciona COMO TAL SIN NINGUNA GARANTÍA DE NINGÚN TIPO, INCLUSO CON LA GARANTÍA DE DISEÑO, MERCANTIBILIDAD Y PROPÓSITO.&lt;/p&gt; &lt;p&gt;Licencia: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL Versión 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;En Linux emplea &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; para variables de acceso EFI.&lt;/p&gt;&lt;p&gt;Emplea Iconos Tango como iconos en caso de no haber ninguno otro.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"330\"/>\n        <source>Reorder %1 entries</source>\n        <translation>Reordenar %1 apuntes</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"453\"/>\n        <source>Are you sure you want to quit?</source>\n        <translation>¿Seguro que quieres salir?</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"123\"/>\n        <source>EFI support required</source>\n        <translation>Apoyo EFI requerido</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditorCLI</name>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"13\"/>\n        <source>Boot Editor for (U)EFI based systems.</source>\n        <translation>Editor de arranque para sistemas basados en (U)EFI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <source>Export configuration.</source>\n        <translation>Configuración de exportación.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>FILE</source>\n        <translation>ARCHIVO</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <source>Dump raw EFI data.</source>\n        <translation>Volcado de datos EFI en crudo.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>Import configuration from JSON (either from export or raw dump).</source>\n        <translation>Configuración de importación de JSON (ya sea de exportación o de volcado en crudo).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"19\"/>\n        <source>Force import, don&apos;t ask for confirmation.</source>\n        <translation>Importación forzada, no solicite confirmación.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"26\"/>\n        <source>EFI support required</source>\n        <translation>Mantenimiento EFI requerido</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"45\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation>Cargando apuntes de Gestor de Arranque EFI…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"47\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"57\"/>\n        <source>Exporting boot configuration…</source>\n        <translation>Exportando configuración de arranque…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"67\"/>\n        <source>Importing boot configuration…</source>\n        <translation>Importando configuración de arranque…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Loaded %0 %1 entries</source>\n        <translation>Cargado %0 %1 apuntes</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <source>Boot</source>\n        <translation>Arranque</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <source>Driver</source>\n        <translation>Unidad</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <source>System Preparation</source>\n        <translation>Preparación de Sistema</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Hot Key</source>\n        <translation>Tecla de acceso rápido</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"78\"/>\n        <source>Are you sure you want to save?\nYour EFI configuration will be overwritten!</source>\n        <translation>¿Seguro que quieres salvar?\nSu configuración de EFI será sobrescrito!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"86\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation>Guardando entradas del Gestor de Arranque EFI…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"98\"/>\n        <source>ERROR: %0! %1</source>\n        <translation>ERROR: %0! %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"114\"/>\n        <source>Finished</source>\n        <translation>Finalizado</translation>\n    </message>\n</context>\n<context>\n    <name>EFIKeySequenceEdit</name>\n    <message>\n        <location filename=\"../src/efikeysequenceedit.cpp\" line=\"109\"/>\n        <source>Press hot key</source>\n        <translation>Presione tecla empleada</translation>\n    </message>\n</context>\n<context>\n    <name>FilePathDialog</name>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"12\"/>\n        <source>File path editor</source>\n        <translation>Editor de ruta de archivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"47\"/>\n        <source>PCI</source>\n        <translation>PCI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"80\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"86\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"196\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"202\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"218\"/>\n        <source>Function</source>\n        <translation>Función</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"121\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"127\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"143\"/>\n        <source>Device</source>\n        <translation>Dispositivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"721\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"727\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"742\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"835\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"841\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"856\"/>\n        <source>HID</source>\n        <translation>HID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"761\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"767\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"782\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"896\"/>\n        <source>UID</source>\n        <translation>UID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1813\"/>\n        <source>USB</source>\n        <translation>USB</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1819\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Configuración de USB.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1893\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1909\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3688\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3710\"/>\n        <source>Interface</source>\n        <translation>Interfaz</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7442\"/>\n        <source>Vendor</source>\n        <translation>Proveedor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7445\"/>\n        <source>Vendor settings</source>\n        <translation>Ajustes de los proveedores</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7448\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Configuración de proveedores.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1778\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1793\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5824\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6348\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7117\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7546\"/>\n        <source>GUID</source>\n        <translation>GUID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5539\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7587\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7850\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7853\"/>\n        <source>Data format</source>\n        <translation>Formato de datos</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5542\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7590\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7856\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Formato de datos.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5546\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5869\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7860\"/>\n        <source>BASE64</source>\n        <translation>BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1168\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5551\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5874\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7865\"/>\n        <source>UTF-16</source>\n        <translation>UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1173\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5556\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7604\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7870\"/>\n        <source>UTF-8</source>\n        <translation>UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5561\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7875\"/>\n        <source>HEX</source>\n        <translation>HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5523\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5901\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7888\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7891\"/>\n        <source>Data</source>\n        <translation>Datos</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7894\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Datos.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7565\"/>\n        <source>Vendor data</source>\n        <translation>Datos sobre proveedores</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7481\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7757\"/>\n        <source>Type</source>\n        <translation>Tipo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7478\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7500\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Tipo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7504\"/>\n        <source>HW</source>\n        <translation>HW</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7509\"/>\n        <source>MSG</source>\n        <translation>MSG</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7514\"/>\n        <source>MEDIA</source>\n        <translation>MEDIA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2292\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2298\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2313\"/>\n        <source>MAC</source>\n        <translation>MAC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2265\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;MAC settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ajustes de MAC.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2374\"/>\n        <source>IPv4</source>\n        <translation>IPv4</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2380\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv4 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ajustes IPv4.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2569\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2591\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2925\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2931\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2947\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4110\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4116\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4132\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6616\"/>\n        <source>Protocol</source>\n        <translation>Protocolo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3003\"/>\n        <source>Static</source>\n        <translation>Estática</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2692\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Subnet mask.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Máscara de subnet.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2730\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5479\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5486\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5503\"/>\n        <source>IPv6</source>\n        <translation>IPv6</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2736\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv6 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ajustes IPv6.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3008\"/>\n        <source>Stateless auto-configuration</source>\n        <translation>Autoconfiguración apátrida</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3013\"/>\n        <source>Stateful auto-configuration</source>\n        <translation>Autoconfiguración estatal</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3920\"/>\n        <source>SATA</source>\n        <translation>SATA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SATA settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ajustes de SATA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1387\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1393\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1409\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1658\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1664\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1679\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3900\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4035\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4041\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4057\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4191\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4197\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4212\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4496\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4502\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4610\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4616\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4988\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5009\"/>\n        <source>LUN</source>\n        <translation>LUN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4885\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4901\"/>\n        <source>URI</source>\n        <translation>URI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6105\"/>\n        <source>Disk</source>\n        <translation>Disco</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6102\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Disco.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6123\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6126\"/>\n        <source>Choose disk</source>\n        <translation>Elija el disco</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6129\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Choose disk from discovered in the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Elige el disco descubierta en el sistema.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6133\"/>\n        <source>Custom</source>\n        <translation>Personalizado</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6147\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6150\"/>\n        <source>Reload drives</source>\n        <translation>Recargar unidades</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reload system drives list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Recargar listado de unidades.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6343\"/>\n        <source>MBR</source>\n        <translation>MBR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6177\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6183\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6199\"/>\n        <source>Partition</source>\n        <translation>Partición</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6720\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6741\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6797\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6812\"/>\n        <source>Name</source>\n        <translation>Nombre</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7176\"/>\n        <source>BIOS Boot Specification</source>\n        <translation>Especificación de BIOS Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7405\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7411\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7427\"/>\n        <source>Description</source>\n        <translation>Descripción</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7639\"/>\n        <source>End</source>\n        <translation>Final</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7669\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7672\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7678\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7797\"/>\n        <source>Sub-Type</source>\n        <translation>Sub-Tipo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7675\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7697\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sub-Tipo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7701\"/>\n        <source>End This Instance</source>\n        <translation>Final Esta inestabilidad</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7706\"/>\n        <source>End Entire</source>\n        <translation>Final Completo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7718\"/>\n        <source>Unknown</source>\n        <translation>Desconocido</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"50\"/>\n        <source>The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.</source>\n        <translation>El Device Path for PCI define la ruta a la dirección del espacio de configuración PCI para un dispositivo PCI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"53\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;El Device Path for PCI define el camino hacia la dirección del espacio de configuración PCI para un dispositivo PCI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"77\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"99\"/>\n        <source>PCI Function Number.</source>\n        <translation>Número de función PCI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"83\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"105\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Function Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Número de Función PCI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"118\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"140\"/>\n        <source>PCI Device Number.</source>\n        <translation>Número de dispositivo PCI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"124\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Device Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Número de dispositivo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"163\"/>\n        <source>PCCARD</source>\n        <translation>PCCARD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"166\"/>\n        <source>PCCARD Settings.</source>\n        <translation>Ajustes de PCCARD.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCCARD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ajuste de PCCARD.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"193\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"215\"/>\n        <source>Function Number (0 = First Function).</source>\n        <translation>Número de función (0 = función primera).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"199\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"221\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Function Number (0 = First Function).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Número de movimiento (0 = Primera función).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"238\"/>\n        <source>Memory Mapped</source>\n        <translation>Memoria Asignada</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"241\"/>\n        <source>Memory Mapped Settings.</source>\n        <translation>Ajuste de Memoria Asignada.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Memory Mapped Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ajuste de Memoria Asignada.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"268\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"290\"/>\n        <source>The type of memory to allocate.</source>\n        <translation>El tipo de memoria a asignar.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"271\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"293\"/>\n        <source>Memory Type</source>\n        <translation>Tipo de memoria</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"274\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"296\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The type of memory to allocate.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;El tipo de memoria a asignar.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"300\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1584\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1738\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1753\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3145\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3160\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4416\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4437\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6868\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6883\"/>\n        <source>Reserved</source>\n        <translation>Reservado</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"305\"/>\n        <source>Loader Code</source>\n        <translation>Código del Cargador</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"310\"/>\n        <source>Loader Data</source>\n        <translation>Datos del Cargador</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"315\"/>\n        <source>Boot Services Code</source>\n        <translation>Código de Servicios de Arranque</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"320\"/>\n        <source>Boot Services Data</source>\n        <translation>Datos de Servicios de Arranque</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"325\"/>\n        <source>Runtime Services Code</source>\n        <translation>Código de servicios de tiempo de ejecución</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"330\"/>\n        <source>Runtime Services Data</source>\n        <translation>Datos de servicios de tiempo de ejecución</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"335\"/>\n        <source>Conventional</source>\n        <translation>Convencionales</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"340\"/>\n        <source>Unusable</source>\n        <translation>No se puede usar</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"345\"/>\n        <source>ACPI Reclaim</source>\n        <translation>ACPI Reclama</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"350\"/>\n        <source>ACPI Memory NVS</source>\n        <translation>Memoria ACPI NVS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"355\"/>\n        <source>Memory Mapped IO</source>\n        <translation>E/S de Memoria Asignada</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"360\"/>\n        <source>Memory Mapped IO Port Space</source>\n        <translation>E/S de Memoria Asignada en Espacio de Puerto</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"365\"/>\n        <source>Pal Code</source>\n        <translation>Código Pal</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"370\"/>\n        <source>Persistent</source>\n        <translation>Permanente</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"375\"/>\n        <source>Unaccepted</source>\n        <translation>No aceptada</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"383\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7013\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7034\"/>\n        <source>Starting Memory Address.</source>\n        <translation>Dirección de memoria inicial.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"386\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"407\"/>\n        <source>Start Address</source>\n        <translation>Dirección de inicio</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"389\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7019\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7040\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dirección de Inicio de Memoria.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"423\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7053\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7074\"/>\n        <source>Ending Memory Address.</source>\n        <translation>Final de Dirección de Memoria.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"426\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"432\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"447\"/>\n        <source>End Address</source>\n        <translation>Dirección final</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"429\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7080\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ending Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Finalizando Dirección de Memoria.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"467\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"522\"/>\n        <source>Controller</source>\n        <translation>Controlador</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"470\"/>\n        <source>Controller settings.</source>\n        <translation>Opciones de controlador.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"473\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Opciones del controlador.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"519\"/>\n        <source>Controller number.</source>\n        <translation>Número de controlador.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"525\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Número de controlador.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"542\"/>\n        <source>BMC</source>\n        <translation>BMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"545\"/>\n        <source>The Device Path for a Baseboard Management Controller (BMC) host interface.</source>\n        <translation>La Ruta del Dispositivo para un host de Controlador de Gestión de Placa Base (BMC) host de interfaz.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"548\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for a Baseboard Management Controller (BMC) host interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;La Ruta de Dispositivo para un host de Controlador de Gestión de Placa base (BMC) de interfaz.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"602\"/>\n        <source>The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.</source>\n        <translation>El tipo de interfaz host de controlador de Gestión de Placa base (BMC):\n0x00 - Desconocido.\n0x01 - KCS: Estilo de Controlador de Teclado.\n0x02 - SMIC: Chip de Interfaz de Gestión del Servidor.\n0x03 - BT: Transferencia de bloque.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"579\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"589\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2332\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2354\"/>\n        <source>Interface Type</source>\n        <translation>Tipo de interfaz</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"582\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"612\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;El Controlador de Gestión de Placa base (BMC) tipo de interfaz de host:\n0x00 - Desconocido.\n0x01 - KCS: Estilo de Controlador de Teclado.\n0x02 - SMIC: Interfaz Chip de administración de servidores.\n0x03 - BT: Transferencia de bloques.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"625\"/>\n        <source>Keyboard Controller Style</source>\n        <translation>Estilo del controlador de teclado</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"630\"/>\n        <source>Server Management Interface Chip</source>\n        <translation>Chip de Interfaz de Gestión de Servidor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"635\"/>\n        <source>Block Transfer</source>\n        <translation>Transferencia de Bloque</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"643\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"664\"/>\n        <source>Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.</source>\n        <translation>Dirección de base (ya sea de memoria o I/O) del BMC. Si el bit menos significativo del campo es un 1, la dirección está en el espacio I/O; de lo contrario, la dirección es de memoria. Consulte la Especificación de Interfaz IPMI para detalles de uso.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"667\"/>\n        <source>Base Address</source>\n        <translation>Dirección Base</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"670\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dirección de base (ya sea de memoria o E/S) del BMC. Si el bit menos significativo del campo es un 1, la dirección está en el espacio E/S; de otro caso, la dirección es de memoria asignada. Refiérase a la Especificación de Interfaz IPMI para detalles de uso.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"688\"/>\n        <source>ACPI</source>\n        <translation>ACPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"805\"/>\n        <source>This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.</source>\n        <translation>Esta Ruta de Dispositivo contiene los ID de Dispositivo ACPI que representan el ID de Hardware Plug and Play de un dispositivo y su correspondiente único ID persistente.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"808\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Esta Ruta de Dispositivo contiene los ID de Dispositivo ACPI que representan el ID de Hardware Plug and Play de un dispositivo y su ID persistente único correspondiente.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"718\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"739\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"832\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"853\"/>\n        <source>Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.</source>\n        <translation>ID de hardware PnP almacenado dentro de un ID de tipo EISA comprimido en un número de 32-bit. Este valor debe coincidir con el HID correspondiente en el espacio del nombre ACPI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"724\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"745\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"838\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"859\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ID del hardware PnP almacenado en un ID numérico de 32-bit comprimido de tipo EISA. Este valor debe coincidir con el HID correspondiente en el espacio de nombre ACPI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"779\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"872\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"893\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.</source>\n        <translation>ID único que es requerido por ACPI si dos dispositivos tienen el mismo HID. Este valor debe además coincidir con la pareja UID/HID correspondiente dentro del espacio de nombre ACPI. Solo se admite el tipo del valor numérico de 32-bit de UID; por tanto las cadenas deben no ser utilizadas para el UID dentro del espacio de nombre ACPI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"764\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"785\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"899\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ID único que es requerido por ACPI si dos dispositivos tienen el mismo HID. Este valor debe ser además coincidente con la pareja UID/HID correspondiente en el espacio de nombre ACPI. Solo está admitido el tipo de valor numérico de 32-bit de UID; por tanto las cadenas no deben ser utilizadas para el UID en el espacio de nombre ACPI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"802\"/>\n        <source>Expanded</source>\n        <translation>Expandida</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"912\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"933\"/>\n        <source>Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.</source>\n        <translation>ID de dispositivo hardware PnP compatible almacenado en un ID de tipo EISA numérico de 32-bit comprimido. Este valor debe coincidir en al menos uno de los ID de dispositivo compatible devuelto por el CID correspondiente en el espacio de nombre ACPI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"915\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"921\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"936\"/>\n        <source>CID</source>\n        <translation>CID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"918\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"939\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dispositivos de hardware PnP compatible almacenado en un ID de tipo EISA numérico de 32-bit. Este valor debe coincidir en al menos uno de los ID de dispositivo compatible devueltos por el CID correspondiente en el espacio de nombre ACPI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"952\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"974\"/>\n        <source>Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.</source>\n        <translation>El ID de hardware PnP del dispositivo se almacena como una cadena. Este valor debe coincidir con el HID correspondiente en el espacio de nombres ACPI. Si la longitud de esta cadena es cero, se utiliza el campo HID. Si la longitud de esta cadena es mayor que cero, este campo reemplaza al campo HID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"955\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"961\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"977\"/>\n        <source>HIDSTR</source>\n        <translation>HIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"958\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"980\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;El ID de hardware PnP del dispositivo se almacena como una cadena. Este valor debe coincidir con el HID correspondiente en el espacio de nombres ACPI. Si la longitud de esta cadena es cero, se utiliza el campo HID. Si la longitud de esta cadena es mayor que cero, este campo reemplaza al campo HID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"987\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1009\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.</source>\n        <translation>Identificador único requerido por ACPI si dos dispositivos tienen el mismo HID. Este valor también debe coincidir con el par UID/HID correspondiente en el espacio de nombres ACPI. Se almacena como una cadena de texto. Si la longitud de esta cadena es cero, se utiliza el campo UID. Si la longitud de esta cadena es mayor que cero, este campo reemplaza al campo UID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"990\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"996\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1012\"/>\n        <source>UIDSTR</source>\n        <translation>UIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"993\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1015\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Identificador único requerido por ACPI si dos dispositivos tienen el mismo HID. Este valor también debe coincidir con el par UID/HID correspondiente en el espacio de nombres ACPI. Este valor se almacena como una cadena de texto. Si la longitud de esta cadena es cero, se utiliza el campo UID. Si la longitud de esta cadena es mayor que cero, este campo reemplaza al campo UID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1044\"/>\n        <source>Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.</source>\n        <translation>Dispositivos compatibles PnP con ID de hardware almacenado como una cadena. Este valor debe coincidir al menos uno de los IDs de dispositivo compatibles devueltos por el CID correspondiente en el espacio de nombres de ACPI. Si la longitud de esta cadena es 0, entonces se utiliza el campo CID. Si la longitud de esta cadena es mayor que 0, entonces este campo supera el campo CID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1025\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1031\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1047\"/>\n        <source>CIDSTR</source>\n        <translation>CIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1028\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1050\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dispositivos compatibles ID de hardware PnP almacenado como cadena. Este valor debe coincidir al menos uno de los IDs de dispositivo compatibles devueltos por el CID correspondiente en el espacio de nombres de ACPI. Si la longitud de esta cadena es 0, entonces se utiliza el campo CID. Si la longitud de esta cadena es mayor que 0, entonces este campo supera el campo CID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1061\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1094\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1100\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1115\"/>\n        <source>ADR</source>\n        <translation>ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1064\"/>\n        <source>The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.</source>\n        <translation>La ruta del dispositivo ADR se utiliza para contener los atributos del dispositivo de salida de vídeo para admitir el protocolo de salida de gráficos.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1067\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;La ruta del dispositivo ADR se utiliza para contener los atributos del dispositivo de salida de vídeo para admitir el protocolo de salida de gráficos.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1091\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1112\"/>\n        <source>ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required</source>\n        <translation>Valor ADR. Para los dispositivos de salida de vídeo el valor de este campo viene de la especificación Tabla B-2 ACPI 3.0. Se requiere al menos un valor ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1097\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1118\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Valor ADR. Para los dispositivos de salida de vídeo el valor de este campo viene de la especificación Tabla B-2 ACPI 3.0. Se requiere al menos un valor ADR&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1131\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1192\"/>\n        <source>This device path may optionally contain more than one ADR entry.</source>\n        <translation>Esta ruta del dispositivo puede contener opcionalmente más de una entrada ADR.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1195\"/>\n        <source>Additional ADR</source>\n        <translation>Dirección ADR adicional</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1198\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path may optionally contain more than one ADR entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Este dispositivo puede contener opcionalmente más de una dirección del apunte ADR.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1153\"/>\n        <source>Additional ADR format.</source>\n        <translation>Formato de dirección ADR adicional.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1156\"/>\n        <source>Additional ADR format</source>\n        <translation>Formato de dirección ADR adicional</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1159\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Additional ADR format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Formato de dirección ADR adicional.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1209\"/>\n        <source>NVDIMM</source>\n        <translation>NVDIMM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1212\"/>\n        <source>This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.</source>\n        <translation>Esta ruta del dispositivo describe un dispositivo NVDIMM usando la especificación ACPI 6.0 definida NFIT Device Handle como el identificador.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Esta ruta de dispositivo describe un dispositivo NVDIMM usando la especificación ACPI 6.0 definida NFIT Device Handle como el identificador.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1260\"/>\n        <source>NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.</source>\n        <translation>Manipulador de dispositivo NFIT; Único identificador físico. Consulte la sección de Dispositivos Definidos ACPI y Objetos Específicos de Dispositivo, sub-capítulo de Dispositivos NVDIMM para la definición específica de los campos utilizados para este manipulador.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1242\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1248\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1263\"/>\n        <source>NFIT Device Handle</source>\n        <translation>Manipulador de Dispositivo NFIT</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1245\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Manipulador de Dispositivo NFIT: Identificador físico único. Consulte la sección de Dispositivos Definidos ACPI y Objetos Específicos de Dispositivo, sub-carpeta de Dispositivos NVDIMM para la definición específica de los campos utilizados para este manipulador.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1284\"/>\n        <source>ATAPI</source>\n        <translation>ATAPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1287\"/>\n        <source>ATAPI Settings.</source>\n        <translation>Ajustes ATAPI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ajustes de ATAPI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1336\"/>\n        <source>Set to zero for primary or one for secondary.</source>\n        <translation>Se establece a cero para primaria o a uno para secundaria.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1317\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1323\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1339\"/>\n        <source>Primary</source>\n        <translation>Primaria</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1320\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1342\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for primary or one for secondary.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Establece a cero para primaria o uno para secundaria.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1349\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1371\"/>\n        <source>Set to zero for master or one for slave mode.</source>\n        <translation>Se establece a cero para el maestro o uno para el modo esclavo.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1374\"/>\n        <source>Slave</source>\n        <translation>Esclavo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1377\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for master or one for slave mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Establece a cero para modo maestro y uno para modo esclavo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1384\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1406\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4054\"/>\n        <source>Logical Unit Number.</source>\n        <translation>Número de unidad lógica.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1390\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1412\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4038\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Número de Unidad Lógica.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1429\"/>\n        <source>SCSI</source>\n        <translation>SCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1432\"/>\n        <source>SCSI Settings.</source>\n        <translation>Configuración SCSI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1435\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ajustes de SCSI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1481\"/>\n        <source>Target ID on the SCSI bus (PUN).</source>\n        <translation>ID de destino en el bus SCSI (PUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1962\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1984\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4969\"/>\n        <source>Target ID</source>\n        <translation>ID destino</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1465\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1487\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the SCSI bus (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ID destino en el bus SCSI (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4985\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5006\"/>\n        <source>Logical Unit Number (LUN).</source>\n        <translation>Número de Unidad Logística (LUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5012\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Número de Unidad Lógica (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1545\"/>\n        <source>Fibre Channel</source>\n        <translation>Canal de fibra</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1548\"/>\n        <source>Fibre Channel Settings</source>\n        <translation>Ajustes del canal de fibra</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1551\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ajustes del Canal de Fibra&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1596\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1750\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4434\"/>\n        <source>Reserved.</source>\n        <translation>Reservado.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1581\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1602\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1756\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3142\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4419\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reservado.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1615\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1636\"/>\n        <source>Fibre Channel World Wide Name.</source>\n        <translation>Nombre de Canal de Fibra Mundial.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1624\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1639\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4456\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4477\"/>\n        <source>World Wide Name</source>\n        <translation>Nombre de Anchura Mundial</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1621\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1642\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel World Wide Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Nombre de Canal de Fibra de Ancho Mundial.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1676\"/>\n        <source>Fibre Channel Logical Unit Number.</source>\n        <translation>Número de Unidad de Canal de Fibra Mundial.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1661\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1682\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Número de Unidad de Canal de Fibra Lógica.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1699\"/>\n        <source>Firewire</source>\n        <translation>Cortafuegos</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1702\"/>\n        <source>Firewire Settings.</source>\n        <translation>Ajustes de Cortafuegos.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1705\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firewire Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ajustes de Cortafuegos.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1790\"/>\n        <source>1394 Global Unique ID (GUID)</source>\n        <translation>ID Único Global de 1394 (GUID)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1796\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 Global Unique ID (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ID Único Global de 1394 (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1816\"/>\n        <source>USB settings.</source>\n        <translation>Ajustes de USB.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1865\"/>\n        <source>USB Parent Port Number.</source>\n        <translation>Número de Puerto Antecesor de USB.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1852\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1868\"/>\n        <source>Parent Port</source>\n        <translation>Puerto Antecesor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1871\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Parent Port Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Número de Puerto USB Antecesor.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1906\"/>\n        <source>USB Interface Number.</source>\n        <translation>Número de Interfaz USB.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1912\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Número de Interfaz USB.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1929\"/>\n        <source>I2O</source>\n        <translation>I2O</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1932\"/>\n        <source>I2O Settings</source>\n        <translation>Ajustes de I2O</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1935\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;I2O Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ajustes de I2O&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1981\"/>\n        <source>Target ID (TID) for a device.</source>\n        <translation>ID Destino (TID) para un dispositivo.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1965\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1987\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID (TID) for a device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ID destino (TID) para un dispositivo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2004\"/>\n        <source>InfiniBand</source>\n        <translation>InfiniBand</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2007\"/>\n        <source>InfiniBand Settings.</source>\n        <translation>Ajustes de InfiniBand.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2010\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;InfiniBand Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ajustes de InfiniBand.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2034\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2067\"/>\n        <source>Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.</source>\n        <translation>Indicadores para ayudar a identificar/gestionar elementos de ruta del dispositivo InfiniBand:\nBit 0 - IOC/Servicio (0b = IOC, 1b = Servicio).\nBit 1 - Entorno de Arranque Extendido.\nBit 2 - Protocolo de consola.\nBit 3 - Protocolo de almacenamiento.\nBit 4 - Protocolo de red.\nTodos los demás bit están reservados.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2043\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2055\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2076\"/>\n        <source>Resource Flags</source>\n        <translation>Indicadores de Recurso</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2046\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2079\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicadores para ayuda de identificador/gestión de elementos de ruta de dispositivo InfiniBand:\nBit 0 - IOC/Servicio (0b = IOC, 1b = Servicio).\nBit 1 - Extensión de Entorno de Arranque.\nBit 2 - Protocolo de Consola.\nBit 3 - Protocolo de Almacén.\nBit 4 - Protocolo de Red.\nEstán reservados todos los demás bit.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2098\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2119\"/>\n        <source>128-bit Global Identifier for remote fabric port</source>\n        <translation>Identificador Global de 128-bit para puerto de fábrica remota</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2101\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2122\"/>\n        <source>PORT GID</source>\n        <translation>PUERTO GID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2104\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2125\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;128-bit Global Identifier for remote fabric port&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Identificador Global de 128-bit para puerto de fábrica remota&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2135\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2156\"/>\n        <source>64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)</source>\n        <translation>Identificador único de 64-bit para IOC remoto o proceso de servidor. Interpretación de campo especificado por Indicador de Recurso (bit 0)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2138\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2144\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2159\"/>\n        <source>IOC GUID/Service ID</source>\n        <translation>GUID IOC/ID de Servicio</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2141\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2162\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Identificador único de 64-bit para IOC remoto o proceso de servidor. Interpretación del campo específico por Indicadores de Recurso (bit 0)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2175\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2196\"/>\n        <source>64-bit persistent ID of remote IOC port.</source>\n        <translation>ID persistente de 64-bit de puerto IOC remoto.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2184\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2199\"/>\n        <source>Target Port ID</source>\n        <translation>ID de Puerto Destino</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2181\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote IOC port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ID persistente de 64-bit de puerto IOC remoto.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2236\"/>\n        <source>64-bit persistent ID of remote device.</source>\n        <translation>ID persistente de 64-bit de dispositivo remoto.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2239\"/>\n        <source>Device ID</source>\n        <translation>ID de dispositivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ID persistente de 64-bit de dispositivo remoto.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2259\"/>\n        <source>MAC Address</source>\n        <translation>Dirección MAC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2262\"/>\n        <source>MAC settings.</source>\n        <translation>Ajustes MAC.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2289\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2310\"/>\n        <source>The MAC address for a network interface padded with 0s.</source>\n        <translation>La dirección MAC para una interfaz de red rellenada con 0s.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2295\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2316\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The MAC address for a network interface padded with 0s.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;La dirección MAC para una interfaz de red rellenada con 0s.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2329\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2351\"/>\n        <source>Network interface type (i.e., 802.3, FDDI). See RFC 3232.</source>\n        <translation>Tipo de interfaz de red (i.e., 802.3, FDDI). Consulte RFC 3232.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2357\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network interface type (i.e., 802.3, FDDI). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Tipo de interfaz de red (p.e., 802.3, FDDI). Consulte RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2377\"/>\n        <source>IPv4 settings.</source>\n        <translation>Ajustes de IPv4.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2425\"/>\n        <source>The local IPv4 address.</source>\n        <translation>La dirección local de IPv4.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2407\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2763\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2784\"/>\n        <source>Local IP Address</source>\n        <translation>Dirección IP local</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2431\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;La dirección IPv4 local.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2465\"/>\n        <source>The remote IPv4 address.</source>\n        <translation>La dirección IPv4 remota.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2447\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2824\"/>\n        <source>Remote IP Address</source>\n        <translation>Dirección IP remota</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2471\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;La dirección IPv4 remota.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2862\"/>\n        <source>The local port number.</source>\n        <translation>El número de puerto local.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2487\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2865\"/>\n        <source>Local Port</source>\n        <translation>Puerto local</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2490\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;El número de puerto local.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2547\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2903\"/>\n        <source>The remote port number.</source>\n        <translation>El número de puerto remoto.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2550\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2906\"/>\n        <source>Remote Port</source>\n        <translation>Puerto remoto</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2553\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2909\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;El número de puerto remoto.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2566\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2588\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2922\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2944\"/>\n        <source>The network protocol (i.e., UDP, TCP). See RFC 3232.</source>\n        <translation>El protocolo de red (e.d., UDP, TCP). Consulte RFC 3232.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2928\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2950\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The network protocol (i.e., UDP, TCP). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;El protocolo de red (e.d., UDP, TCP). Consulte RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2631\"/>\n        <source>0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.</source>\n        <translation>0x00 - La Dirección IP Origen fue asignada a pesar de DHCP.\n0x01 - La Dirección IP de origen está vinculada estáticamente.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2635\"/>\n        <source>Static IP Address</source>\n        <translation>Dirección IP Estática</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - La Dirección IP Fuente fue asignada a través de DHCP.\n0x01 - La dirección IP de origen está vinculada estáticamente..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2667\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3083\"/>\n        <source>The Gateway IP Address.</source>\n        <translation>La Dirección de Puerta IP.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3071\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3086\"/>\n        <source>Gateway IP Address</source>\n        <translation>Dirección IP de puerta</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2673\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Gateway IP Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;La dirección IP de puerta de enlace.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2686\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2707\"/>\n        <source>Subnet mask.</source>\n        <translation>Máscara de subred.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2689\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2695\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2710\"/>\n        <source>Subnet Mask</source>\n        <translation>Máscara Subred</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2733\"/>\n        <source>IPv6 settings.</source>\n        <translation>Ajustes IPv6.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2760\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2781\"/>\n        <source>The local IPv6 address.</source>\n        <translation>La dirección local de IPv6.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2787\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;La dirección local IPv6.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2821\"/>\n        <source>The remote IPv6 address.</source>\n        <translation>La dirección remota IPv6.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;La dirección IPv6 remota.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2963\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2989\"/>\n        <source>0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.</source>\n        <translation>0x00 - La dirección IP local fue configurada manualmente.\n0x01 - La dirección IP local está asignada a través de la autoconfiguración IPv6 no estática.\n0x02 - La dirección IP local está signada a través de la configuración IPv6 estática.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2976\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2994\"/>\n        <source>IP Address Origin</source>\n        <translation>Dirección IP Origen</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2971\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2997\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - La dirección IP local fue configurada manualmente.\n0x01 - La dirección IP local se asigna a través de la autoconfiguración IPv6 dinámica.\n0x02 - La dirección IP local se asigna a través de la configuración IPv6 estática.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3021\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3043\"/>\n        <source>The Prefix Length.</source>\n        <translation>La longitud del prefijo.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3024\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3030\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3046\"/>\n        <source>Prefix Length</source>\n        <translation>Longitud del prefijo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3027\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3049\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Prefix Length.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;La longitud del prefijo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3106\"/>\n        <source>UART</source>\n        <translation>UART</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3109\"/>\n        <source>UART Settings.</source>\n        <translation>Ajustes UART.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3112\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ajustes UART.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3176\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3197\"/>\n        <source>The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.</source>\n        <translation>Los ajustes del tipo de transmisión para el dispositivo de estilo UART. Un valor de 0 significa que se utilizará el tipo de transmisión predeterminado del dispositivo.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3179\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3185\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3200\"/>\n        <source>Baud Rate</source>\n        <translation>Tipo de Transmisión</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3182\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3203\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;La tipo de transmisión para el dispositivo de estilo UART. Un valor de 0 significa que el tipo de transmisión será utilizada por defecto.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3216\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3238\"/>\n        <source>The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.</source>\n        <translation>El número de bit de datos para el estilo de dispositivo UART. Un valor de 0 significa que se utilizará el número predeterminado de los dispositivos de bits de datos.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3219\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3225\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3241\"/>\n        <source>Data Bits</source>\n        <translation>Los Bit de Datos</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3222\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;El número de bit de datos para el dispositivo de estilo UART. Un valor de 0 significa que se utilizará el número predeterminado de los dispositivos de los bit de datos.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3257\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3291\"/>\n        <source>The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.</source>\n        <translation>El ajuste de paridad para el dispositivo de estilo UART:\n0x00 - Paridad predeterminada.\n0x01 - Sin paridad.\n0x02 - Paridad par\n0x03 - Paridad impar\n0x04 - Marcar paridad.\n0x05 - Paridad espacial.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3266\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3300\"/>\n        <source>Parity</source>\n        <translation>Paridad</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3303\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;El ajuste de paridad para el dispositivo de estilo UART:\n0x00 - Paridad Predeterminada.\n0x01 - Sin Paridad.\n0x02 - Paridad Par.\n0x03 - Paridad Impar.\n0x04 - Paridad de Marca.\n0x05 - Paridad Espacial.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3313\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3394\"/>\n        <source>Default</source>\n        <translation>Por defecto</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3318\"/>\n        <source>No</source>\n        <translation>No</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3323\"/>\n        <source>Even</source>\n        <translation>Par</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3328\"/>\n        <source>Odd</source>\n        <translation>Impar</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3333\"/>\n        <source>Mark</source>\n        <translation>Marcar</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3338\"/>\n        <source>Space</source>\n        <translation>Espacio</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3346\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3376\"/>\n        <source>The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.</source>\n        <translation>El número de los bit de parada para el dispositivo de estilo UART:\n0x00 - Los bit de parada.\n0x01 - 1 bit de parada.\n0x02 - 1&apos;5 bit de parada.\n0x03 - 2 bit de parada.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3353\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3363\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3383\"/>\n        <source>Stop Bits</source>\n        <translation>Los bit de parada</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3356\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;El número de bit de parada para el dispositivo de estilo UART:\n0x00 - Los bit de parada por omisión.\n0x01 - 1 bit de parada.\n0x02 - 1&apos;5 bit de parada.\n0x03 - 2 bit de parada.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3399\"/>\n        <source>1</source>\n        <translation>1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3404\"/>\n        <source>1.5</source>\n        <translation>1&apos;5</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3409\"/>\n        <source>2</source>\n        <translation>2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3421\"/>\n        <source>USB Class</source>\n        <translation>Clase USB</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3424\"/>\n        <source>USB Class Settings.</source>\n        <translation>Ajustes de Clase USB.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3427\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Class Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ajuste de Clase USB.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3451\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3472\"/>\n        <source>Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.</source>\n        <translation>ID de proveedor asignado por USB-IF. Un valor de 0xFFFF coincidirá cualquier ID de Proveedor.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3454\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3460\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3475\"/>\n        <source>Vendor ID</source>\n        <translation>ID Proveedor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3457\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3478\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ID Proveedor por USB-IF. Un valor de 0xFFFF coincidirá cualquier ID Proveedor.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3491\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3512\"/>\n        <source>Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.</source>\n        <translation>ID de producto asignado por USB-IF. Un valor de 0xFFFF coincidirá con cualquier ID de producto.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3515\"/>\n        <source>Product ID</source>\n        <translation>ID de producto</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3518\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ID de producto asignado por USB-IF. Un valor de 0xFFFF coincidirá con cualquier ID de producto.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3552\"/>\n        <source>The class code assigned by the USB-IF. A value of 0xFF will match any class code.</source>\n        <translation>El código de clase asignado por el USB-IF. Un valor de 0xFF coincidirá con cualquier código de clase.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3540\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3555\"/>\n        <source>Device Class</source>\n        <translation>Clase de dispositivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3537\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3558\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The class code assigned by the USB-IF. A value of 0xFF will match any class code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;El código de clase asignado por el USB-IF. Un valor de 0xFF coincidirá con cualquier código de clase.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3592\"/>\n        <source>The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.</source>\n        <translation>El código subclase asignado por el USB-IF. Un valor de 0xFF coincidirá con cualquier código subclase.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3574\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3595\"/>\n        <source>Device Subclass</source>\n        <translation>Subclase de dispositivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;El código de subclase asignado por el USB-IF. Un valor de 0xFF coincidirá con cualquier código subclase.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3632\"/>\n        <source>The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.</source>\n        <translation>El código de protocolo asignado por el USB-IF. Un valor de 0xFF coincidirá con cualquier código de protocolo.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3635\"/>\n        <source>Device Protocol</source>\n        <translation>Protocolo de dispositivos</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3617\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;El código de protocolo asignado por el USB-IF. Un valor de 0xFF coincidirá con cualquier código de protocolo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3655\"/>\n        <source>USB WWID</source>\n        <translation>USB WWID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3658\"/>\n        <source>This device path describes a USB device using its serial number.</source>\n        <translation>Esta ruta del dispositivo describe un dispositivo USB usando su número de serie.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3661\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a USB device using its serial number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Este dispositivo describe un dispositivo USB utilizando su número de serie.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3685\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3707\"/>\n        <source>USB interface Number.</source>\n        <translation>Interfaz USB Número.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Número de interfaz de USB.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3747\"/>\n        <source>USB vendor id of the device.</source>\n        <translation>ID de proveedor USB del dispositivo.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3750\"/>\n        <source>Device Vendor Id</source>\n        <translation>ID del Proveedor de Dispositivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3753\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB vendor id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Id de Proveedor de dispositivo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3787\"/>\n        <source>USB product id of the device.</source>\n        <translation>ID de producto USB del dispositivo.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3790\"/>\n        <source>Device Product Id</source>\n        <translation>ID del producto del dispositivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3793\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB product id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ID del producto USB del dispositivo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3828\"/>\n        <source>Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).</source>\n        <translation>Últimos 64 caracteres (o menos) de UTF-16 del número de serie USB. La longitud de la cadena se determina por el campo de longitud Length menos el desplazamiento del campo Serial Number (10).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3815\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3831\"/>\n        <source>Serial Number</source>\n        <translation>Número de Serie</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3812\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Últimos 64 caracteres UTF-16 (o menos) del número de serie USB. La longitud de la cadena se determina por el campo de longitud Length menos el desplazamiento del campo Number Serial (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3845\"/>\n        <source>Device Logical Unit</source>\n        <translation>Unidad lógica de dispositivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3848\"/>\n        <source>Device Logical Unit Settings.</source>\n        <translation>Ajustes de Unidad Lógica de Dispositivo.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3851\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device Logical Unit Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ajustes de Unidad de Dispositivo Lógico.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3897\"/>\n        <source>Logical Unit Number for the interface.</source>\n        <translation>Número de unidad lógica para la interfaz.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3903\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number for the interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Número de unidad Lógica para la interfaz.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3923\"/>\n        <source>SATA settings.</source>\n        <translation>Ajustes SATA.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3950\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3972\"/>\n        <source>The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.</source>\n        <translation>El número de puerto HBA que facilita la conexión con el dispositivo o un multiplicador de puerto. El valor 0xFFFF está reservado.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3953\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3975\"/>\n        <source>HBA Port</source>\n        <translation>Puerto HBA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3956\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3978\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;El número de puerto HBA que facilita la conexión al dispositivo o un multiplicador de puerto. El valor 0xFFFF está reservado.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4013\"/>\n        <source>The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.</source>\n        <translation>El número de puerto multiplicador de puerto que facilita la conexión con el dispositivo. Debe configurarse en 0xFFFF si el dispositivo está conectado directamente al HBA.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4000\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4016\"/>\n        <source>Port Multiplier Port</source>\n        <translation>Multiplicador de Puerto</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3997\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4019\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;El número de puerto multiplicador de puerto que facilita la conexión al dispositivo. Debe configurarse en 0xFFFF si el dispositivo está conectado directamente al HBA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4077\"/>\n        <source>iSCSI</source>\n        <translation>iSCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4080\"/>\n        <source>iSCSI Settings.</source>\n        <translation>Ajustes iSCSI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4083\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ajustes iSCSI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4129\"/>\n        <source>Network Protocol (0 = TCP, 1+ = reserved).</source>\n        <translation>Protocolo de red (0 = TCP, 1+ = reservado).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4113\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network Protocol (0 = TCP, 1+ = reserved).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Protocolo de red (0 = TCP, 1+ = reservado).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4148\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4169\"/>\n        <source>iSCSI Login Options.</source>\n        <translation>Opciones iSCSI de Inicio de Sesión.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4151\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4172\"/>\n        <source>Options</source>\n        <translation>Opciones</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4154\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4175\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Login Options.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Opciones iSCSI de Inicio de Sesión.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4188\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4209\"/>\n        <source>8 byte array containing the iSCSI Logical Unit Number.</source>\n        <translation>Repertorio de 8 byte que contiene el Número de Unidad Lógica iSCSI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4194\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing the iSCSI Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Repertorio 8 byte conteniendo el Número de Unidad Lógica iSCSI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4228\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4250\"/>\n        <source>iSCSI Target Portal group tag the initiator intends to establish a session with.</source>\n        <translation>Grupo de Portal Destino iSCSI etiqueta el iniciador con el que intenta establecer una sesión.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4231\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4253\"/>\n        <source>Target Portal Group</source>\n        <translation>Grupo Portal Destino</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4234\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4256\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Target Portal group tag the initiator intends to establish a session with.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Grupo Target Portal etiqueta el iniciador tiene la intención de establecer una sesión con.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4291\"/>\n        <source>iSCSI NodeTarget Name.</source>\n        <translation>Nombre NodeTarget de iSCSI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4272\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4294\"/>\n        <source>Target Name</source>\n        <translation>Nombre Destino</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4275\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4297\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI NodeTarget Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Nombre NodeTarget iSCSI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4308\"/>\n        <source>VLAN</source>\n        <translation>VLAN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4311\"/>\n        <source>VLAN Settings.</source>\n        <translation>Ajustes VLAN.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4314\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ajustes VLAN.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4360\"/>\n        <source>VLAN identifier (0-4094).</source>\n        <translation>Identificador VLAN (0-4.094).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4341\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4347\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4363\"/>\n        <source>Vlan ID</source>\n        <translation>ID VLAN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4344\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4366\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN identifier (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Identificador VLAN (0-4.094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4383\"/>\n        <source>Fibre Channel Ex</source>\n        <translation>Canal Fibra Ex</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4386\"/>\n        <source>The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation>La ruta destino del Canal de la Fibra Ex clarifica la definición del campo Número de Unidad Lógica para conformar con la especificación del Modelo d4 de Arquitectura T-10 SCSI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4389\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;La ruta del Canal de Fibra Ex clarifica la definición del campo Número de Unidad Lógica para ajustarse a la especificación de Modelo 4 de Arquitectura T-10 SCSI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4474\"/>\n        <source>8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).</source>\n        <translation>Repertorio de 8 byte que contiene Nombre de Puerto Final del Canal de Fibra (o.l.q.., Nombre de Todo el Mundo).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4480\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Repertorio 8 byte conteniendo Nombre de Puerto de Dispositivo de Canal Final de Fibra (a.k.a., World Wide Name).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4514\"/>\n        <source>8 byte array containing Fibre Channel Logical Unit Number.</source>\n        <translation>8 byte array que contiene Fibre Channel Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4499\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4520\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array conteniendo Número Unitario Lógico del Canal de Fibra.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4537\"/>\n        <source>SAS Extended Messaging</source>\n        <translation>Mensajería SAS Extendida</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4540\"/>\n        <source>The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation>La ruta de dispositivo SAS Ex clarifica la definición del campo Logical Unit Number a conforme con la especificación del Modelo 4 de Arquitectura T-10 SCSI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4543\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;La ruta SAS Ex clarifica la definición del campo número de unidad lógica para ajustarse a la especificación T-10 SCSI Architecture Model 4.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4567\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4588\"/>\n        <source>8-byte array of the SAS Address for Serial Attached SCSI Target Port.</source>\n        <translation>Colección de 8-byte de la Dirección SAS para Puerto de Destino SCSI Serial Adjuntado.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4570\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4576\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4591\"/>\n        <source>SAS Address</source>\n        <translation>Dirección SAS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4573\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4594\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Address for Serial Attached SCSI Target Port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Colección de 8-byte para la Dirección SAS para Puerto Destino SCSI Adjunto de Serie.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4628\"/>\n        <source>8-byte array of the SAS Logical Unit Number.</source>\n        <translation>Colección de 8-byte para el Número de Unidad Lógica SAS.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4613\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4634\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Colección de 8-byte del Número de Unidad Lógica SAS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4647\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4668\"/>\n        <source>More Information about the device and its interconnect.</source>\n        <translation>Más Información sobre el dispositivo y su interconexión.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4650\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4656\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4671\"/>\n        <source>Device and Topology Info</source>\n        <translation>Información sobre dispositivos y topología</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4653\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4674\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;More Information about the device and its interconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Más información sobre el dispositivo y su interconexión.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4687\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4709\"/>\n        <source>Relative Target Port (RTP).</source>\n        <translation>Puerto de destino relativo (RTP).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4690\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4696\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4712\"/>\n        <source>Relative Target Port</source>\n        <translation>Puerto de destino relativo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4715\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Relative Target Port (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Puerto Objetivo Relativo (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4732\"/>\n        <source>NVM Express NS</source>\n        <translation>NVM Express NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4735\"/>\n        <source>NVM Express Namespace Settings.</source>\n        <translation>Configuración de espacio de nombres Express NVM.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4738\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM Express Namespace Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Opciones de espacio de nombre Express NVM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4783\"/>\n        <source>Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.</source>\n        <translation>Identificador del espacio de nombres (NSID). Los valores de 0 y 0xFFFFFFFF no son válidos.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4765\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4771\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4786\"/>\n        <source>NSID</source>\n        <translation>NSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4768\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4789\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Identificador de espacio de nombre (NSID). Los valores de 0 y 0xFFFFFFFF no son válidos.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4802\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4823\"/>\n        <source>This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.</source>\n        <translation>Este campo contiene el Identificador Único Ampliado IEEE (EUI-64). Los dispositivos sin un valor EUI-64 deben inicializar este campo con un valor de 0.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4805\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4811\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4826\"/>\n        <source>EUI-64</source>\n        <translation>EUI-64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4808\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4829\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Este campo contiene el Identificador Único Ampliado de IEEE (EUI-64). Los dispositivos sin un valor EUI-64 deben inicializar este campo con un valor de 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4849\"/>\n        <source>Refer to RFC 3986 for details on the URI contents.</source>\n        <translation>Consulte RFC 3986 para obtener detalles sobre el contenido de URI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Refer to RFC 3986 for details on the URI contents.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Consulte más detalles sobre el contenido de RFC 3986 en la URI. &lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4876\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4898\"/>\n        <source>Instance of the URI pursuant to RFC 3986.</source>\n        <translation>Instancia de la URI de conformidad con RFC 3986.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4882\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Instance of the URI pursuant to RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Instancia del URI de conformidad con RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4915\"/>\n        <source>UFS</source>\n        <translation>UFS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4918\"/>\n        <source>UFS Settings.</source>\n        <translation>Ajustes de UFS.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ajustes de UFS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4966\"/>\n        <source>Target ID on the UFS interface (PUN).</source>\n        <translation>ID de destino en la interfaz UFS (PUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4972\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the UFS interface (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ID de destino en la interfaz UFS (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5029\"/>\n        <source>SD</source>\n        <translation>SD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5032\"/>\n        <source>SD Settings.</source>\n        <translation>Ajustes SD.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5035\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ajustes SD.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5081\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5299\"/>\n        <source>Slot Number</source>\n        <translation>Número de ranura</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5084\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5280\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5286\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5302\"/>\n        <source>Slot</source>\n        <translation>Ranura</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5087\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5283\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5305\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Slot Number&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Número de Ranura&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5104\"/>\n        <source>Bluetooth</source>\n        <translation>Bluetooth</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5107\"/>\n        <source>EFI Bluetooth Settings.</source>\n        <translation>Ajustes EFI de Bluetooth.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5110\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI Bluetooth Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ajustes EFI de Bluetooth.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5155\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5373\"/>\n        <source>48-bit Bluetooth device address.</source>\n        <translation>Dirección de dispositivo Bluetooth de 48-bit.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5143\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5158\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5361\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5376\"/>\n        <source>Device Address</source>\n        <translation>Dirección de dispositivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5161\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5379\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-bit Bluetooth device address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dirección del dispositivo Bluetooth de 48-bit.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5178\"/>\n        <source>Wi-Fi</source>\n        <translation>Wi-Fi</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5181\"/>\n        <source>Wi-Fi Settings.</source>\n        <translation>Ajustes Wi-Fi.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5184\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wi-Fi Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ajustes Wi-Fi.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5208\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5230\"/>\n        <source>SSID in octet string.</source>\n        <translation>SSID en cadena de octeto.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5211\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5217\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5233\"/>\n        <source>SSID</source>\n        <translation>SSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5214\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5236\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID in octet string.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID en cadena octeto.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5247\"/>\n        <source>eMMC</source>\n        <translation>eMMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5250\"/>\n        <source>Embedded Multi-Media Card Settings.</source>\n        <translation>Ajustes de tarjeta multimedia incorporada.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5253\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Embedded Multi-Media Card Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ajustes de tarjeta multimedia incorporada.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5322\"/>\n        <source>BluetoothLE</source>\n        <translation>BluetoothLE</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5325\"/>\n        <source>EFI BluetoothLE Settings.</source>\n        <translation>Ajustes EFI BluetoothLE.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5328\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI BluetoothLE Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ajustes de EFI BluetoothLE.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5416\"/>\n        <source>0x00 - Public Device Address.\n0x01 - Random Device Address.</source>\n        <translation>0x00 - Dirección del dispositivo público.\n0x01 - Dirección de dispositivos aleatorios.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5396\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5403\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5420\"/>\n        <source>Address Type</source>\n        <translation>Tipo de dirección</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5399\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5423\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Public Device Address.\n0x01 - Random Device Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Dirección del Dispositivo Público.\n0x01 - Dirección de dispositivos aleatorios.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5428\"/>\n        <source>Public</source>\n        <translation>Público</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5433\"/>\n        <source>Random</source>\n        <translation>Aleatorio</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5445\"/>\n        <source>DNS</source>\n        <translation>DNS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5448\"/>\n        <source>DNS Settings.</source>\n        <translation>Ajustes de DNS.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5451\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DNS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ajustes de DNS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5499\"/>\n        <source>0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.</source>\n        <translation>0x00 - La dirección del servidor DNS es IPv4 dirección.\n0x01 - La dirección del servidor DNS es IPv6 dirección.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5482\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5506\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - La dirección del servidor DNS es IPv4 dirección.\n0x01 - La dirección del servidor DNS es dirección IPv6.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5514\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5575\"/>\n        <source>One or more instances of the DNS server address in EFI_IP_ADDRESS.</source>\n        <translation>Una o más instancias de la dirección del servidor DNS en EFI_IP_ADDRESS.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5520\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5581\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;One or more instances of the DNS server address in EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Una o más instancias de la dirección del servidor DNS en EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5536\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7584\"/>\n        <source>Data format.</source>\n        <translation>Formato de datos.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5592\"/>\n        <source>NVDIMM NS</source>\n        <translation>NVDIMM NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5595\"/>\n        <source>This device path describes a bootable NVDIMM namespace that is defined by a namespace label.</source>\n        <translation>Esta ruta del dispositivo describe un espacio de nombres NVDIMM de arranque que se define por una etiqueta namespace.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVDIMM namespace that is defined by a namespace label.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Este camino de dispositivo describe un espacio de nombres NVDIMM de arranque definido por una etiqueta de espacio de nombres.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5622\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5643\"/>\n        <source>Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.</source>\n        <translation>Nombre espacio único identificador de etiquetas UUID. Vea la descripción Uuid en el protocolo de etiqueta NVDIMM - Sección de definiciones de etiqueta para detalles sobre este campo.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5646\"/>\n        <source>UUID</source>\n        <translation>Uuid</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5628\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5649\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Identificador de etiqueta único de Namespace UUID. Consulte la descripción Uuid en el protocolo de etiqueta NVDIMM - Sección de definiciones de etiqueta para detalles sobre este campo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5663\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5698\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5706\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5724\"/>\n        <source>REST Service</source>\n        <translation>Servicio REST</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5666\"/>\n        <source>REST Service Settings.</source>\n        <translation>Ajustes del servicio REST.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5669\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;REST Service Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ajustes de servicio REST.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5719\"/>\n        <source>0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.</source>\n        <translation>0x01 - Servicio REST Redfish.\n0x02 - Servicio REST OData.\n0xFF - Servicio REST específico del proveedor.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5701\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5727\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Servicio REST Redfish.\n0x02 - Servicio REST OData.\n0xFF - Servicio REST específico de proveedores.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5733\"/>\n        <source>Redfish</source>\n        <translation>Redfish</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5738\"/>\n        <source>OData</source>\n        <translation>OData</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5743\"/>\n        <source>Vendor specific</source>\n        <translation>Proveedor específico</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5775\"/>\n        <source>0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.</source>\n        <translation>0x01 - Servicio REST En banda.\n0x02 - Servicio REST Fuera de banda.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5755\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5779\"/>\n        <source>Access Mode</source>\n        <translation>Modo de acceso</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5782\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Servicio REST en banda.\n0x02 - Servicio REST fuera de banda.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5787\"/>\n        <source>In-Band</source>\n        <translation>En-Banda</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5792\"/>\n        <source>Out-of-band</source>\n        <translation>Fuera de banda</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5821\"/>\n        <source>GUID of vendor specific REST service.</source>\n        <translation>GUID de proveedor específico de servicio REST.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID of vendor specific REST service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID del proveedor específico del servicio REST.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5898\"/>\n        <source>Vendor-defined data.</source>\n        <translation>Datos de proveedor definido.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Datos de proveedor definido.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5915\"/>\n        <source>NVMe-oF NS</source>\n        <translation>NVMe-oF NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5918\"/>\n        <source>This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.</source>\n        <translation>Esta ruta de dispositivo describe un espacio de nombres NVMe sobre fibra de arranque que se define mediante una identidad NQN única de espacio de nombres y subsistema.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Esta ruta de dispositivo describe un espacio de nombres NVMe sobre fibra de arranque que se define mediante una identidad NQN única de espacio de nombres y subsistema.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5967\"/>\n        <source>Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.</source>\n        <translation>Tipo de identificador de espacio de nombres (NIDT), para valores de tipo globalmente únicos definidos en el campo NIDT CNS 03h (1h, 2h o 3h) por la especificación base NVM Express.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5970\"/>\n        <source>NIDT</source>\n        <translation>NIDT</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5973\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Tipo de identificador de espacio de nombres (NIDT), para valores de tipo globalmente únicos definidos en el campo NIDT CNS 03h (1h, 2h o 3h) por la especificación base NVM Express.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5986\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6007\"/>\n        <source>Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.</source>\n        <translation>Identificador de espacio de nombres (NID), un valor único global definido en la lista de descriptores de identificación de espacio de nombres (CNS 03h) por la especificación base de NVM Express en formato big endian.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5989\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5995\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6010\"/>\n        <source>NID</source>\n        <translation>NID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5992\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6013\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Identificador de espacio de nombres (NID), un valor único global definido en la lista de descriptores de identificación de espacio de nombres (CNS 03h) por la especificación base de NVM Express en formato big endian.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6023\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6045\"/>\n        <source>Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.</source>\n        <translation>Identificador único de un subsistema NVM almacenado como una cadena UTF-8 de n bytes, conforme al Nombre Cualificado NVMe de la Especificación Base NVM Express. El NQN del subsistema se utiliza para fines de identificación y autenticación. Longitud máxima: 224 bytes.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6026\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6048\"/>\n        <source>Subsystem NQN</source>\n        <translation>Subsistema NQN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6029\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6051\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Identificador único de un subsistema NVM almacenado como una cadena UTF-8 de n bytes, conforme al Nombre Cualificado NVMe de la Especificación Base NVM Express. El NQN del subsistema se utiliza para fines de identificación y autenticación. Longitud máxima de 224 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6066\"/>\n        <source>Hard Drive</source>\n        <translation>Disco duro</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6069\"/>\n        <source>The Hard Drive Media Device Path is used to represent a partition on a hard drive.</source>\n        <translation>La ruta del dispositivo de medios del disco duro se utiliza para representar una partición en un disco duro.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6072\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Hard Drive Media Device Path is used to represent a partition on a hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;La Ruta del Dispositivo de Medios del Disco Duro se utiliza para representar una partición en un disco duro.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6174\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6196\"/>\n        <source>Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].</source>\n        <translation>Describe el apunte en una tabla de particiones, comenzando con el apunte 1. La partición número cero representa todo el dispositivo. Los números de partición válidos para una partición MBR son [1, 4]. Los números de partición válidos para una partición GPT son [1, NumberOfPartitionEntries].</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6180\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describe la entrada en una tabla de particiones, comenzando con la entrada 1. La partición número cero representa todo el dispositivo. Los números de partición válidos para una partición MBR son [1, 4]. Los números de partición válidos para una partición GPT son [1, NumberOfPartitionEntries].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6236\"/>\n        <source>Starting LBA of the partition on the hard drive.</source>\n        <translation>Iniciando LBA de la partición en el disco duro.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6466\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6487\"/>\n        <source>Partition Start</source>\n        <translation>Inicio de partición</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting LBA of the partition on the hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Iniciando LBA de la partición en el disco duro.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6255\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6276\"/>\n        <source>Size of the partition in units of Logical Blocks.</source>\n        <translation>Tamaño de la partición en unidades de bloques lógicos.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6258\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6264\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6279\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6527\"/>\n        <source>Partition Size</source>\n        <translation>Tamaño de partición</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6261\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6282\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Logical Blocks.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Tamaño de la partición en unidades de bloques lógicos.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6295\"/>\n        <source>Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation>Firma única de esta partición:\nSi SignatureType es 0, este campo debe inicializarse con 16 ceros..\nSi SignatureType es 1, la firma MBR se almacena en los primeros 4 bytes de este campo. Los otros 12 bytes se inicializan con ceros.\nSi SignatureType es 2, este campo contiene una firma de 16 bytes.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6301\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6310\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6367\"/>\n        <source>Partition Signature</source>\n        <translation>Firma de Partición</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6304\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firma única de esta partición:\nSi SignatureType es 0, este campo debe inicializarse con 16 ceros.\nSi SignatureType es 1, la firma MBR se almacena en los primeros 4 bytes de este campo. Los 12 bytes restantes se inicializan con ceros.\nSi SignatureType es 2, este campo contiene una firma de 16 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6322\"/>\n        <source>PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.</source>\n        <translation>Tipo de parte de la firma del disco (valores no utilizados reservados):\n             0x00 - Sin firma de disco.\n             0x01 - Firma de 32-bit de la dirección 0x1b8 del tipo 0x01 MBR.\n             0x02 - Firma GUID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6328\"/>\n        <source>Signature Type</source>\n        <translation>Tipo de firma</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6331\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PartType de la firma del disco (valores no utilizados reservados):\n            0x00 - Sin firma de disco.\n            0x01 - Firma de 32-bit de la dirección 0x1b8 del tipo 0x01 MBR.\n            0x02 - Firma GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6338\"/>\n        <source>None</source>\n        <translation>Ninguno</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6361\"/>\n        <source>Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation>Firma única de esta partición:\n\t\tSi SignatureType es 0, este campo debe inicializarse con 16 ceros.\n\t\tSi SignatureType es 1, la firma MBR se almacena en los primeros 4 bytes de este campo. Los 12 bytes restantes se inicializan con ceros.\n\t\tSi SignatureType es 2, este campo contiene una firma de 16 bytes.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6370\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firma única de esta partición:\n            Si SignatureType es 0, este campo debe inicializarse con 16 ceros.\n            Si SignatureType es 1, la firma MBR se almacena en los primeros 4 bytes de este campo. Los otros 12 bytes se inicializan con ceros.\n            Si SignatureType es 2, este campo contiene una firma de 16 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6392\"/>\n        <source>CD-ROM</source>\n        <translation>CD-ROM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6395\"/>\n        <source>The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.</source>\n        <translation>La ruta del dispositivo de medios CD-ROM se utiliza para definir una partición del sistema que existe en un CD-ROM.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6398\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;La ruta del dispositivo de medios CD-ROM se utiliza para definir una partición del sistema que existe en un CD-ROM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6444\"/>\n        <source>Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.</source>\n        <translation>Número de apunte de arranque del catálogo de arranque. El apunte inicial/predeterminado se define como cero.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6425\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6431\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6447\"/>\n        <source>Boot Entry</source>\n        <translation>Apunte de arranque</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6450\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Número de apunte de arranque del catálogo de arranque. El apunte inicial/predeterminada se define como cero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6463\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6484\"/>\n        <source>Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.</source>\n        <translation>Iniciando RBA de la partición en el medio. Los CD-ROM utilizan direccionamiento lógico de bloques relativo.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6469\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6490\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Iniciando RBA de la partición en el medio. Los CD-ROM utilizan direccionamiento lógico de bloques relativo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6524\"/>\n        <source>Size of the partition in units of Blocks, also called Sectors.</source>\n        <translation>Tamaño de la partición en unidades de bloques, también llamados sectores.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6530\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Blocks, also called Sectors.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Tamaño de la partición en unidades de bloques, también llamados sectores.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6547\"/>\n        <source>File Path</source>\n        <translation>Ruta del archivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6550\"/>\n        <source>File Path settings.</source>\n        <translation>Ajustes de ruta del archivo.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6553\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File Path settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ajuste de Ruta de Archivo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6599\"/>\n        <source>Path including directory and file names.</source>\n        <translation>Ruta incluyendo directorio y nombres de archivo.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6586\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6602\"/>\n        <source>Path Name</source>\n        <translation>Nombre de Ruta</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6583\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6605\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Path including directory and file names.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ruta incluyendo nombres de directorio y archivo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6619\"/>\n        <source>The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.</source>\n        <translation>La Ruta del Protocolo del Medio es utilizada para denotar el protocolo que está siendo utilizado dentro de la ruta del dispositivo en el lugar de la ruta especificada.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6622\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;La Ruta del Protocolo del Medio es utilizada para denotar el protocolo que está siendo utilizado dentro de la ruta del dispositivo en el lugar de la ruta especificada.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6667\"/>\n        <source>The ID of the protocol.</source>\n        <translation>El ID del protocolo.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6673\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ID of the protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;El ID del protocolo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6687\"/>\n        <source>Firmware File</source>\n        <translation>Archivo del Firmware</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6690\"/>\n        <source>Describes a firmware file in a firmware volume.</source>\n        <translation>Describe un archivo de firmware en un volumen de firmware.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6693\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware file in a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describe un archivo de firmware en un volumen de firmware.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6717\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6738\"/>\n        <source>Firmware file name GUID.</source>\n        <translation>GUID del nombre del archivo de firmware.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6723\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6744\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware file name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID del nombre del archivo de firmware.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6758\"/>\n        <source>Firmware Volume</source>\n        <translation>Volumen del Firmware</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6761\"/>\n        <source>Describes a firmware volume.</source>\n        <translation>Describe un volumen de firmware.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6764\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describe un volumen de firmware.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6809\"/>\n        <source>Firmware volume name GUID.</source>\n        <translation>GUID del nombre del volumen del firmware.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware volume name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID del nombre del volumen del firmware.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6829\"/>\n        <source>Relative Offset Range</source>\n        <translation>Intervalo de Desplazamiento Relativo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6832\"/>\n        <source>This device path node specifies a range of offsets relative to the first byte available on the device.</source>\n        <translation>Este nodo de ruta del dispositivo especifica un intervalo de desplazamientos relativos al primer byte disponible en el dispositivo.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6835\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path node specifies a range of offsets relative to the first byte available on the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Este nodo de ruta del dispositivo especifica un intervalo de desplazamientos relativos al primer byte disponible en el dispositivo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6880\"/>\n        <source>Reserved for future use.</source>\n        <translation>Reservado para uso futuro.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6886\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved for future use.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reservado para uso futuro.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6899\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6920\"/>\n        <source>Offset of the first byte, relative to the parent device node.</source>\n        <translation>Desplazamiento del primer byte, relativo al nodo del dispositivo antecesor.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6902\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6908\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6923\"/>\n        <source>Starting Offset</source>\n        <translation>Inicio de desplazamiento</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6905\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the first byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Desplazamiento del primer byte, relativo al nodo del dispositivo antecesor.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6939\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6960\"/>\n        <source>Offset of the last byte, relative to the parent device node.</source>\n        <translation>Desplazamiento del último byte, relativo al nodo del dispositivo antecesor.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6942\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6963\"/>\n        <source>Ending Offset</source>\n        <translation>Desplazamiento final</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6966\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the last byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Desplazamiento del último byte, relativo al nodo del dispositivo principal.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6983\"/>\n        <source>RAM Disk</source>\n        <translation>Disco RAM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6986\"/>\n        <source>RAM Disk Settings.</source>\n        <translation>Ajustes de Disco RAM.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6989\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ajustes de Disco RAM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7016\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7037\"/>\n        <source>Starting Address</source>\n        <translation>Dirección Inicial</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7056\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7077\"/>\n        <source>Ending Address</source>\n        <translation>Dirección Final</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7093\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7114\"/>\n        <source>GUID that defines the type of the RAM Disk.</source>\n        <translation>GUID que define el tipo de disco RAM.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7120\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID that defines the type of the RAM Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID que define el tipo de disco RAM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7130\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7152\"/>\n        <source>RAM Disk instance number, if supported.</source>\n        <translation>Número de instancia de disco RAM, si es admitido.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7133\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7155\"/>\n        <source>Disk Instance</source>\n        <translation>Instance de disco</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7158\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk instance number, if supported.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Número de instancia de disco RAM, si es admitido.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7179\"/>\n        <source>This Device Path is used to describe the booting of non-EFI-aware operating systems.</source>\n        <translation>Esta ruta de dispositivo se utiliza para describir el arranque de sistemas operativos de sistemas operativos distintos del EFI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7182\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path is used to describe the booting of non-EFI-aware operating systems.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Esta ruta de dispositivo se utiliza para describir el arranque de sistemas operativos que no son compatibles con EFI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7206\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7249\"/>\n        <source>An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.</source>\n        <translation>Número de identificación que describe el tipo de dispositivo:\n0x00 - Reservado.\n0x01 - Disquete.\n0x02 - Disco duro.\n0x03 - Unidad de CD-ROM.\n0x04 - PCMCIA.\n0x05 - Dispositivo USB.\n0x06 - Red integrada.\n0x07 a 0x7F - Reservado.\n0x80 - Dispositivo BEV.\n0x81 a 0xFE - Reservado.\n0xFF - Desconocido.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7220\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7263\"/>\n        <source>Device Type</source>\n        <translation>Tipo de dispositivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7223\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Número de identificación que describe el tipo de dispositivo:\n0x00 - Reservado.\n0x01 - Disquete.\n0x02 - Disco duro.\n0x03 - CD-ROM.\n0x04 - PCMCIA.\n0x05 - Dispositivo USB.\n0x06 - Red integrada.\n0x07 a 0x7F - Reservado.\n0x80 - Dispositivo BEV.\n0x81 a 0xFE - Reservado.\n0xFF - Desconocido.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7290\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7347\"/>\n        <source>Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero</source>\n        <translation>Indicadores de estado según la especificación de arranque de la BIOS:\n\n|       Bit       |          Campo            |    Valor   |     Descripción   \n|========|===============|=======|=============\n|      3..0      | Posición anterior | 0..15 | Índice de este apunte en la tabla en el último arranque. Se utiliza para actualizar la prioridad de IPL o BCV si se realiza la detección individual de dispositivos.\n|--------|--------------------------- |---------|-----------------------\n|   7..4  | (Reservado)  |  0 | Reservado para uso futuro; debe ser cero.\n|--------|----------------- |-----|---------------------------------------\n|      8     |   Habilitado   | 0..1 | 0 = Esta entrada se ignorará durante el arranque (IPL); no se invocará para la conexión de arranque (BCV).\n|              |                           |          | 1 = Se intentará usar esta entrada durante el arranque (IPL); Se invocará al apunte para la conexión de arranque (BCV).\n|---------|------------------|------|------------------------------------\n|     9     | Fallido | 0..1 | 0 = No se ha intentado el arranque o se desconoce si se produjo un fallo de arranque (IPL); el apunte se conectó correctamente (BCV).\n|              |               |         | 1 = Falló el intento de arranque (IPL); falló el intento de conexión (BCV).\n|---------|----------|------|--------------------------------------------------\n| 11..10 | Medio pres. | 0..3 | 0 = No hay medios de arranque presentes en el dispositivo.\n|              |                |          | 1 = Se desconoce si hay medios de arranque presentes.\n|              |                |          | 2 = Hay medios presentes y parecen ser de arranque.\n|              |                |          | 3 = Reservado para uso futuro.\n|---------|----------|-------|---------------------------------------------------\n| 15..12 | (Reservado) |   0   | Reservado para uso futuro, debe ser cero.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7311\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7368\"/>\n        <source>Status Flag</source>\n        <translation>Indicadores de estado</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7371\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicadores de estado según la especificación de arranque de la BIOS:\n| Bits | Campo | Valor | Descripción\n|========|===============|=======|=============\n| 3 a 0 | Posición anterior | 0..15 | Índice de esta entrada en la tabla en el último arranque. Se utiliza para actualizar la prioridad de IPL o BCV si se realiza la detección individual de dispositivos.\n|--------|-------------- |-------|-------------\n| 7 a 4 | (Reservado) | 0 | Reservado para uso futuro; debe ser cero.\n|--------|-------------- |-------|-------------\n| 8 | Habilitado | 0..1 | 0 = Esta entrada se ignorará durante el arranque (IPL); no se invocará para la conexión de arranque (BCV).\n| | | | 1 = Se intentará el arranque (IPL); se solicitará la conexión de arranque (BCV).\n|--------|---------------|-------|-------------\n| 9 | Fallido | 0..1 | 0 = No se ha intentado el arranque o se desconoce si se produjo un fallo de arranque (IPL); conexión establecida correctamente (BCV).\n| | | | 1 = Fallo en el intento de arranque (IPL); fallo en el intento de conexión (BCV).\n|--------|---------------|-------|-------------\n| 11 a 10 | Medios presentes | 0..3 | 0 = No hay medios de arranque presentes en el dispositivo.\n| | | | 1 = Se desconoce si hay medios de arranque presentes.\n| | | | 2 = Hay medios presentes y parecen ser de arranque.\n| | | | 3 = Reservado para uso futuro.\n|--------|---------------|-------|-------------\n| 15 a 12 | (Reservado) | 0 | Reservado para uso futuro, debe ser cero&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7402\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7424\"/>\n        <source>String that describes the boot device to a user.</source>\n        <translation>Cadena que describe el dispositivo de arranque a un usuario.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7408\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7430\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;String that describes the boot device to a user.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Cadena que describe el dispositivo de arranque al usuario.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7543\"/>\n        <source>Vendor-assigned GUID that defines the data that follows.</source>\n        <translation>GUID asignado por el proveedor que define los datos que siguen.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7549\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-assigned GUID that defines the data that follows.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID asignado por el proveedor que define los datos que siguen.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7562\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7622\"/>\n        <source>Vendor-defined variable size data.</source>\n        <translation>Datos de tamaño variable definidos por el proveedor.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7568\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7628\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined variable size data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Datos de tamaño variable definidos por el proveedor.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7642\"/>\n        <source>Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.</source>\n        <translation>Dependiendo del subtipo, este nodo de ruta del dispositivo se utiliza para indicar el final de la instancia de ruta del dispositivo o de la estructura de ruta del dispositivo.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7645\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dependiendo del subtipo, este nodo de ruta del dispositivo se utiliza para indicar el final de la instancia de ruta del dispositivo o de la estructura de ruta del dispositivo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7721\"/>\n        <source>Unknown file path specifier settings</source>\n        <translation>Ajustes de especificador de ruta del archivo desconocido</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7724\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown file path specifier settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ajustes de especificador de ruta del archivo desconocido.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7748\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7772\"/>\n        <source>Unknown Type</source>\n        <translation>Tipo desconocido</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7754\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7775\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Tipo desconocido.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7812\"/>\n        <source>Unknown Sub-Type</source>\n        <translation>Sub-tipo desconocido</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sub-tipo desconocido.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7828\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7831\"/>\n        <source>Unknown data</source>\n        <translation>Datos desconocidos</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Datos desconocidos.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/filepathdialog.cpp\" line=\"1569\"/>\n        <source>Couldn&apos;t change data format!</source>\n        <translation>¡No se pudo cambiar el formato de datos!</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeyListModel</name>\n    <message>\n        <location filename=\"../src/hotkeylistmodel.cpp\" line=\"100\"/>\n        <source>boot option</source>\n        <translation>opción de arranque</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Boot option</source>\n        <translation>Opción de arranque</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Hot key</source>\n        <translation>Tecla rápida</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Vendor data</source>\n        <translation>Datos del proveedor</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeysDialog</name>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"20\"/>\n        <source>Hot Keys editor</source>\n        <translation>Editor de teclas rápidas</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"41\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"44\"/>\n        <source>Hot Keys</source>\n        <translation>Teclas rápidas</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"47\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Teclas rápidas&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"125\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"128\"/>\n        <source>Index filter</source>\n        <translation>Filtro de índice</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"131\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Index filter&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Filtro de índice&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"163\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"166\"/>\n        <source>Remove hot key</source>\n        <translation>Quitar tecla rápida</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Quitar tecla rápida&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"191\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"194\"/>\n        <source>Add hot key</source>\n        <translation>Añadir tecla rápida</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"197\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Añadir tecla rápida&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <location filename=\"../include/commands.h\" line=\"21\"/>\n        <location filename=\"../include/commands.h\" line=\"66\"/>\n        <source>Change %1 to &quot;%2&quot;</source>\n        <translation>Cambiar %1 a &quot;%2&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"35\"/>\n        <source>Insert %1 entry &quot;%2&quot; at position %3</source>\n        <translation>Insertar %1 apunte «%2» en posición %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"50\"/>\n        <source>Remove %1 entry &quot;%2&quot; from position %3</source>\n        <translation>Quitar %1 apunte «%2» desde posición %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"73\"/>\n        <location filename=\"../src/commands.cpp\" line=\"116\"/>\n        <source>Move %1 entry &quot;%2&quot; from position %3 to %4</source>\n        <translation>Mover %1 apunte «%2» desde posición %3 a %4</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <location filename=\"../include/commands.h\" line=\"157\"/>\n        <location filename=\"../include/commands.h\" line=\"198\"/>\n        <source>Change %1 entry &quot;%2&quot; %3 to &quot;%4&quot;</source>\n        <translation>Cambiar %1 apunte «%2» %3 a «%4»</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <source>Optional data</source>\n        <translation>Datos opcionales</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"227\"/>\n        <source>Insert %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation>Insertar %1 apunte «%2» de ruta del archivo en la posición %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"242\"/>\n        <source>Remove %1 entry &quot;%2&quot; file path from position %3</source>\n        <translation>Quitar %1 apunte «%2» ruta del archivo de la posición %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"257\"/>\n        <source>Set %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation>Establecer %1 apunte «%2» ruta del archivo en la posición %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <source>Insert %1 entry at position %2</source>\n        <translation>Insertar %1 apunte en la posición %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>Key</source>\n        <translation>Clave</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <source>Remove %1 entry from position %2</source>\n        <translation>Eliminar %1 apunte desde posición %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <location filename=\"../include/commands.h\" line=\"362\"/>\n        <location filename=\"../include/commands.h\" line=\"403\"/>\n        <source>Change %1 entry at position %2 %3 to &quot;%4&quot;</source>\n        <translation>Cambiar %1 apunte en la posición %2 %3 a «%4»</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>keys</source>\n        <translation>claves</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"293\"/>\n        <location filename=\"../src/commands.cpp\" line=\"333\"/>\n        <source>Move %1 entry &quot;%2&quot; file path from position %3 to %4</source>\n        <translation>Mover %1 apunte «%2» ruta del archivo desde posición %3 a %4</translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/efibooteditor_fi.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"fi\" sourcelanguage=\"en_US\">\n<context>\n    <name>BootEntryForm</name>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"169\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"172\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"182\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"185\"/>\n        <source>Description</source>\n        <translation>Kuvaus</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"198\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"201\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"204\"/>\n        <source>Path</source>\n        <translation>Polku</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"415\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"418\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"478\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"481\"/>\n        <source>Optional data</source>\n        <translation>Vapaaehtoinen data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"421\"/>\n        <source>Optional</source>\n        <translation>Vapaavalintainen</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"434\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"437\"/>\n        <source>Optional data format</source>\n        <translation type=\"unfinished\">Optional data format</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"6\"/>\n        <source>Boot entry form</source>\n        <translation type=\"unfinished\">Boot entry form</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"24\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"27\"/>\n        <source>Error</source>\n        <translation type=\"unfinished\">Error</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"40\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"43\"/>\n        <source>Error note</source>\n        <translation type=\"unfinished\">Error note</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"46\"/>\n        <source>This entry placeholder is shown here to indicate it&apos;s referenced in boot order. It won&apos;t be modified on save, just left as is.</source>\n        <translation type=\"unfinished\">This entry placeholder is shown here to indicate it&apos;s referenced in boot order. It won&apos;t be modified on save, just left as is.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"147\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"150\"/>\n        <source>Hot Keys</source>\n        <translation type=\"unfinished\">Hot Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"188\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry description.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry description.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"222\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"225\"/>\n        <source>Device path</source>\n        <translation type=\"unfinished\">Device path</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"280\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"283\"/>\n        <source>Move file path up</source>\n        <translation type=\"unfinished\">Move file path up</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"286\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"305\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"308\"/>\n        <source>Move file path down</source>\n        <translation type=\"unfinished\">Move file path down</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"311\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"330\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"333\"/>\n        <source>Remove file path</source>\n        <translation type=\"unfinished\">Remove file path</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"336\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"355\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"358\"/>\n        <source>Edit file path</source>\n        <translation type=\"unfinished\">Edit file path</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"361\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Edit file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Edit file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"380\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"383\"/>\n        <source>Add file path</source>\n        <translation type=\"unfinished\">Add file path</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"444\"/>\n        <source>BASE64</source>\n        <translation type=\"unfinished\">BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"449\"/>\n        <source>UTF-16</source>\n        <translation type=\"unfinished\">UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"454\"/>\n        <source>UTF-8</source>\n        <translation type=\"unfinished\">UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"459\"/>\n        <source>HEX</source>\n        <translation type=\"unfinished\">HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"484\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry optional data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry optional data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"497\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"500\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"503\"/>\n        <source>Attributes</source>\n        <translation type=\"unfinished\">Attributes</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"623\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry category.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry category.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"122\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"540\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Is entry considered for automatic boot?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Is entry considered for automatic boot?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"569\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hidden.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hidden.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"585\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Force reconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Force reconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"534\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"537\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"543\"/>\n        <source>Active</source>\n        <translation type=\"unfinished\">Active</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"579\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"582\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"588\"/>\n        <source>Force reconnect</source>\n        <translation type=\"unfinished\">Force reconnect</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"563\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"566\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"572\"/>\n        <source>Hidden</source>\n        <translation type=\"unfinished\">Hidden</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"598\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"601\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"604\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"617\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"620\"/>\n        <source>Category</source>\n        <translation type=\"unfinished\">Category</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"627\"/>\n        <source>Boot</source>\n        <translation type=\"unfinished\">Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"632\"/>\n        <source>App</source>\n        <translation type=\"unfinished\">App</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"68\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"71\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"74\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"116\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"119\"/>\n        <source>Index</source>\n        <translation type=\"unfinished\">Index</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentryform.cpp\" line=\"117\"/>\n        <source>Couldn&apos;t change optional data format!</source>\n        <translation type=\"unfinished\">Couldn&apos;t change optional data format!</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryListModel</name>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"88\"/>\n        <source>Set Next boot to &quot;%1&quot;</source>\n        <translation type=\"unfinished\">Set Next boot to &quot;%1&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"184\"/>\n        <source>index</source>\n        <translation type=\"unfinished\">index</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"200\"/>\n        <source>description</source>\n        <translation type=\"unfinished\">description</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"237\"/>\n        <source>optional data</source>\n        <translation type=\"unfinished\">optional data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"253\"/>\n        <source>attributes</source>\n        <translation>attribuutit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"269\"/>\n        <source>next boot</source>\n        <translation type=\"unfinished\">next boot</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryWidget</name>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"12\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"221\"/>\n        <source>Boot entry</source>\n        <translation type=\"unfinished\">Boot entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"36\"/>\n        <source>Next boot</source>\n        <translation type=\"unfinished\">Next boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"39\"/>\n        <source>Run at next boot</source>\n        <translation>Suorita seuraavassa käynnistyksessä</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"42\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;When chosen, entry will run at next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;When chosen, entry will run at next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"140\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"143\"/>\n        <source>Current boot</source>\n        <translation type=\"unfinished\">Current boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This entry is currently booted.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This entry is currently booted.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"181\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"218\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry description, human readable name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry description, human readable name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"67\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"70\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"76\"/>\n        <source>Device path</source>\n        <translation type=\"unfinished\">Device path</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"73\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"113\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data, arguments passed to boot executable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data, arguments passed to boot executable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"178\"/>\n        <source>Boot entry index</source>\n        <translation type=\"unfinished\">Boot entry index</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"184\"/>\n        <source>Index</source>\n        <translation type=\"unfinished\">Index</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"212\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"215\"/>\n        <source>Boot entry description</source>\n        <translation type=\"unfinished\">Boot entry description</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"107\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"110\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"116\"/>\n        <source>Optional data</source>\n        <translation>Vapaavalintainen data</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootData</name>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"111\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"813\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1027\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1361\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1472\"/>\n        <source>%1: not found</source>\n        <translation>%1: ei löytynyt</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"120\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"821\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1387\"/>\n        <source>%1: failed deserialization</source>\n        <translation type=\"unfinished\">%1: failed deserialization</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Error loading entries</source>\n        <translation>Virhe sisällön lataamisessa</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Failed to load some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation type=\"unfinished\">Failed to load some EFI Boot Manager entries:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Error saving entries</source>\n        <translation>Virhe sisällön tallentamisessa</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Entry %1(%2): duplicated index!</source>\n        <translation type=\"unfinished\">Entry %1(%2): duplicated index!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"389\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"419\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"458\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"479\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"487\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"516\"/>\n        <source>Error saving %1</source>\n        <translation>Virhe tallennettaessa %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"407\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"470\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"504\"/>\n        <source>Error removing %1</source>\n        <translation>Virhe poistettaessa %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Error importing boot configuration</source>\n        <translation type=\"unfinished\">Error importing boot configuration</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <source>Couldn&apos;t open selected file (%1).</source>\n        <translation type=\"unfinished\">Couldn&apos;t open selected file (%1).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <source>Parser failed: %1</source>\n        <translation type=\"unfinished\">Parser failed: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <source>Invalid _Type: %1</source>\n        <translation type=\"unfinished\">Invalid _Type: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <source>Error exporting boot configuration</source>\n        <translation type=\"unfinished\">Error exporting boot configuration</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <source>Couldn&apos;t open selected file (%1): %2.</source>\n        <translation type=\"unfinished\">Couldn&apos;t open selected file (%1): %2.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <source>Couldn&apos;t write into file (%1): %2.</source>\n        <translation type=\"unfinished\">Couldn&apos;t write into file (%1): %2.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Error dumping raw EFI data</source>\n        <translation type=\"unfinished\">Error dumping raw EFI data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Failed to dump some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation type=\"unfinished\">Failed to dump some EFI Boot Manager entries:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"905\"/>\n        <source>Timeout</source>\n        <translation type=\"unfinished\">Timeout</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"921\"/>\n        <source>Apple boot-args</source>\n        <translation type=\"unfinished\">Apple boot-args</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"937\"/>\n        <source>Firmware actions</source>\n        <translation type=\"unfinished\">Firmware actions</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"73\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Loading EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"89\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"787\"/>\n        <source>Searching EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Searching EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"116\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"292\"/>\n        <source>Processing EFI Boot Manager entries (%1)…</source>\n        <translation type=\"unfinished\">Processing EFI Boot Manager entries (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"308\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Saving EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"333\"/>\n        <source>Searching old EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Searching old EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"374\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"416\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"447\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"476\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"484\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"491\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"513\"/>\n        <source>Saving EFI Boot Manager entries (%1)…</source>\n        <translation type=\"unfinished\">Saving EFI Boot Manager entries (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"467\"/>\n        <source>Removing old EFI Boot Manager entries (%1)…</source>\n        <translation type=\"unfinished\">Removing old EFI Boot Manager entries (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"404\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"501\"/>\n        <source>Removing EFI Boot Manager entries (%1)…</source>\n        <translation type=\"unfinished\">Removing EFI Boot Manager entries (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"94\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"338\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"792\"/>\n        <source>Couldn&apos;t load EFI Boot Manager variables</source>\n        <translation type=\"unfinished\">Couldn&apos;t load EFI Boot Manager variables</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"100\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"799\"/>\n        <source>Couldn&apos;t find any EFI Boot Manager variables</source>\n        <translation type=\"unfinished\">Couldn&apos;t find any EFI Boot Manager variables</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"529\"/>\n        <source>Importing boot configuration…</source>\n        <translation type=\"unfinished\">Importing boot configuration…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"565\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"770\"/>\n        <source>Exporting boot configuration…</source>\n        <translation type=\"unfinished\">Exporting boot configuration…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"587\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"809\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"875\"/>\n        <source>Exporting EFI Boot Manager entries (%1)…</source>\n        <translation type=\"unfinished\">Exporting EFI Boot Manager entries (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1013\"/>\n        <source>Importing boot configuration from JSON…</source>\n        <translation type=\"unfinished\">Importing boot configuration from JSON…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1032\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1366\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1477\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1531\"/>\n        <source>Importing EFI Boot Manager entries (%1)…</source>\n        <translation type=\"unfinished\">Importing EFI Boot Manager entries (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1035\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1376\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>%1: %2 expected</source>\n        <translation type=\"unfinished\">%1: %2 expected</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1043\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1048\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1053\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <source>number</source>\n        <translation type=\"unfinished\">number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1058\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1063\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1068\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1073\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1078\"/>\n        <source>bool</source>\n        <translation type=\"unfinished\">bool</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1109\"/>\n        <source>%1: unknown boot manager capability</source>\n        <translation type=\"unfinished\">%1: unknown boot manager capability</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1122\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1166\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1212\"/>\n        <source>array</source>\n        <translation type=\"unfinished\">array</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1333\"/>\n        <source>string</source>\n        <translation type=\"unfinished\">string</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1156\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1192\"/>\n        <source>%1: unknown os indication</source>\n        <translation type=\"unfinished\">%1: unknown os indication</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1083\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1235\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1264\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1290\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1309\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1328\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>object</source>\n        <translation type=\"unfinished\">object</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <source>hexadecimal number</source>\n        <translation type=\"unfinished\">hexadecimal number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1270\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1315\"/>\n        <source>%1: failed parsing</source>\n        <translation type=\"unfinished\">%1: failed parsing</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Failed to import some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation type=\"unfinished\">Failed to import some EFI Boot Manager entries:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1347\"/>\n        <source>Importing boot configuration from raw dump…</source>\n        <translation type=\"unfinished\">Importing boot configuration from raw dump…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1379\"/>\n        <source>object(raw_data: string, efi_attributes: number)</source>\n        <extracomment>Expected JSON structure, thrown as error description. raw_data and efi_attributes are field names in JSON file</extracomment>\n        <translation type=\"unfinished\">object(raw_data: string, efi_attributes: number)</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"15\"/>\n        <source>Boot</source>\n        <translation type=\"unfinished\">Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"16\"/>\n        <source>Driver</source>\n        <translation type=\"unfinished\">Driver</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"17\"/>\n        <source>System Preparation</source>\n        <translation type=\"unfinished\">System Preparation</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"18\"/>\n        <source>Platform Recovery</source>\n        <translation type=\"unfinished\">Platform Recovery</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditor</name>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"18\"/>\n        <source>EFI Boot Editor</source>\n        <translation type=\"unfinished\">EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"71\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"412\"/>\n        <source>Boot</source>\n        <translation type=\"unfinished\">Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"74\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"98\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"101\"/>\n        <source>Boot entries</source>\n        <translation type=\"unfinished\">Boot entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"77\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"104\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Boot entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Boot entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"133\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"415\"/>\n        <source>Driver</source>\n        <translation type=\"unfinished\">Driver</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"136\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"160\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"163\"/>\n        <source>Driver entries</source>\n        <translation type=\"unfinished\">Driver entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"139\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"166\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Driver entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Driver entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"195\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"418\"/>\n        <source>System Preparation</source>\n        <translation type=\"unfinished\">System Preparation</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"198\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"222\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"225\"/>\n        <source>SysPrep entries</source>\n        <translation type=\"unfinished\">SysPrep entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"201\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of SysPrep entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of SysPrep entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"257\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"421\"/>\n        <source>Platform Recovery</source>\n        <translation type=\"unfinished\">Platform Recovery</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"260\"/>\n        <source>PlatformRecovery entries</source>\n        <translation type=\"unfinished\">PlatformRecovery entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"263\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of PlatformRecovery entries (READONLY).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of PlatformRecovery entries (READONLY).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"284\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"287\"/>\n        <source>PlatformRecovery entries (READONLY)</source>\n        <translation type=\"unfinished\">PlatformRecovery entries (READONLY)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"346\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"349\"/>\n        <source>Add new entry</source>\n        <translation type=\"unfinished\">Add new entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"352\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to add new boot entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to add new boot entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"377\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"380\"/>\n        <source>Duplicate entry</source>\n        <translation type=\"unfinished\">Duplicate entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"383\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Duplicate entry&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Duplicate entry&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"408\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"411\"/>\n        <source>Remove entry</source>\n        <translation type=\"unfinished\">Remove entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"414\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to remove currently selected entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to remove currently selected entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"439\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"442\"/>\n        <source>Move entry up</source>\n        <translation type=\"unfinished\">Move entry up</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"445\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"470\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"473\"/>\n        <source>Move entry down</source>\n        <translation type=\"unfinished\">Move entry down</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"476\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"501\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"504\"/>\n        <source>Reorder entries</source>\n        <translation type=\"unfinished\">Reorder entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"507\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click here to adjust the order of all entries based on their position on the list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click here to adjust the order of all entries based on their position on the list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"599\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"608\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Global settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Global settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"602\"/>\n        <source>Global</source>\n        <translation type=\"unfinished\">Global</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"632\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"635\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"654\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"657\"/>\n        <source>Boot manager timeout</source>\n        <translation type=\"unfinished\">Boot manager timeout</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"638\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"660\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot manager timeout.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot manager timeout.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"663\"/>\n        <source>s</source>\n        <translation type=\"unfinished\">s</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"674\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"677\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"686\"/>\n        <source>Firmware details</source>\n        <translation type=\"unfinished\">Firmware details</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"680\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"689\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"683\"/>\n        <source>Firmware</source>\n        <translation type=\"unfinished\">Firmware</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"719\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"722\"/>\n        <source>Available firmware features</source>\n        <translation type=\"unfinished\">Available firmware features</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"725\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware features.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware features.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"728\"/>\n        <source>Features</source>\n        <translation type=\"unfinished\">Features</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"737\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"740\"/>\n        <source>Platform supports reporting of deferred capsule processing by creation of result variable</source>\n        <translation type=\"unfinished\">Platform supports reporting of deferred capsule processing by creation of result variable</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"743\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports reporting of deferred capsule processing by creation of result variable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports reporting of deferred capsule processing by creation of result variable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"746\"/>\n        <source>Capsule Reporting</source>\n        <translation type=\"unfinished\">Capsule Reporting</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"756\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"759\"/>\n        <source>Firmware supports timestamp based revocation</source>\n        <translation type=\"unfinished\">Firmware supports timestamp based revocation</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"762\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware supports timestamp based revocation.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware supports timestamp based revocation.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"765\"/>\n        <source>Timestamp based revocation</source>\n        <translation type=\"unfinished\">Timestamp based revocation</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"775\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"778\"/>\n        <source>Platform supports processing of Firmware Management Protocol update capsule</source>\n        <translation type=\"unfinished\">Platform supports processing of Firmware Management Protocol update capsule</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"781\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of Firmware Management Protocol update capsule.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of Firmware Management Protocol update capsule.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"784\"/>\n        <source>FMP Capsule</source>\n        <translation type=\"unfinished\">FMP Capsule</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"794\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"797\"/>\n        <source>Platform supports processing of file capsules</source>\n        <translation type=\"unfinished\">Platform supports processing of file capsules</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"800\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of file capsules.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of file capsules.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"803\"/>\n        <source>File Capsule</source>\n        <translation type=\"unfinished\">File Capsule</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"828\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"831\"/>\n        <source>Available firmware actions</source>\n        <translation type=\"unfinished\">Available firmware actions</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware actions.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware actions.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"837\"/>\n        <source>Actions</source>\n        <translation type=\"unfinished\">Actions</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"846\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"849\"/>\n        <source>Stop at a firmware user interface on the next boot</source>\n        <translation type=\"unfinished\">Stop at a firmware user interface on the next boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Stop at a firmware user interface on the next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Stop at a firmware user interface on the next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"855\"/>\n        <source>Boot to firmware UI</source>\n        <translation type=\"unfinished\">Boot to firmware UI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"862\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"865\"/>\n        <source>Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot</source>\n        <translation type=\"unfinished\">Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"871\"/>\n        <source>Collect current config</source>\n        <translation type=\"unfinished\">Collect current config</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"878\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"881\"/>\n        <source>Indicate that Platform-defined recovery should commence upon reboot</source>\n        <translation type=\"unfinished\">Indicate that Platform-defined recovery should commence upon reboot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"884\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that Platform-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that Platform-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"887\"/>\n        <source>Start Platform recovery</source>\n        <translation type=\"unfinished\">Start Platform recovery</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"894\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"897\"/>\n        <source>Indicate that OS-defined recovery should commence upon reboot</source>\n        <translation type=\"unfinished\">Indicate that OS-defined recovery should commence upon reboot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"900\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that OS-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that OS-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"903\"/>\n        <source>Start OS recovery</source>\n        <translation type=\"unfinished\">Start OS recovery</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"932\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"935\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"944\"/>\n        <source>Secure boot settings</source>\n        <translation type=\"unfinished\">Secure boot settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"938\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"947\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Secure boot settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Secure boot settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"941\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1025\"/>\n        <source>Secure Boot</source>\n        <translation type=\"unfinished\">Secure Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"978\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"981\"/>\n        <source>Defines whether the system is currently operating in Audit Mode</source>\n        <translation type=\"unfinished\">Defines whether the system is currently operating in Audit Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"984\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Audit Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Audit Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"987\"/>\n        <source>Audit Mode</source>\n        <translation type=\"unfinished\">Audit Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"997\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1000\"/>\n        <source>Defines whether the system is currently operating in Deployed Mode</source>\n        <translation type=\"unfinished\">Defines whether the system is currently operating in Deployed Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1003\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Deployed Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Deployed Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1006\"/>\n        <source>Deployed Mode</source>\n        <translation type=\"unfinished\">Deployed Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1016\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1019\"/>\n        <source>Defines whether the platform firmware is operating with Secure Boot enabled</source>\n        <translation type=\"unfinished\">Defines whether the platform firmware is operating with Secure Boot enabled</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1022\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the platform firmware is operating with Secure Boot enabled.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the platform firmware is operating with Secure Boot enabled.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1035\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1038\"/>\n        <source>Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables</source>\n        <translation type=\"unfinished\">Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1041\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1044\"/>\n        <source>Setup Mode</source>\n        <translation type=\"unfinished\">Setup Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1054\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1057\"/>\n        <source>Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys</source>\n        <translation type=\"unfinished\">Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1063\"/>\n        <source>Vendor Keys</source>\n        <translation type=\"unfinished\">Vendor Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1074\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1077\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1086\"/>\n        <source>Apple settings</source>\n        <translation type=\"unfinished\">Apple settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1080\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apple settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apple settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1083\"/>\n        <source>Apple</source>\n        <translation type=\"unfinished\">Apple</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1113\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1116\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1129\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1132\"/>\n        <source>macOS boot arguments</source>\n        <translation type=\"unfinished\">macOS boot arguments</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1119\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;macOS boot arguments.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;macOS boot arguments.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1161\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1164\"/>\n        <source>Undo stack</source>\n        <translation type=\"unfinished\">Undo stack</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1167\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo stack&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo stack&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1194\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1214\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Help menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Help menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1255\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Exit the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Exit the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1272\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apply changes to the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apply changes to the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1289\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reloads EFI data from the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reloads EFI data from the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1306\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Show information about the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Show information about the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1320\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Export current entries into JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Export current entries into JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1337\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Import EFI data from JSON dump.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Import EFI data from JSON dump.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1354\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dumps raw EFI data for debugging purposes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dumps raw EFI data for debugging purposes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1362\"/>\n        <source>&amp;Undo</source>\n        <translation type=\"unfinished\">&amp;Undo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1365\"/>\n        <source>Undo</source>\n        <translation type=\"unfinished\">Undo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1368\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1371\"/>\n        <source>Ctrl+Z</source>\n        <translation type=\"unfinished\">Ctrl+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1379\"/>\n        <source>&amp;Redo</source>\n        <translation type=\"unfinished\">&amp;Redo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1382\"/>\n        <source>Redo</source>\n        <translation type=\"unfinished\">Redo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1385\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Redo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Redo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1388\"/>\n        <source>Ctrl+Shift+Z</source>\n        <translation type=\"unfinished\">Ctrl+Shift+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1396\"/>\n        <source>Hot &amp;keys</source>\n        <translation type=\"unfinished\">Hot &amp;keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1399\"/>\n        <source>Hot Keys</source>\n        <translation type=\"unfinished\">Hot Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1402\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"593\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"596\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"605\"/>\n        <source>Global settings</source>\n        <translation type=\"unfinished\">Global settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"641\"/>\n        <source>Timeout</source>\n        <translation type=\"unfinished\">Timeout</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1122\"/>\n        <source>Boot args</source>\n        <translation type=\"unfinished\">Boot args</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1188\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1191\"/>\n        <source>File</source>\n        <translation type=\"unfinished\">File</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1197\"/>\n        <source>&amp;File</source>\n        <translation type=\"unfinished\">&amp;File</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1208\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1211\"/>\n        <source>Help</source>\n        <translation type=\"unfinished\">Help</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1217\"/>\n        <source>&amp;Help</source>\n        <translation type=\"unfinished\">&amp;Help</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1225\"/>\n        <source>&amp;Edit</source>\n        <translation type=\"unfinished\">&amp;Edit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1249\"/>\n        <source>&amp;Quit</source>\n        <translation type=\"unfinished\">&amp;Quit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1252\"/>\n        <source>Quit</source>\n        <translation type=\"unfinished\">Quit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1258\"/>\n        <source>Ctrl+Q</source>\n        <translation type=\"unfinished\">Ctrl+Q</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1266\"/>\n        <source>&amp;Save</source>\n        <translation type=\"unfinished\">&amp;Save</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1269\"/>\n        <source>Save</source>\n        <translation type=\"unfinished\">Save</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1275\"/>\n        <source>Ctrl+S</source>\n        <translation type=\"unfinished\">Ctrl+S</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1283\"/>\n        <source>&amp;Reload</source>\n        <translation type=\"unfinished\">&amp;Reload</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1286\"/>\n        <source>Reload</source>\n        <translation type=\"unfinished\">Reload</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1292\"/>\n        <source>Ctrl+R</source>\n        <translation type=\"unfinished\">Ctrl+R</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1300\"/>\n        <source>About &amp;EFI Boot Editor</source>\n        <translation type=\"unfinished\">About &amp;EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1303\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"29\"/>\n        <source>About EFI Boot Editor</source>\n        <translation type=\"unfinished\">About EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1314\"/>\n        <source>&amp;Export</source>\n        <translation type=\"unfinished\">&amp;Export</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1317\"/>\n        <source>Export</source>\n        <translation type=\"unfinished\">Export</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1323\"/>\n        <source>Ctrl+E</source>\n        <translation type=\"unfinished\">Ctrl+E</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1331\"/>\n        <source>&amp;Import</source>\n        <translation type=\"unfinished\">&amp;Import</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1334\"/>\n        <source>Import</source>\n        <translation type=\"unfinished\">Import</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1340\"/>\n        <source>Ctrl+I</source>\n        <translation type=\"unfinished\">Ctrl+I</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1348\"/>\n        <source>&amp;Dump raw EFI data</source>\n        <translation type=\"unfinished\">&amp;Dump raw EFI data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1351\"/>\n        <source>Dump raw EFI data</source>\n        <translation type=\"unfinished\">Dump raw EFI data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"26\"/>\n        <source>Working…</source>\n        <translation type=\"unfinished\">Working…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"92\"/>\n        <source>Undo %1</source>\n        <translation type=\"unfinished\">Undo %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"95\"/>\n        <source>Redo %1</source>\n        <translation type=\"unfinished\">Redo %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"137\"/>\n        <source>Are you sure you want to reload the entries?&lt;br/&gt;ALL of your changes will be lost!</source>\n        <translation type=\"unfinished\">Are you sure you want to reload the entries?&lt;br/&gt;ALL of your changes will be lost!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"162\"/>\n        <source>Are you sure you want to reorder the boot entries?&lt;br/&gt;All indexes will be overwritten!</source>\n        <translation type=\"unfinished\">Are you sure you want to reorder the boot entries?&lt;br/&gt;All indexes will be overwritten!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"221\"/>\n        <source>Are you sure you want to save?&lt;br/&gt;Your EFI configuration will be overwritten!</source>\n        <translation type=\"unfinished\">Are you sure you want to save?&lt;br/&gt;Your EFI configuration will be overwritten!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <source>Open boot configuration dump</source>\n        <translation type=\"unfinished\">Open boot configuration dump</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>JSON documents (*.json)</source>\n        <translation type=\"unfinished\">JSON documents (*.json)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <source>Save boot configuration dump</source>\n        <translation type=\"unfinished\">Save boot configuration dump</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>Save raw EFI dump</source>\n        <translation type=\"unfinished\">Save raw EFI dump</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"31\"/>\n        <source>&lt;h1&gt;EFI Boot Editor&lt;/h1&gt;&lt;p&gt;Version &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Boot Editor for (U)EFI based systems.&lt;/p&gt;</source>\n        <extracomment>About dialog</extracomment>\n        <translation type=\"unfinished\">&lt;h1&gt;EFI Boot Editor&lt;/h1&gt;&lt;p&gt;Version &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Boot Editor for (U)EFI based systems.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"45\"/>\n        <source>&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;Website&lt;/a&gt;&lt;/p&gt;&lt;p&gt;The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.&lt;/p&gt;&lt;p&gt;License: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL Version 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;On Linux uses &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; for EFI variables access.&lt;/p&gt;&lt;p&gt;Uses Tango Icons as fallback icons.&lt;/p&gt;</source>\n        <extracomment>About dialog details</extracomment>\n        <translation type=\"unfinished\">&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;Website&lt;/a&gt;&lt;/p&gt;&lt;p&gt;The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.&lt;/p&gt;&lt;p&gt;License: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL Version 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;On Linux uses &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; for EFI variables access.&lt;/p&gt;&lt;p&gt;Uses Tango Icons as fallback icons.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"330\"/>\n        <source>Reorder %1 entries</source>\n        <translation type=\"unfinished\">Reorder %1 entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"453\"/>\n        <source>Are you sure you want to quit?</source>\n        <translation type=\"unfinished\">Are you sure you want to quit?</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"123\"/>\n        <source>EFI support required</source>\n        <translation type=\"unfinished\">EFI support required</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditorCLI</name>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"13\"/>\n        <source>Boot Editor for (U)EFI based systems.</source>\n        <translation type=\"unfinished\">Boot Editor for (U)EFI based systems.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <source>Export configuration.</source>\n        <translation type=\"unfinished\">Export configuration.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>FILE</source>\n        <translation type=\"unfinished\">FILE</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <source>Dump raw EFI data.</source>\n        <translation type=\"unfinished\">Dump raw EFI data.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>Import configuration from JSON (either from export or raw dump).</source>\n        <translation type=\"unfinished\">Import configuration from JSON (either from export or raw dump).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"19\"/>\n        <source>Force import, don&apos;t ask for confirmation.</source>\n        <translation type=\"unfinished\">Force import, don&apos;t ask for confirmation.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"26\"/>\n        <source>EFI support required</source>\n        <translation type=\"unfinished\">EFI support required</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"45\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Loading EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"47\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"57\"/>\n        <source>Exporting boot configuration…</source>\n        <translation type=\"unfinished\">Exporting boot configuration…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"67\"/>\n        <source>Importing boot configuration…</source>\n        <translation type=\"unfinished\">Importing boot configuration…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Loaded %0 %1 entries</source>\n        <translation type=\"unfinished\">Loaded %0 %1 entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <source>Boot</source>\n        <translation type=\"unfinished\">Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <source>Driver</source>\n        <translation type=\"unfinished\">Driver</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <source>System Preparation</source>\n        <translation type=\"unfinished\">System Preparation</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Hot Key</source>\n        <translation type=\"unfinished\">Hot Key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"78\"/>\n        <source>Are you sure you want to save?\nYour EFI configuration will be overwritten!</source>\n        <translation type=\"unfinished\">Are you sure you want to save?\nYour EFI configuration will be overwritten!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"86\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Saving EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"98\"/>\n        <source>ERROR: %0! %1</source>\n        <translation type=\"unfinished\">ERROR: %0! %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"114\"/>\n        <source>Finished</source>\n        <translation type=\"unfinished\">Finished</translation>\n    </message>\n</context>\n<context>\n    <name>EFIKeySequenceEdit</name>\n    <message>\n        <location filename=\"../src/efikeysequenceedit.cpp\" line=\"109\"/>\n        <source>Press hot key</source>\n        <translation type=\"unfinished\">Press hot key</translation>\n    </message>\n</context>\n<context>\n    <name>FilePathDialog</name>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"12\"/>\n        <source>File path editor</source>\n        <translation type=\"unfinished\">File path editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"47\"/>\n        <source>PCI</source>\n        <translation type=\"unfinished\">PCI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"80\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"86\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"196\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"202\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"218\"/>\n        <source>Function</source>\n        <translation type=\"unfinished\">Function</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"121\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"127\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"143\"/>\n        <source>Device</source>\n        <translation type=\"unfinished\">Device</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"721\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"727\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"742\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"835\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"841\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"856\"/>\n        <source>HID</source>\n        <translation type=\"unfinished\">HID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"761\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"767\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"782\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"896\"/>\n        <source>UID</source>\n        <translation type=\"unfinished\">UID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1813\"/>\n        <source>USB</source>\n        <translation type=\"unfinished\">USB</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1819\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1893\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1909\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3688\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3710\"/>\n        <source>Interface</source>\n        <translation type=\"unfinished\">Interface</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7442\"/>\n        <source>Vendor</source>\n        <translation type=\"unfinished\">Vendor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7445\"/>\n        <source>Vendor settings</source>\n        <translation type=\"unfinished\">Vendor settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7448\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1778\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1793\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5824\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6348\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7117\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7546\"/>\n        <source>GUID</source>\n        <translation type=\"unfinished\">GUID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5539\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7587\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7850\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7853\"/>\n        <source>Data format</source>\n        <translation type=\"unfinished\">Data format</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5542\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7590\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7856\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5546\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5869\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7860\"/>\n        <source>BASE64</source>\n        <translation type=\"unfinished\">BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1168\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5551\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5874\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7865\"/>\n        <source>UTF-16</source>\n        <translation type=\"unfinished\">UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1173\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5556\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7604\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7870\"/>\n        <source>UTF-8</source>\n        <translation type=\"unfinished\">UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5561\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7875\"/>\n        <source>HEX</source>\n        <translation type=\"unfinished\">HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5523\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5901\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7888\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7891\"/>\n        <source>Data</source>\n        <translation type=\"unfinished\">Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7894\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7565\"/>\n        <source>Vendor data</source>\n        <translation type=\"unfinished\">Vendor data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7481\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7757\"/>\n        <source>Type</source>\n        <translation type=\"unfinished\">Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7478\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7500\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7504\"/>\n        <source>HW</source>\n        <translation type=\"unfinished\">HW</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7509\"/>\n        <source>MSG</source>\n        <translation type=\"unfinished\">MSG</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7514\"/>\n        <source>MEDIA</source>\n        <translation type=\"unfinished\">MEDIA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2292\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2298\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2313\"/>\n        <source>MAC</source>\n        <translation type=\"unfinished\">MAC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2265\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;MAC settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;MAC settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2374\"/>\n        <source>IPv4</source>\n        <translation type=\"unfinished\">IPv4</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2380\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv4 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv4 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2569\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2591\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2925\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2931\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2947\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4110\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4116\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4132\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6616\"/>\n        <source>Protocol</source>\n        <translation type=\"unfinished\">Protocol</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3003\"/>\n        <source>Static</source>\n        <translation type=\"unfinished\">Static</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2692\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Subnet mask.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Subnet mask.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2730\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5479\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5486\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5503\"/>\n        <source>IPv6</source>\n        <translation type=\"unfinished\">IPv6</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2736\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv6 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv6 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3008\"/>\n        <source>Stateless auto-configuration</source>\n        <translation type=\"unfinished\">Stateless auto-configuration</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3013\"/>\n        <source>Stateful auto-configuration</source>\n        <translation type=\"unfinished\">Stateful auto-configuration</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3920\"/>\n        <source>SATA</source>\n        <translation type=\"unfinished\">SATA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SATA settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SATA settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1387\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1393\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1409\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1658\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1664\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1679\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3900\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4035\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4041\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4057\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4191\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4197\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4212\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4496\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4502\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4610\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4616\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4988\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5009\"/>\n        <source>LUN</source>\n        <translation type=\"unfinished\">LUN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4885\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4901\"/>\n        <source>URI</source>\n        <translation type=\"unfinished\">URI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6105\"/>\n        <source>Disk</source>\n        <translation type=\"unfinished\">Disk</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6102\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6123\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6126\"/>\n        <source>Choose disk</source>\n        <translation type=\"unfinished\">Choose disk</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6129\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Choose disk from discovered in the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Choose disk from discovered in the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6133\"/>\n        <source>Custom</source>\n        <translation type=\"unfinished\">Custom</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6147\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6150\"/>\n        <source>Reload drives</source>\n        <translation type=\"unfinished\">Reload drives</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reload system drives list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reload system drives list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6343\"/>\n        <source>MBR</source>\n        <translation type=\"unfinished\">MBR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6177\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6183\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6199\"/>\n        <source>Partition</source>\n        <translation type=\"unfinished\">Partition</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6720\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6741\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6797\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6812\"/>\n        <source>Name</source>\n        <translation type=\"unfinished\">Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7176\"/>\n        <source>BIOS Boot Specification</source>\n        <translation type=\"unfinished\">BIOS Boot Specification</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7405\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7411\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7427\"/>\n        <source>Description</source>\n        <translation type=\"unfinished\">Description</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7639\"/>\n        <source>End</source>\n        <translation type=\"unfinished\">End</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7669\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7672\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7678\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7797\"/>\n        <source>Sub-Type</source>\n        <translation type=\"unfinished\">Sub-Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7675\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7697\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7701\"/>\n        <source>End This Instance</source>\n        <translation type=\"unfinished\">End This Instance</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7706\"/>\n        <source>End Entire</source>\n        <translation type=\"unfinished\">End Entire</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7718\"/>\n        <source>Unknown</source>\n        <translation type=\"unfinished\">Unknown</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"50\"/>\n        <source>The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.</source>\n        <translation type=\"unfinished\">The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"53\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"77\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"99\"/>\n        <source>PCI Function Number.</source>\n        <translation type=\"unfinished\">PCI Function Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"83\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"105\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Function Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Function Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"118\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"140\"/>\n        <source>PCI Device Number.</source>\n        <translation type=\"unfinished\">PCI Device Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"124\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Device Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Device Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"163\"/>\n        <source>PCCARD</source>\n        <translation type=\"unfinished\">PCCARD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"166\"/>\n        <source>PCCARD Settings.</source>\n        <translation type=\"unfinished\">PCCARD Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCCARD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCCARD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"193\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"215\"/>\n        <source>Function Number (0 = First Function).</source>\n        <translation type=\"unfinished\">Function Number (0 = First Function).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"199\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"221\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Function Number (0 = First Function).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Function Number (0 = First Function).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"238\"/>\n        <source>Memory Mapped</source>\n        <translation type=\"unfinished\">Memory Mapped</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"241\"/>\n        <source>Memory Mapped Settings.</source>\n        <translation type=\"unfinished\">Memory Mapped Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Memory Mapped Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Memory Mapped Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"268\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"290\"/>\n        <source>The type of memory to allocate.</source>\n        <translation type=\"unfinished\">The type of memory to allocate.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"271\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"293\"/>\n        <source>Memory Type</source>\n        <translation type=\"unfinished\">Memory Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"274\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"296\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The type of memory to allocate.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The type of memory to allocate.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"300\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1584\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1738\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1753\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3145\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3160\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4416\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4437\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6868\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6883\"/>\n        <source>Reserved</source>\n        <translation type=\"unfinished\">Reserved</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"305\"/>\n        <source>Loader Code</source>\n        <translation type=\"unfinished\">Loader Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"310\"/>\n        <source>Loader Data</source>\n        <translation type=\"unfinished\">Loader Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"315\"/>\n        <source>Boot Services Code</source>\n        <translation type=\"unfinished\">Boot Services Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"320\"/>\n        <source>Boot Services Data</source>\n        <translation type=\"unfinished\">Boot Services Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"325\"/>\n        <source>Runtime Services Code</source>\n        <translation type=\"unfinished\">Runtime Services Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"330\"/>\n        <source>Runtime Services Data</source>\n        <translation type=\"unfinished\">Runtime Services Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"335\"/>\n        <source>Conventional</source>\n        <translation type=\"unfinished\">Conventional</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"340\"/>\n        <source>Unusable</source>\n        <translation type=\"unfinished\">Unusable</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"345\"/>\n        <source>ACPI Reclaim</source>\n        <translation type=\"unfinished\">ACPI Reclaim</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"350\"/>\n        <source>ACPI Memory NVS</source>\n        <translation type=\"unfinished\">ACPI Memory NVS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"355\"/>\n        <source>Memory Mapped IO</source>\n        <translation type=\"unfinished\">Memory Mapped IO</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"360\"/>\n        <source>Memory Mapped IO Port Space</source>\n        <translation type=\"unfinished\">Memory Mapped IO Port Space</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"365\"/>\n        <source>Pal Code</source>\n        <translation type=\"unfinished\">Pal Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"370\"/>\n        <source>Persistent</source>\n        <translation type=\"unfinished\">Persistent</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"375\"/>\n        <source>Unaccepted</source>\n        <translation type=\"unfinished\">Unaccepted</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"383\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7013\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7034\"/>\n        <source>Starting Memory Address.</source>\n        <translation type=\"unfinished\">Starting Memory Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"386\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"407\"/>\n        <source>Start Address</source>\n        <translation type=\"unfinished\">Start Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"389\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7019\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7040\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"423\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7053\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7074\"/>\n        <source>Ending Memory Address.</source>\n        <translation type=\"unfinished\">Ending Memory Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"426\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"432\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"447\"/>\n        <source>End Address</source>\n        <translation type=\"unfinished\">End Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"429\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7080\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ending Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ending Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"467\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"522\"/>\n        <source>Controller</source>\n        <translation type=\"unfinished\">Controller</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"470\"/>\n        <source>Controller settings.</source>\n        <translation type=\"unfinished\">Controller settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"473\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"519\"/>\n        <source>Controller number.</source>\n        <translation type=\"unfinished\">Controller number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"525\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"542\"/>\n        <source>BMC</source>\n        <translation type=\"unfinished\">BMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"545\"/>\n        <source>The Device Path for a Baseboard Management Controller (BMC) host interface.</source>\n        <translation type=\"unfinished\">The Device Path for a Baseboard Management Controller (BMC) host interface.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"548\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for a Baseboard Management Controller (BMC) host interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for a Baseboard Management Controller (BMC) host interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"602\"/>\n        <source>The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.</source>\n        <translation type=\"unfinished\">The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"579\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"589\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2332\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2354\"/>\n        <source>Interface Type</source>\n        <translation type=\"unfinished\">Interface Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"582\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"612\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"625\"/>\n        <source>Keyboard Controller Style</source>\n        <translation type=\"unfinished\">Keyboard Controller Style</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"630\"/>\n        <source>Server Management Interface Chip</source>\n        <translation type=\"unfinished\">Server Management Interface Chip</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"635\"/>\n        <source>Block Transfer</source>\n        <translation type=\"unfinished\">Block Transfer</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"643\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"664\"/>\n        <source>Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.</source>\n        <translation type=\"unfinished\">Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"667\"/>\n        <source>Base Address</source>\n        <translation type=\"unfinished\">Base Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"670\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"688\"/>\n        <source>ACPI</source>\n        <translation type=\"unfinished\">ACPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"805\"/>\n        <source>This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.</source>\n        <translation type=\"unfinished\">This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"808\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"718\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"739\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"832\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"853\"/>\n        <source>Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.</source>\n        <translation type=\"unfinished\">Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"724\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"745\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"838\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"859\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"779\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"872\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"893\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.</source>\n        <translation type=\"unfinished\">Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"764\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"785\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"899\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"802\"/>\n        <source>Expanded</source>\n        <translation type=\"unfinished\">Expanded</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"912\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"933\"/>\n        <source>Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.</source>\n        <translation type=\"unfinished\">Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"915\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"921\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"936\"/>\n        <source>CID</source>\n        <translation type=\"unfinished\">CID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"918\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"939\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"952\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"974\"/>\n        <source>Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.</source>\n        <translation type=\"unfinished\">Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"955\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"961\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"977\"/>\n        <source>HIDSTR</source>\n        <translation type=\"unfinished\">HIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"958\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"980\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"987\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1009\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.</source>\n        <translation type=\"unfinished\">Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"990\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"996\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1012\"/>\n        <source>UIDSTR</source>\n        <translation type=\"unfinished\">UIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"993\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1015\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1044\"/>\n        <source>Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.</source>\n        <translation type=\"unfinished\">Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1025\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1031\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1047\"/>\n        <source>CIDSTR</source>\n        <translation type=\"unfinished\">CIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1028\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1050\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1061\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1094\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1100\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1115\"/>\n        <source>ADR</source>\n        <translation type=\"unfinished\">ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1064\"/>\n        <source>The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.</source>\n        <translation type=\"unfinished\">The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1067\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1091\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1112\"/>\n        <source>ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required</source>\n        <translation type=\"unfinished\">ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1097\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1118\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1131\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1192\"/>\n        <source>This device path may optionally contain more than one ADR entry.</source>\n        <translation type=\"unfinished\">This device path may optionally contain more than one ADR entry.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1195\"/>\n        <source>Additional ADR</source>\n        <translation type=\"unfinished\">Additional ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1198\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path may optionally contain more than one ADR entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path may optionally contain more than one ADR entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1153\"/>\n        <source>Additional ADR format.</source>\n        <translation type=\"unfinished\">Additional ADR format.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1156\"/>\n        <source>Additional ADR format</source>\n        <translation type=\"unfinished\">Additional ADR format</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1159\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Additional ADR format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Additional ADR format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1209\"/>\n        <source>NVDIMM</source>\n        <translation type=\"unfinished\">NVDIMM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1212\"/>\n        <source>This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.</source>\n        <translation type=\"unfinished\">This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1260\"/>\n        <source>NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.</source>\n        <translation type=\"unfinished\">NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1242\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1248\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1263\"/>\n        <source>NFIT Device Handle</source>\n        <translation type=\"unfinished\">NFIT Device Handle</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1245\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1284\"/>\n        <source>ATAPI</source>\n        <translation type=\"unfinished\">ATAPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1287\"/>\n        <source>ATAPI Settings.</source>\n        <translation type=\"unfinished\">ATAPI Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1336\"/>\n        <source>Set to zero for primary or one for secondary.</source>\n        <translation type=\"unfinished\">Set to zero for primary or one for secondary.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1317\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1323\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1339\"/>\n        <source>Primary</source>\n        <translation type=\"unfinished\">Primary</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1320\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1342\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for primary or one for secondary.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for primary or one for secondary.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1349\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1371\"/>\n        <source>Set to zero for master or one for slave mode.</source>\n        <translation type=\"unfinished\">Set to zero for master or one for slave mode.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1374\"/>\n        <source>Slave</source>\n        <translation type=\"unfinished\">Slave</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1377\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for master or one for slave mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for master or one for slave mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1384\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1406\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4054\"/>\n        <source>Logical Unit Number.</source>\n        <translation type=\"unfinished\">Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1390\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1412\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4038\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1429\"/>\n        <source>SCSI</source>\n        <translation type=\"unfinished\">SCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1432\"/>\n        <source>SCSI Settings.</source>\n        <translation type=\"unfinished\">SCSI Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1435\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1481\"/>\n        <source>Target ID on the SCSI bus (PUN).</source>\n        <translation type=\"unfinished\">Target ID on the SCSI bus (PUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1962\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1984\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4969\"/>\n        <source>Target ID</source>\n        <translation type=\"unfinished\">Target ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1465\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1487\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the SCSI bus (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the SCSI bus (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4985\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5006\"/>\n        <source>Logical Unit Number (LUN).</source>\n        <translation type=\"unfinished\">Logical Unit Number (LUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5012\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1545\"/>\n        <source>Fibre Channel</source>\n        <translation type=\"unfinished\">Fibre Channel</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1548\"/>\n        <source>Fibre Channel Settings</source>\n        <translation type=\"unfinished\">Fibre Channel Settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1551\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1596\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1750\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4434\"/>\n        <source>Reserved.</source>\n        <translation type=\"unfinished\">Reserved.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1581\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1602\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1756\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3142\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4419\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1615\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1636\"/>\n        <source>Fibre Channel World Wide Name.</source>\n        <translation type=\"unfinished\">Fibre Channel World Wide Name.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1624\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1639\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4456\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4477\"/>\n        <source>World Wide Name</source>\n        <translation type=\"unfinished\">World Wide Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1621\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1642\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel World Wide Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel World Wide Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1676\"/>\n        <source>Fibre Channel Logical Unit Number.</source>\n        <translation type=\"unfinished\">Fibre Channel Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1661\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1682\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1699\"/>\n        <source>Firewire</source>\n        <translation type=\"unfinished\">Firewire</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1702\"/>\n        <source>Firewire Settings.</source>\n        <translation type=\"unfinished\">Firewire Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1705\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firewire Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firewire Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1790\"/>\n        <source>1394 Global Unique ID (GUID)</source>\n        <translation type=\"unfinished\">1394 Global Unique ID (GUID)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1796\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 Global Unique ID (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 Global Unique ID (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1816\"/>\n        <source>USB settings.</source>\n        <translation type=\"unfinished\">USB settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1865\"/>\n        <source>USB Parent Port Number.</source>\n        <translation type=\"unfinished\">USB Parent Port Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1852\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1868\"/>\n        <source>Parent Port</source>\n        <translation type=\"unfinished\">Parent Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1871\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Parent Port Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Parent Port Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1906\"/>\n        <source>USB Interface Number.</source>\n        <translation type=\"unfinished\">USB Interface Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1912\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1929\"/>\n        <source>I2O</source>\n        <translation type=\"unfinished\">I2O</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1932\"/>\n        <source>I2O Settings</source>\n        <translation type=\"unfinished\">I2O Settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1935\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;I2O Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;I2O Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1981\"/>\n        <source>Target ID (TID) for a device.</source>\n        <translation type=\"unfinished\">Target ID (TID) for a device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1965\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1987\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID (TID) for a device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID (TID) for a device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2004\"/>\n        <source>InfiniBand</source>\n        <translation type=\"unfinished\">InfiniBand</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2007\"/>\n        <source>InfiniBand Settings.</source>\n        <translation type=\"unfinished\">InfiniBand Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2010\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;InfiniBand Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;InfiniBand Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2034\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2067\"/>\n        <source>Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.</source>\n        <translation type=\"unfinished\">Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2043\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2055\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2076\"/>\n        <source>Resource Flags</source>\n        <translation type=\"unfinished\">Resource Flags</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2046\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2079\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2098\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2119\"/>\n        <source>128-bit Global Identifier for remote fabric port</source>\n        <translation type=\"unfinished\">128-bit Global Identifier for remote fabric port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2101\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2122\"/>\n        <source>PORT GID</source>\n        <translation type=\"unfinished\">PORT GID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2104\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2125\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;128-bit Global Identifier for remote fabric port&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;128-bit Global Identifier for remote fabric port&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2135\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2156\"/>\n        <source>64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)</source>\n        <translation type=\"unfinished\">64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2138\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2144\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2159\"/>\n        <source>IOC GUID/Service ID</source>\n        <translation type=\"unfinished\">IOC GUID/Service ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2141\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2162\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2175\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2196\"/>\n        <source>64-bit persistent ID of remote IOC port.</source>\n        <translation type=\"unfinished\">64-bit persistent ID of remote IOC port.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2184\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2199\"/>\n        <source>Target Port ID</source>\n        <translation type=\"unfinished\">Target Port ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2181\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote IOC port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote IOC port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2236\"/>\n        <source>64-bit persistent ID of remote device.</source>\n        <translation type=\"unfinished\">64-bit persistent ID of remote device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2239\"/>\n        <source>Device ID</source>\n        <translation type=\"unfinished\">Device ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2259\"/>\n        <source>MAC Address</source>\n        <translation type=\"unfinished\">MAC Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2262\"/>\n        <source>MAC settings.</source>\n        <translation type=\"unfinished\">MAC settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2289\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2310\"/>\n        <source>The MAC address for a network interface padded with 0s.</source>\n        <translation type=\"unfinished\">The MAC address for a network interface padded with 0s.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2295\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2316\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The MAC address for a network interface padded with 0s.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The MAC address for a network interface padded with 0s.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2329\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2351\"/>\n        <source>Network interface type (i.e., 802.3, FDDI). See RFC 3232.</source>\n        <translation type=\"unfinished\">Network interface type (i.e., 802.3, FDDI). See RFC 3232.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2357\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network interface type (i.e., 802.3, FDDI). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network interface type (i.e., 802.3, FDDI). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2377\"/>\n        <source>IPv4 settings.</source>\n        <translation type=\"unfinished\">IPv4 settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2425\"/>\n        <source>The local IPv4 address.</source>\n        <translation type=\"unfinished\">The local IPv4 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2407\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2763\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2784\"/>\n        <source>Local IP Address</source>\n        <translation type=\"unfinished\">Local IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2431\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2465\"/>\n        <source>The remote IPv4 address.</source>\n        <translation type=\"unfinished\">The remote IPv4 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2447\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2824\"/>\n        <source>Remote IP Address</source>\n        <translation type=\"unfinished\">Remote IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2471\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2862\"/>\n        <source>The local port number.</source>\n        <translation type=\"unfinished\">The local port number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2487\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2865\"/>\n        <source>Local Port</source>\n        <translation type=\"unfinished\">Local Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2490\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2547\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2903\"/>\n        <source>The remote port number.</source>\n        <translation type=\"unfinished\">The remote port number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2550\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2906\"/>\n        <source>Remote Port</source>\n        <translation type=\"unfinished\">Remote Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2553\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2909\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2566\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2588\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2922\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2944\"/>\n        <source>The network protocol (i.e., UDP, TCP). See RFC 3232.</source>\n        <translation type=\"unfinished\">The network protocol (i.e., UDP, TCP). See RFC 3232.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2928\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2950\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The network protocol (i.e., UDP, TCP). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The network protocol (i.e., UDP, TCP). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2631\"/>\n        <source>0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.</source>\n        <translation type=\"unfinished\">0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2635\"/>\n        <source>Static IP Address</source>\n        <translation type=\"unfinished\">Static IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2667\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3083\"/>\n        <source>The Gateway IP Address.</source>\n        <translation type=\"unfinished\">The Gateway IP Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3071\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3086\"/>\n        <source>Gateway IP Address</source>\n        <translation type=\"unfinished\">Gateway IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2673\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Gateway IP Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Gateway IP Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2686\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2707\"/>\n        <source>Subnet mask.</source>\n        <translation type=\"unfinished\">Subnet mask.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2689\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2695\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2710\"/>\n        <source>Subnet Mask</source>\n        <translation type=\"unfinished\">Subnet Mask</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2733\"/>\n        <source>IPv6 settings.</source>\n        <translation type=\"unfinished\">IPv6 settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2760\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2781\"/>\n        <source>The local IPv6 address.</source>\n        <translation type=\"unfinished\">The local IPv6 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2787\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2821\"/>\n        <source>The remote IPv6 address.</source>\n        <translation type=\"unfinished\">The remote IPv6 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2963\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2989\"/>\n        <source>0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.</source>\n        <translation type=\"unfinished\">0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2976\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2994\"/>\n        <source>IP Address Origin</source>\n        <translation type=\"unfinished\">IP Address Origin</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2971\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2997\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3021\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3043\"/>\n        <source>The Prefix Length.</source>\n        <translation type=\"unfinished\">The Prefix Length.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3024\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3030\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3046\"/>\n        <source>Prefix Length</source>\n        <translation type=\"unfinished\">Prefix Length</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3027\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3049\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Prefix Length.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Prefix Length.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3106\"/>\n        <source>UART</source>\n        <translation type=\"unfinished\">UART</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3109\"/>\n        <source>UART Settings.</source>\n        <translation type=\"unfinished\">UART Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3112\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3176\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3197\"/>\n        <source>The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.</source>\n        <translation type=\"unfinished\">The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3179\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3185\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3200\"/>\n        <source>Baud Rate</source>\n        <translation type=\"unfinished\">Baud Rate</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3182\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3203\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3216\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3238\"/>\n        <source>The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.</source>\n        <translation type=\"unfinished\">The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3219\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3225\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3241\"/>\n        <source>Data Bits</source>\n        <translation type=\"unfinished\">Data Bits</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3222\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3257\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3291\"/>\n        <source>The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.</source>\n        <translation type=\"unfinished\">The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3266\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3300\"/>\n        <source>Parity</source>\n        <translation type=\"unfinished\">Parity</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3303\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3313\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3394\"/>\n        <source>Default</source>\n        <translation type=\"unfinished\">Default</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3318\"/>\n        <source>No</source>\n        <translation type=\"unfinished\">No</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3323\"/>\n        <source>Even</source>\n        <translation type=\"unfinished\">Even</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3328\"/>\n        <source>Odd</source>\n        <translation type=\"unfinished\">Odd</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3333\"/>\n        <source>Mark</source>\n        <translation type=\"unfinished\">Mark</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3338\"/>\n        <source>Space</source>\n        <translation type=\"unfinished\">Space</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3346\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3376\"/>\n        <source>The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.</source>\n        <translation type=\"unfinished\">The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3353\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3363\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3383\"/>\n        <source>Stop Bits</source>\n        <translation type=\"unfinished\">Stop Bits</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3356\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3399\"/>\n        <source>1</source>\n        <translation type=\"unfinished\">1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3404\"/>\n        <source>1.5</source>\n        <translation type=\"unfinished\">1.5</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3409\"/>\n        <source>2</source>\n        <translation type=\"unfinished\">2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3421\"/>\n        <source>USB Class</source>\n        <translation type=\"unfinished\">USB Class</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3424\"/>\n        <source>USB Class Settings.</source>\n        <translation type=\"unfinished\">USB Class Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3427\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Class Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Class Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3451\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3472\"/>\n        <source>Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.</source>\n        <translation type=\"unfinished\">Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3454\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3460\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3475\"/>\n        <source>Vendor ID</source>\n        <translation type=\"unfinished\">Vendor ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3457\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3478\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3491\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3512\"/>\n        <source>Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.</source>\n        <translation type=\"unfinished\">Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3515\"/>\n        <source>Product ID</source>\n        <translation type=\"unfinished\">Product ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3518\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3552\"/>\n        <source>The class code assigned by the USB-IF. A value of 0xFF will match any class code.</source>\n        <translation type=\"unfinished\">The class code assigned by the USB-IF. A value of 0xFF will match any class code.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3540\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3555\"/>\n        <source>Device Class</source>\n        <translation type=\"unfinished\">Device Class</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3537\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3558\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The class code assigned by the USB-IF. A value of 0xFF will match any class code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The class code assigned by the USB-IF. A value of 0xFF will match any class code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3592\"/>\n        <source>The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.</source>\n        <translation type=\"unfinished\">The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3574\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3595\"/>\n        <source>Device Subclass</source>\n        <translation type=\"unfinished\">Device Subclass</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3632\"/>\n        <source>The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.</source>\n        <translation type=\"unfinished\">The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3635\"/>\n        <source>Device Protocol</source>\n        <translation type=\"unfinished\">Device Protocol</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3617\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3655\"/>\n        <source>USB WWID</source>\n        <translation type=\"unfinished\">USB WWID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3658\"/>\n        <source>This device path describes a USB device using its serial number.</source>\n        <translation type=\"unfinished\">This device path describes a USB device using its serial number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3661\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a USB device using its serial number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a USB device using its serial number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3685\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3707\"/>\n        <source>USB interface Number.</source>\n        <translation type=\"unfinished\">USB interface Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3747\"/>\n        <source>USB vendor id of the device.</source>\n        <translation type=\"unfinished\">USB vendor id of the device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3750\"/>\n        <source>Device Vendor Id</source>\n        <translation type=\"unfinished\">Device Vendor Id</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3753\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB vendor id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB vendor id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3787\"/>\n        <source>USB product id of the device.</source>\n        <translation type=\"unfinished\">USB product id of the device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3790\"/>\n        <source>Device Product Id</source>\n        <translation type=\"unfinished\">Device Product Id</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3793\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB product id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB product id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3828\"/>\n        <source>Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).</source>\n        <translation type=\"unfinished\">Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3815\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3831\"/>\n        <source>Serial Number</source>\n        <translation type=\"unfinished\">Serial Number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3812\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3845\"/>\n        <source>Device Logical Unit</source>\n        <translation type=\"unfinished\">Device Logical Unit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3848\"/>\n        <source>Device Logical Unit Settings.</source>\n        <translation type=\"unfinished\">Device Logical Unit Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3851\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device Logical Unit Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device Logical Unit Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3897\"/>\n        <source>Logical Unit Number for the interface.</source>\n        <translation type=\"unfinished\">Logical Unit Number for the interface.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3903\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number for the interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number for the interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3923\"/>\n        <source>SATA settings.</source>\n        <translation type=\"unfinished\">SATA settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3950\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3972\"/>\n        <source>The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.</source>\n        <translation type=\"unfinished\">The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3953\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3975\"/>\n        <source>HBA Port</source>\n        <translation type=\"unfinished\">HBA Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3956\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3978\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4013\"/>\n        <source>The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.</source>\n        <translation type=\"unfinished\">The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4000\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4016\"/>\n        <source>Port Multiplier Port</source>\n        <translation type=\"unfinished\">Port Multiplier Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3997\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4019\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4077\"/>\n        <source>iSCSI</source>\n        <translation type=\"unfinished\">iSCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4080\"/>\n        <source>iSCSI Settings.</source>\n        <translation type=\"unfinished\">iSCSI Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4083\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4129\"/>\n        <source>Network Protocol (0 = TCP, 1+ = reserved).</source>\n        <translation type=\"unfinished\">Network Protocol (0 = TCP, 1+ = reserved).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4113\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network Protocol (0 = TCP, 1+ = reserved).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network Protocol (0 = TCP, 1+ = reserved).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4148\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4169\"/>\n        <source>iSCSI Login Options.</source>\n        <translation type=\"unfinished\">iSCSI Login Options.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4151\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4172\"/>\n        <source>Options</source>\n        <translation type=\"unfinished\">Options</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4154\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4175\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Login Options.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Login Options.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4188\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4209\"/>\n        <source>8 byte array containing the iSCSI Logical Unit Number.</source>\n        <translation type=\"unfinished\">8 byte array containing the iSCSI Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4194\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing the iSCSI Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing the iSCSI Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4228\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4250\"/>\n        <source>iSCSI Target Portal group tag the initiator intends to establish a session with.</source>\n        <translation type=\"unfinished\">iSCSI Target Portal group tag the initiator intends to establish a session with.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4231\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4253\"/>\n        <source>Target Portal Group</source>\n        <translation type=\"unfinished\">Target Portal Group</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4234\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4256\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Target Portal group tag the initiator intends to establish a session with.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Target Portal group tag the initiator intends to establish a session with.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4291\"/>\n        <source>iSCSI NodeTarget Name.</source>\n        <translation type=\"unfinished\">iSCSI NodeTarget Name.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4272\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4294\"/>\n        <source>Target Name</source>\n        <translation type=\"unfinished\">Target Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4275\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4297\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI NodeTarget Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI NodeTarget Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4308\"/>\n        <source>VLAN</source>\n        <translation type=\"unfinished\">VLAN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4311\"/>\n        <source>VLAN Settings.</source>\n        <translation type=\"unfinished\">VLAN Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4314\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4360\"/>\n        <source>VLAN identifier (0-4094).</source>\n        <translation type=\"unfinished\">VLAN identifier (0-4094).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4341\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4347\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4363\"/>\n        <source>Vlan ID</source>\n        <translation type=\"unfinished\">Vlan ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4344\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4366\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN identifier (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN identifier (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4383\"/>\n        <source>Fibre Channel Ex</source>\n        <translation type=\"unfinished\">Fibre Channel Ex</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4386\"/>\n        <source>The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation type=\"unfinished\">The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4389\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4474\"/>\n        <source>8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).</source>\n        <translation type=\"unfinished\">8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4480\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4514\"/>\n        <source>8 byte array containing Fibre Channel Logical Unit Number.</source>\n        <translation type=\"unfinished\">8 byte array containing Fibre Channel Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4499\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4520\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4537\"/>\n        <source>SAS Extended Messaging</source>\n        <translation type=\"unfinished\">SAS Extended Messaging</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4540\"/>\n        <source>The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation type=\"unfinished\">The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4543\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4567\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4588\"/>\n        <source>8-byte array of the SAS Address for Serial Attached SCSI Target Port.</source>\n        <translation type=\"unfinished\">8-byte array of the SAS Address for Serial Attached SCSI Target Port.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4570\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4576\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4591\"/>\n        <source>SAS Address</source>\n        <translation type=\"unfinished\">SAS Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4573\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4594\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Address for Serial Attached SCSI Target Port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Address for Serial Attached SCSI Target Port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4628\"/>\n        <source>8-byte array of the SAS Logical Unit Number.</source>\n        <translation type=\"unfinished\">8-byte array of the SAS Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4613\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4634\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4647\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4668\"/>\n        <source>More Information about the device and its interconnect.</source>\n        <translation type=\"unfinished\">More Information about the device and its interconnect.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4650\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4656\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4671\"/>\n        <source>Device and Topology Info</source>\n        <translation type=\"unfinished\">Device and Topology Info</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4653\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4674\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;More Information about the device and its interconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;More Information about the device and its interconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4687\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4709\"/>\n        <source>Relative Target Port (RTP).</source>\n        <translation type=\"unfinished\">Relative Target Port (RTP).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4690\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4696\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4712\"/>\n        <source>Relative Target Port</source>\n        <translation type=\"unfinished\">Relative Target Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4715\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Relative Target Port (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Relative Target Port (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4732\"/>\n        <source>NVM Express NS</source>\n        <translation type=\"unfinished\">NVM Express NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4735\"/>\n        <source>NVM Express Namespace Settings.</source>\n        <translation type=\"unfinished\">NVM Express Namespace Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4738\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM Express Namespace Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM Express Namespace Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4783\"/>\n        <source>Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.</source>\n        <translation type=\"unfinished\">Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4765\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4771\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4786\"/>\n        <source>NSID</source>\n        <translation type=\"unfinished\">NSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4768\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4789\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4802\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4823\"/>\n        <source>This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.</source>\n        <translation type=\"unfinished\">This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4805\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4811\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4826\"/>\n        <source>EUI-64</source>\n        <translation type=\"unfinished\">EUI-64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4808\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4829\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4849\"/>\n        <source>Refer to RFC 3986 for details on the URI contents.</source>\n        <translation type=\"unfinished\">Refer to RFC 3986 for details on the URI contents.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Refer to RFC 3986 for details on the URI contents.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Refer to RFC 3986 for details on the URI contents.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4876\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4898\"/>\n        <source>Instance of the URI pursuant to RFC 3986.</source>\n        <translation type=\"unfinished\">Instance of the URI pursuant to RFC 3986.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4882\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Instance of the URI pursuant to RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Instance of the URI pursuant to RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4915\"/>\n        <source>UFS</source>\n        <translation type=\"unfinished\">UFS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4918\"/>\n        <source>UFS Settings.</source>\n        <translation type=\"unfinished\">UFS Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4966\"/>\n        <source>Target ID on the UFS interface (PUN).</source>\n        <translation type=\"unfinished\">Target ID on the UFS interface (PUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4972\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the UFS interface (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the UFS interface (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5029\"/>\n        <source>SD</source>\n        <translation type=\"unfinished\">SD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5032\"/>\n        <source>SD Settings.</source>\n        <translation type=\"unfinished\">SD Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5035\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5081\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5299\"/>\n        <source>Slot Number</source>\n        <translation type=\"unfinished\">Slot Number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5084\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5280\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5286\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5302\"/>\n        <source>Slot</source>\n        <translation type=\"unfinished\">Slot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5087\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5283\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5305\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Slot Number&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Slot Number&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5104\"/>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\">Bluetooth</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5107\"/>\n        <source>EFI Bluetooth Settings.</source>\n        <translation type=\"unfinished\">EFI Bluetooth Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5110\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI Bluetooth Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI Bluetooth Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5155\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5373\"/>\n        <source>48-bit Bluetooth device address.</source>\n        <translation type=\"unfinished\">48-bit Bluetooth device address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5143\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5158\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5361\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5376\"/>\n        <source>Device Address</source>\n        <translation type=\"unfinished\">Device Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5161\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5379\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-bit Bluetooth device address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-bit Bluetooth device address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5178\"/>\n        <source>Wi-Fi</source>\n        <translation type=\"unfinished\">Wi-Fi</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5181\"/>\n        <source>Wi-Fi Settings.</source>\n        <translation type=\"unfinished\">Wi-Fi Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5184\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wi-Fi Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wi-Fi Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5208\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5230\"/>\n        <source>SSID in octet string.</source>\n        <translation type=\"unfinished\">SSID in octet string.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5211\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5217\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5233\"/>\n        <source>SSID</source>\n        <translation type=\"unfinished\">SSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5214\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5236\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID in octet string.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID in octet string.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5247\"/>\n        <source>eMMC</source>\n        <translation type=\"unfinished\">eMMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5250\"/>\n        <source>Embedded Multi-Media Card Settings.</source>\n        <translation type=\"unfinished\">Embedded Multi-Media Card Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5253\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Embedded Multi-Media Card Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Embedded Multi-Media Card Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5322\"/>\n        <source>BluetoothLE</source>\n        <translation type=\"unfinished\">BluetoothLE</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5325\"/>\n        <source>EFI BluetoothLE Settings.</source>\n        <translation type=\"unfinished\">EFI BluetoothLE Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5328\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI BluetoothLE Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI BluetoothLE Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5416\"/>\n        <source>0x00 - Public Device Address.\n0x01 - Random Device Address.</source>\n        <translation type=\"unfinished\">0x00 - Public Device Address.\n0x01 - Random Device Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5396\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5403\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5420\"/>\n        <source>Address Type</source>\n        <translation type=\"unfinished\">Address Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5399\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5423\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Public Device Address.\n0x01 - Random Device Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Public Device Address.\n0x01 - Random Device Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5428\"/>\n        <source>Public</source>\n        <translation type=\"unfinished\">Public</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5433\"/>\n        <source>Random</source>\n        <translation type=\"unfinished\">Random</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5445\"/>\n        <source>DNS</source>\n        <translation type=\"unfinished\">DNS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5448\"/>\n        <source>DNS Settings.</source>\n        <translation type=\"unfinished\">DNS Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5451\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DNS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DNS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5499\"/>\n        <source>0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.</source>\n        <translation type=\"unfinished\">0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5482\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5506\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5514\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5575\"/>\n        <source>One or more instances of the DNS server address in EFI_IP_ADDRESS.</source>\n        <translation type=\"unfinished\">One or more instances of the DNS server address in EFI_IP_ADDRESS.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5520\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5581\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;One or more instances of the DNS server address in EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;One or more instances of the DNS server address in EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5536\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7584\"/>\n        <source>Data format.</source>\n        <translation type=\"unfinished\">Data format.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5592\"/>\n        <source>NVDIMM NS</source>\n        <translation type=\"unfinished\">NVDIMM NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5595\"/>\n        <source>This device path describes a bootable NVDIMM namespace that is defined by a namespace label.</source>\n        <translation type=\"unfinished\">This device path describes a bootable NVDIMM namespace that is defined by a namespace label.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVDIMM namespace that is defined by a namespace label.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVDIMM namespace that is defined by a namespace label.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5622\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5643\"/>\n        <source>Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.</source>\n        <translation type=\"unfinished\">Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5646\"/>\n        <source>UUID</source>\n        <translation type=\"unfinished\">UUID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5628\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5649\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5663\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5698\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5706\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5724\"/>\n        <source>REST Service</source>\n        <translation type=\"unfinished\">REST Service</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5666\"/>\n        <source>REST Service Settings.</source>\n        <translation type=\"unfinished\">REST Service Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5669\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;REST Service Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;REST Service Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5719\"/>\n        <source>0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.</source>\n        <translation type=\"unfinished\">0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5701\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5727\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5733\"/>\n        <source>Redfish</source>\n        <translation type=\"unfinished\">Redfish</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5738\"/>\n        <source>OData</source>\n        <translation type=\"unfinished\">OData</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5743\"/>\n        <source>Vendor specific</source>\n        <translation type=\"unfinished\">Vendor specific</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5775\"/>\n        <source>0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.</source>\n        <translation type=\"unfinished\">0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5755\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5779\"/>\n        <source>Access Mode</source>\n        <translation type=\"unfinished\">Access Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5782\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5787\"/>\n        <source>In-Band</source>\n        <translation type=\"unfinished\">In-Band</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5792\"/>\n        <source>Out-of-band</source>\n        <translation type=\"unfinished\">Out-of-band</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5821\"/>\n        <source>GUID of vendor specific REST service.</source>\n        <translation type=\"unfinished\">GUID of vendor specific REST service.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID of vendor specific REST service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID of vendor specific REST service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5898\"/>\n        <source>Vendor-defined data.</source>\n        <translation type=\"unfinished\">Vendor-defined data.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5915\"/>\n        <source>NVMe-oF NS</source>\n        <translation type=\"unfinished\">NVMe-oF NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5918\"/>\n        <source>This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.</source>\n        <translation type=\"unfinished\">This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5967\"/>\n        <source>Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.</source>\n        <translation type=\"unfinished\">Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5970\"/>\n        <source>NIDT</source>\n        <translation type=\"unfinished\">NIDT</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5973\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5986\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6007\"/>\n        <source>Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.</source>\n        <translation type=\"unfinished\">Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5989\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5995\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6010\"/>\n        <source>NID</source>\n        <translation type=\"unfinished\">NID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5992\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6013\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6023\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6045\"/>\n        <source>Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.</source>\n        <translation type=\"unfinished\">Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6026\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6048\"/>\n        <source>Subsystem NQN</source>\n        <translation type=\"unfinished\">Subsystem NQN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6029\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6051\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6066\"/>\n        <source>Hard Drive</source>\n        <translation type=\"unfinished\">Hard Drive</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6069\"/>\n        <source>The Hard Drive Media Device Path is used to represent a partition on a hard drive.</source>\n        <translation type=\"unfinished\">The Hard Drive Media Device Path is used to represent a partition on a hard drive.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6072\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Hard Drive Media Device Path is used to represent a partition on a hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Hard Drive Media Device Path is used to represent a partition on a hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6174\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6196\"/>\n        <source>Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].</source>\n        <translation type=\"unfinished\">Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6180\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6236\"/>\n        <source>Starting LBA of the partition on the hard drive.</source>\n        <translation type=\"unfinished\">Starting LBA of the partition on the hard drive.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6466\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6487\"/>\n        <source>Partition Start</source>\n        <translation type=\"unfinished\">Partition Start</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting LBA of the partition on the hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting LBA of the partition on the hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6255\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6276\"/>\n        <source>Size of the partition in units of Logical Blocks.</source>\n        <translation type=\"unfinished\">Size of the partition in units of Logical Blocks.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6258\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6264\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6279\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6527\"/>\n        <source>Partition Size</source>\n        <translation type=\"unfinished\">Partition Size</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6261\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6282\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Logical Blocks.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Logical Blocks.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6295\"/>\n        <source>Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation type=\"unfinished\">Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6301\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6310\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6367\"/>\n        <source>Partition Signature</source>\n        <translation type=\"unfinished\">Partition Signature</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6304\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6322\"/>\n        <source>PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.</source>\n        <translation type=\"unfinished\">PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6328\"/>\n        <source>Signature Type</source>\n        <translation type=\"unfinished\">Signature Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6331\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6338\"/>\n        <source>None</source>\n        <translation type=\"unfinished\">None</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6361\"/>\n        <source>Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation type=\"unfinished\">Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6370\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6392\"/>\n        <source>CD-ROM</source>\n        <translation type=\"unfinished\">CD-ROM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6395\"/>\n        <source>The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.</source>\n        <translation type=\"unfinished\">The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6398\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6444\"/>\n        <source>Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.</source>\n        <translation type=\"unfinished\">Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6425\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6431\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6447\"/>\n        <source>Boot Entry</source>\n        <translation type=\"unfinished\">Boot Entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6450\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6463\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6484\"/>\n        <source>Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.</source>\n        <translation type=\"unfinished\">Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6469\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6490\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6524\"/>\n        <source>Size of the partition in units of Blocks, also called Sectors.</source>\n        <translation type=\"unfinished\">Size of the partition in units of Blocks, also called Sectors.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6530\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Blocks, also called Sectors.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Blocks, also called Sectors.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6547\"/>\n        <source>File Path</source>\n        <translation type=\"unfinished\">File Path</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6550\"/>\n        <source>File Path settings.</source>\n        <translation type=\"unfinished\">File Path settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6553\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File Path settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File Path settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6599\"/>\n        <source>Path including directory and file names.</source>\n        <translation type=\"unfinished\">Path including directory and file names.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6586\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6602\"/>\n        <source>Path Name</source>\n        <translation type=\"unfinished\">Path Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6583\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6605\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Path including directory and file names.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Path including directory and file names.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6619\"/>\n        <source>The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.</source>\n        <translation type=\"unfinished\">The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6622\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6667\"/>\n        <source>The ID of the protocol.</source>\n        <translation type=\"unfinished\">The ID of the protocol.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6673\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ID of the protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ID of the protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6687\"/>\n        <source>Firmware File</source>\n        <translation type=\"unfinished\">Firmware File</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6690\"/>\n        <source>Describes a firmware file in a firmware volume.</source>\n        <translation type=\"unfinished\">Describes a firmware file in a firmware volume.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6693\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware file in a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware file in a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6717\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6738\"/>\n        <source>Firmware file name GUID.</source>\n        <translation type=\"unfinished\">Firmware file name GUID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6723\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6744\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware file name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware file name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6758\"/>\n        <source>Firmware Volume</source>\n        <translation type=\"unfinished\">Firmware Volume</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6761\"/>\n        <source>Describes a firmware volume.</source>\n        <translation type=\"unfinished\">Describes a firmware volume.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6764\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6809\"/>\n        <source>Firmware volume name GUID.</source>\n        <translation type=\"unfinished\">Firmware volume name GUID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware volume name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware volume name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6829\"/>\n        <source>Relative Offset Range</source>\n        <translation type=\"unfinished\">Relative Offset Range</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6832\"/>\n        <source>This device path node specifies a range of offsets relative to the first byte available on the device.</source>\n        <translation type=\"unfinished\">This device path node specifies a range of offsets relative to the first byte available on the device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6835\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path node specifies a range of offsets relative to the first byte available on the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path node specifies a range of offsets relative to the first byte available on the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6880\"/>\n        <source>Reserved for future use.</source>\n        <translation type=\"unfinished\">Reserved for future use.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6886\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved for future use.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved for future use.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6899\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6920\"/>\n        <source>Offset of the first byte, relative to the parent device node.</source>\n        <translation type=\"unfinished\">Offset of the first byte, relative to the parent device node.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6902\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6908\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6923\"/>\n        <source>Starting Offset</source>\n        <translation type=\"unfinished\">Starting Offset</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6905\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the first byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the first byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6939\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6960\"/>\n        <source>Offset of the last byte, relative to the parent device node.</source>\n        <translation type=\"unfinished\">Offset of the last byte, relative to the parent device node.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6942\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6963\"/>\n        <source>Ending Offset</source>\n        <translation type=\"unfinished\">Ending Offset</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6966\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the last byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the last byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6983\"/>\n        <source>RAM Disk</source>\n        <translation type=\"unfinished\">RAM Disk</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6986\"/>\n        <source>RAM Disk Settings.</source>\n        <translation type=\"unfinished\">RAM Disk Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6989\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7016\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7037\"/>\n        <source>Starting Address</source>\n        <translation type=\"unfinished\">Starting Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7056\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7077\"/>\n        <source>Ending Address</source>\n        <translation type=\"unfinished\">Ending Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7093\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7114\"/>\n        <source>GUID that defines the type of the RAM Disk.</source>\n        <translation type=\"unfinished\">GUID that defines the type of the RAM Disk.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7120\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID that defines the type of the RAM Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID that defines the type of the RAM Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7130\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7152\"/>\n        <source>RAM Disk instance number, if supported.</source>\n        <translation type=\"unfinished\">RAM Disk instance number, if supported.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7133\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7155\"/>\n        <source>Disk Instance</source>\n        <translation type=\"unfinished\">Disk Instance</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7158\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk instance number, if supported.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk instance number, if supported.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7179\"/>\n        <source>This Device Path is used to describe the booting of non-EFI-aware operating systems.</source>\n        <translation type=\"unfinished\">This Device Path is used to describe the booting of non-EFI-aware operating systems.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7182\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path is used to describe the booting of non-EFI-aware operating systems.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path is used to describe the booting of non-EFI-aware operating systems.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7206\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7249\"/>\n        <source>An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.</source>\n        <translation type=\"unfinished\">An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7220\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7263\"/>\n        <source>Device Type</source>\n        <translation type=\"unfinished\">Device Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7223\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7290\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7347\"/>\n        <source>Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero</source>\n        <translation type=\"unfinished\">Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7311\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7368\"/>\n        <source>Status Flag</source>\n        <translation type=\"unfinished\">Status Flag</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7371\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7402\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7424\"/>\n        <source>String that describes the boot device to a user.</source>\n        <translation type=\"unfinished\">String that describes the boot device to a user.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7408\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7430\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;String that describes the boot device to a user.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;String that describes the boot device to a user.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7543\"/>\n        <source>Vendor-assigned GUID that defines the data that follows.</source>\n        <translation type=\"unfinished\">Vendor-assigned GUID that defines the data that follows.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7549\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-assigned GUID that defines the data that follows.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-assigned GUID that defines the data that follows.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7562\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7622\"/>\n        <source>Vendor-defined variable size data.</source>\n        <translation type=\"unfinished\">Vendor-defined variable size data.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7568\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7628\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined variable size data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined variable size data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7642\"/>\n        <source>Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.</source>\n        <translation type=\"unfinished\">Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7645\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7721\"/>\n        <source>Unknown file path specifier settings</source>\n        <translation type=\"unfinished\">Unknown file path specifier settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7724\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown file path specifier settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown file path specifier settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7748\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7772\"/>\n        <source>Unknown Type</source>\n        <translation type=\"unfinished\">Unknown Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7754\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7775\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7812\"/>\n        <source>Unknown Sub-Type</source>\n        <translation type=\"unfinished\">Unknown Sub-Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7828\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7831\"/>\n        <source>Unknown data</source>\n        <translation type=\"unfinished\">Unknown data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/filepathdialog.cpp\" line=\"1569\"/>\n        <source>Couldn&apos;t change data format!</source>\n        <translation type=\"unfinished\">Couldn&apos;t change data format!</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeyListModel</name>\n    <message>\n        <location filename=\"../src/hotkeylistmodel.cpp\" line=\"100\"/>\n        <source>boot option</source>\n        <translation type=\"unfinished\">boot option</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Boot option</source>\n        <translation type=\"unfinished\">Boot option</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Hot key</source>\n        <translation type=\"unfinished\">Hot key</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Vendor data</source>\n        <translation type=\"unfinished\">Vendor data</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeysDialog</name>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"20\"/>\n        <source>Hot Keys editor</source>\n        <translation type=\"unfinished\">Hot Keys editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"41\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"44\"/>\n        <source>Hot Keys</source>\n        <translation type=\"unfinished\">Hot Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"47\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"125\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"128\"/>\n        <source>Index filter</source>\n        <translation type=\"unfinished\">Index filter</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"131\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Index filter&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Index filter&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"163\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"166\"/>\n        <source>Remove hot key</source>\n        <translation type=\"unfinished\">Remove hot key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"191\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"194\"/>\n        <source>Add hot key</source>\n        <translation type=\"unfinished\">Add hot key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"197\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <location filename=\"../include/commands.h\" line=\"21\"/>\n        <location filename=\"../include/commands.h\" line=\"66\"/>\n        <source>Change %1 to &quot;%2&quot;</source>\n        <translation type=\"unfinished\">Change %1 to &quot;%2&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"35\"/>\n        <source>Insert %1 entry &quot;%2&quot; at position %3</source>\n        <translation type=\"unfinished\">Insert %1 entry &quot;%2&quot; at position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"50\"/>\n        <source>Remove %1 entry &quot;%2&quot; from position %3</source>\n        <translation type=\"unfinished\">Remove %1 entry &quot;%2&quot; from position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"73\"/>\n        <location filename=\"../src/commands.cpp\" line=\"116\"/>\n        <source>Move %1 entry &quot;%2&quot; from position %3 to %4</source>\n        <translation type=\"unfinished\">Move %1 entry &quot;%2&quot; from position %3 to %4</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <location filename=\"../include/commands.h\" line=\"157\"/>\n        <location filename=\"../include/commands.h\" line=\"198\"/>\n        <source>Change %1 entry &quot;%2&quot; %3 to &quot;%4&quot;</source>\n        <translation type=\"unfinished\">Change %1 entry &quot;%2&quot; %3 to &quot;%4&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <source>Optional data</source>\n        <translation type=\"unfinished\">Optional data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"227\"/>\n        <source>Insert %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation type=\"unfinished\">Insert %1 entry &quot;%2&quot; file path at position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"242\"/>\n        <source>Remove %1 entry &quot;%2&quot; file path from position %3</source>\n        <translation type=\"unfinished\">Remove %1 entry &quot;%2&quot; file path from position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"257\"/>\n        <source>Set %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation type=\"unfinished\">Set %1 entry &quot;%2&quot; file path at position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <source>Insert %1 entry at position %2</source>\n        <translation type=\"unfinished\">Insert %1 entry at position %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>Key</source>\n        <translation type=\"unfinished\">Key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <source>Remove %1 entry from position %2</source>\n        <translation type=\"unfinished\">Remove %1 entry from position %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <location filename=\"../include/commands.h\" line=\"362\"/>\n        <location filename=\"../include/commands.h\" line=\"403\"/>\n        <source>Change %1 entry at position %2 %3 to &quot;%4&quot;</source>\n        <translation type=\"unfinished\">Change %1 entry at position %2 %3 to &quot;%4&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>keys</source>\n        <translation type=\"unfinished\">keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"293\"/>\n        <location filename=\"../src/commands.cpp\" line=\"333\"/>\n        <source>Move %1 entry &quot;%2&quot; file path from position %3 to %4</source>\n        <translation type=\"unfinished\">Move %1 entry &quot;%2&quot; file path from position %3 to %4</translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/efibooteditor_fr.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"fr\" sourcelanguage=\"en_US\">\n<context>\n    <name>BootEntryForm</name>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"169\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"172\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"182\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"185\"/>\n        <source>Description</source>\n        <translation>Description</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"198\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"201\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"204\"/>\n        <source>Path</source>\n        <translation>Chemin</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"415\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"418\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"478\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"481\"/>\n        <source>Optional data</source>\n        <translation type=\"unfinished\">Données optionnelles</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"421\"/>\n        <source>Optional</source>\n        <translation type=\"unfinished\">Optionnel</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"434\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"437\"/>\n        <source>Optional data format</source>\n        <translation>Format des données optionnelles</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"6\"/>\n        <source>Boot entry form</source>\n        <translation type=\"unfinished\">Boot entry form</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"24\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"27\"/>\n        <source>Error</source>\n        <translation>Erreur</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"40\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"43\"/>\n        <source>Error note</source>\n        <translation type=\"unfinished\">Description de l&apos;erreur</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"46\"/>\n        <source>This entry placeholder is shown here to indicate it&apos;s referenced in boot order. It won&apos;t be modified on save, just left as is.</source>\n        <translation type=\"unfinished\">This entry placeholder is shown here to indicate it&apos;s referenced in boot order. It won&apos;t be modified on save, just left as is.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"147\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"150\"/>\n        <source>Hot Keys</source>\n        <translation type=\"unfinished\">Raccourcis clavier</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Raccourcis clavier&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"188\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry description.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry description.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"222\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"225\"/>\n        <source>Device path</source>\n        <translation type=\"unfinished\">Chemin du périphérique</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Chemin du périphérique.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"280\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"283\"/>\n        <source>Move file path up</source>\n        <translation>Monter le chemin du fichier</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"286\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Monter le chemin du fichier.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"305\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"308\"/>\n        <source>Move file path down</source>\n        <translation>Descendre le chemin du fichier</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"311\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Descendre le chemin du fichier.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"330\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"333\"/>\n        <source>Remove file path</source>\n        <translation>Supprimer le chemin du fichier</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"336\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Supprimer le chemin du fichier.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"355\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"358\"/>\n        <source>Edit file path</source>\n        <translation>Modifier le chemin du fichier</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"361\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Edit file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Modifier le chemin du fichier.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"380\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"383\"/>\n        <source>Add file path</source>\n        <translation>Ajouter le chemin du fichier</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ajouter le chemin du fichier.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"444\"/>\n        <source>BASE64</source>\n        <translation type=\"unfinished\">BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"449\"/>\n        <source>UTF-16</source>\n        <translation type=\"unfinished\">UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"454\"/>\n        <source>UTF-8</source>\n        <translation type=\"unfinished\">UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"459\"/>\n        <source>HEX</source>\n        <translation type=\"unfinished\">HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"484\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry optional data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry optional data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"497\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"500\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"503\"/>\n        <source>Attributes</source>\n        <translation>Attributs</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"623\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry category.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry category.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"122\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"540\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Is entry considered for automatic boot?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Is entry considered for automatic boot?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"569\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hidden.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hidden.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"585\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Force reconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Force reconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"534\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"537\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"543\"/>\n        <source>Active</source>\n        <translation type=\"unfinished\">Active</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"579\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"582\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"588\"/>\n        <source>Force reconnect</source>\n        <translation type=\"unfinished\">Force reconnect</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"563\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"566\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"572\"/>\n        <source>Hidden</source>\n        <translation type=\"unfinished\">Hidden</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"598\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"601\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"604\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"617\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"620\"/>\n        <source>Category</source>\n        <translation type=\"unfinished\">Category</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"627\"/>\n        <source>Boot</source>\n        <translation type=\"unfinished\">Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"632\"/>\n        <source>App</source>\n        <translation type=\"unfinished\">App</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"68\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"71\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"74\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"116\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"119\"/>\n        <source>Index</source>\n        <translation type=\"unfinished\">Index</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentryform.cpp\" line=\"117\"/>\n        <source>Couldn&apos;t change optional data format!</source>\n        <translation type=\"unfinished\">Couldn&apos;t change optional data format!</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryListModel</name>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"88\"/>\n        <source>Set Next boot to &quot;%1&quot;</source>\n        <translation type=\"unfinished\">Set Next boot to &quot;%1&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"184\"/>\n        <source>index</source>\n        <translation type=\"unfinished\">index</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"200\"/>\n        <source>description</source>\n        <translation type=\"unfinished\">description</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"237\"/>\n        <source>optional data</source>\n        <translation type=\"unfinished\">optional data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"253\"/>\n        <source>attributes</source>\n        <translation type=\"unfinished\">attributes</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"269\"/>\n        <source>next boot</source>\n        <translation type=\"unfinished\">next boot</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryWidget</name>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"12\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"221\"/>\n        <source>Boot entry</source>\n        <translation type=\"unfinished\">Boot entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"36\"/>\n        <source>Next boot</source>\n        <translation type=\"unfinished\">Next boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"39\"/>\n        <source>Run at next boot</source>\n        <translation type=\"unfinished\">Run at next boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"42\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;When chosen, entry will run at next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;When chosen, entry will run at next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"140\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"143\"/>\n        <source>Current boot</source>\n        <translation type=\"unfinished\">Current boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This entry is currently booted.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This entry is currently booted.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"181\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"218\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry description, human readable name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry description, human readable name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"67\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"70\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"76\"/>\n        <source>Device path</source>\n        <translation type=\"unfinished\">Device path</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"73\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"113\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data, arguments passed to boot executable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data, arguments passed to boot executable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"178\"/>\n        <source>Boot entry index</source>\n        <translation type=\"unfinished\">Boot entry index</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"184\"/>\n        <source>Index</source>\n        <translation type=\"unfinished\">Index</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"212\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"215\"/>\n        <source>Boot entry description</source>\n        <translation type=\"unfinished\">Boot entry description</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"107\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"110\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"116\"/>\n        <source>Optional data</source>\n        <translation type=\"unfinished\">Optional data</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootData</name>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"111\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"813\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1027\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1361\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1472\"/>\n        <source>%1: not found</source>\n        <translation type=\"unfinished\">%1: not found</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"120\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"821\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1387\"/>\n        <source>%1: failed deserialization</source>\n        <translation type=\"unfinished\">%1: failed deserialization</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Error loading entries</source>\n        <translation type=\"unfinished\">Error loading entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Failed to load some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation type=\"unfinished\">Failed to load some EFI Boot Manager entries:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Error saving entries</source>\n        <translation type=\"unfinished\">Error saving entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Entry %1(%2): duplicated index!</source>\n        <translation type=\"unfinished\">Entry %1(%2): duplicated index!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"389\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"419\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"458\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"479\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"487\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"516\"/>\n        <source>Error saving %1</source>\n        <translation type=\"unfinished\">Error saving %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"407\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"470\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"504\"/>\n        <source>Error removing %1</source>\n        <translation type=\"unfinished\">Error removing %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Error importing boot configuration</source>\n        <translation type=\"unfinished\">Error importing boot configuration</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <source>Couldn&apos;t open selected file (%1).</source>\n        <translation type=\"unfinished\">Couldn&apos;t open selected file (%1).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <source>Parser failed: %1</source>\n        <translation type=\"unfinished\">Parser failed: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <source>Invalid _Type: %1</source>\n        <translation type=\"unfinished\">Invalid _Type: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <source>Error exporting boot configuration</source>\n        <translation type=\"unfinished\">Error exporting boot configuration</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <source>Couldn&apos;t open selected file (%1): %2.</source>\n        <translation type=\"unfinished\">Couldn&apos;t open selected file (%1): %2.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <source>Couldn&apos;t write into file (%1): %2.</source>\n        <translation type=\"unfinished\">Couldn&apos;t write into file (%1): %2.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Error dumping raw EFI data</source>\n        <translation type=\"unfinished\">Error dumping raw EFI data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Failed to dump some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation type=\"unfinished\">Failed to dump some EFI Boot Manager entries:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"905\"/>\n        <source>Timeout</source>\n        <translation type=\"unfinished\">Timeout</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"921\"/>\n        <source>Apple boot-args</source>\n        <translation type=\"unfinished\">Apple boot-args</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"937\"/>\n        <source>Firmware actions</source>\n        <translation type=\"unfinished\">Firmware actions</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"73\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Loading EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"89\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"787\"/>\n        <source>Searching EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Searching EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"116\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"292\"/>\n        <source>Processing EFI Boot Manager entries (%1)…</source>\n        <translation type=\"unfinished\">Processing EFI Boot Manager entries (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"308\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Saving EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"333\"/>\n        <source>Searching old EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Searching old EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"374\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"416\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"447\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"476\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"484\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"491\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"513\"/>\n        <source>Saving EFI Boot Manager entries (%1)…</source>\n        <translation type=\"unfinished\">Saving EFI Boot Manager entries (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"467\"/>\n        <source>Removing old EFI Boot Manager entries (%1)…</source>\n        <translation type=\"unfinished\">Removing old EFI Boot Manager entries (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"404\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"501\"/>\n        <source>Removing EFI Boot Manager entries (%1)…</source>\n        <translation type=\"unfinished\">Removing EFI Boot Manager entries (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"94\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"338\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"792\"/>\n        <source>Couldn&apos;t load EFI Boot Manager variables</source>\n        <translation type=\"unfinished\">Couldn&apos;t load EFI Boot Manager variables</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"100\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"799\"/>\n        <source>Couldn&apos;t find any EFI Boot Manager variables</source>\n        <translation type=\"unfinished\">Couldn&apos;t find any EFI Boot Manager variables</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"529\"/>\n        <source>Importing boot configuration…</source>\n        <translation type=\"unfinished\">Importing boot configuration…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"565\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"770\"/>\n        <source>Exporting boot configuration…</source>\n        <translation type=\"unfinished\">Exporting boot configuration…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"587\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"809\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"875\"/>\n        <source>Exporting EFI Boot Manager entries (%1)…</source>\n        <translation type=\"unfinished\">Exporting EFI Boot Manager entries (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1013\"/>\n        <source>Importing boot configuration from JSON…</source>\n        <translation type=\"unfinished\">Importing boot configuration from JSON…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1032\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1366\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1477\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1531\"/>\n        <source>Importing EFI Boot Manager entries (%1)…</source>\n        <translation type=\"unfinished\">Importing EFI Boot Manager entries (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1035\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1376\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>%1: %2 expected</source>\n        <translation type=\"unfinished\">%1: %2 expected</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1043\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1048\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1053\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <source>number</source>\n        <translation type=\"unfinished\">number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1058\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1063\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1068\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1073\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1078\"/>\n        <source>bool</source>\n        <translation type=\"unfinished\">bool</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1109\"/>\n        <source>%1: unknown boot manager capability</source>\n        <translation type=\"unfinished\">%1: unknown boot manager capability</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1122\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1166\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1212\"/>\n        <source>array</source>\n        <translation type=\"unfinished\">array</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1333\"/>\n        <source>string</source>\n        <translation type=\"unfinished\">string</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1156\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1192\"/>\n        <source>%1: unknown os indication</source>\n        <translation type=\"unfinished\">%1: unknown os indication</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1083\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1235\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1264\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1290\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1309\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1328\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>object</source>\n        <translation type=\"unfinished\">object</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <source>hexadecimal number</source>\n        <translation type=\"unfinished\">hexadecimal number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1270\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1315\"/>\n        <source>%1: failed parsing</source>\n        <translation type=\"unfinished\">%1: failed parsing</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Failed to import some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation type=\"unfinished\">Failed to import some EFI Boot Manager entries:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1347\"/>\n        <source>Importing boot configuration from raw dump…</source>\n        <translation type=\"unfinished\">Importing boot configuration from raw dump…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1379\"/>\n        <source>object(raw_data: string, efi_attributes: number)</source>\n        <extracomment>Expected JSON structure, thrown as error description. raw_data and efi_attributes are field names in JSON file</extracomment>\n        <translation type=\"unfinished\">object(raw_data: string, efi_attributes: number)</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"15\"/>\n        <source>Boot</source>\n        <translation type=\"unfinished\">Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"16\"/>\n        <source>Driver</source>\n        <translation type=\"unfinished\">Driver</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"17\"/>\n        <source>System Preparation</source>\n        <translation type=\"unfinished\">System Preparation</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"18\"/>\n        <source>Platform Recovery</source>\n        <translation type=\"unfinished\">Platform Recovery</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditor</name>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"18\"/>\n        <source>EFI Boot Editor</source>\n        <translation type=\"unfinished\">EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"71\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"412\"/>\n        <source>Boot</source>\n        <translation type=\"unfinished\">Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"74\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"98\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"101\"/>\n        <source>Boot entries</source>\n        <translation type=\"unfinished\">Boot entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"77\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"104\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Boot entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Boot entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"133\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"415\"/>\n        <source>Driver</source>\n        <translation type=\"unfinished\">Driver</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"136\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"160\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"163\"/>\n        <source>Driver entries</source>\n        <translation type=\"unfinished\">Driver entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"139\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"166\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Driver entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Driver entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"195\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"418\"/>\n        <source>System Preparation</source>\n        <translation type=\"unfinished\">System Preparation</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"198\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"222\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"225\"/>\n        <source>SysPrep entries</source>\n        <translation type=\"unfinished\">SysPrep entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"201\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of SysPrep entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of SysPrep entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"257\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"421\"/>\n        <source>Platform Recovery</source>\n        <translation type=\"unfinished\">Platform Recovery</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"260\"/>\n        <source>PlatformRecovery entries</source>\n        <translation type=\"unfinished\">PlatformRecovery entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"263\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of PlatformRecovery entries (READONLY).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of PlatformRecovery entries (READONLY).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"284\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"287\"/>\n        <source>PlatformRecovery entries (READONLY)</source>\n        <translation type=\"unfinished\">PlatformRecovery entries (READONLY)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"346\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"349\"/>\n        <source>Add new entry</source>\n        <translation type=\"unfinished\">Add new entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"352\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to add new boot entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to add new boot entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"377\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"380\"/>\n        <source>Duplicate entry</source>\n        <translation type=\"unfinished\">Duplicate entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"383\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Duplicate entry&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Duplicate entry&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"408\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"411\"/>\n        <source>Remove entry</source>\n        <translation type=\"unfinished\">Remove entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"414\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to remove currently selected entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to remove currently selected entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"439\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"442\"/>\n        <source>Move entry up</source>\n        <translation type=\"unfinished\">Move entry up</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"445\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"470\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"473\"/>\n        <source>Move entry down</source>\n        <translation type=\"unfinished\">Move entry down</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"476\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"501\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"504\"/>\n        <source>Reorder entries</source>\n        <translation type=\"unfinished\">Reorder entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"507\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click here to adjust the order of all entries based on their position on the list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click here to adjust the order of all entries based on their position on the list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"599\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"608\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Global settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Global settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"602\"/>\n        <source>Global</source>\n        <translation type=\"unfinished\">Global</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"632\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"635\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"654\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"657\"/>\n        <source>Boot manager timeout</source>\n        <translation type=\"unfinished\">Boot manager timeout</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"638\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"660\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot manager timeout.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot manager timeout.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"663\"/>\n        <source>s</source>\n        <translation type=\"unfinished\">s</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"674\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"677\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"686\"/>\n        <source>Firmware details</source>\n        <translation type=\"unfinished\">Firmware details</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"680\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"689\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"683\"/>\n        <source>Firmware</source>\n        <translation type=\"unfinished\">Firmware</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"719\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"722\"/>\n        <source>Available firmware features</source>\n        <translation type=\"unfinished\">Available firmware features</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"725\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware features.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware features.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"728\"/>\n        <source>Features</source>\n        <translation type=\"unfinished\">Features</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"737\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"740\"/>\n        <source>Platform supports reporting of deferred capsule processing by creation of result variable</source>\n        <translation type=\"unfinished\">Platform supports reporting of deferred capsule processing by creation of result variable</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"743\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports reporting of deferred capsule processing by creation of result variable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports reporting of deferred capsule processing by creation of result variable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"746\"/>\n        <source>Capsule Reporting</source>\n        <translation type=\"unfinished\">Capsule Reporting</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"756\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"759\"/>\n        <source>Firmware supports timestamp based revocation</source>\n        <translation type=\"unfinished\">Firmware supports timestamp based revocation</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"762\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware supports timestamp based revocation.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware supports timestamp based revocation.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"765\"/>\n        <source>Timestamp based revocation</source>\n        <translation type=\"unfinished\">Timestamp based revocation</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"775\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"778\"/>\n        <source>Platform supports processing of Firmware Management Protocol update capsule</source>\n        <translation type=\"unfinished\">Platform supports processing of Firmware Management Protocol update capsule</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"781\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of Firmware Management Protocol update capsule.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of Firmware Management Protocol update capsule.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"784\"/>\n        <source>FMP Capsule</source>\n        <translation type=\"unfinished\">FMP Capsule</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"794\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"797\"/>\n        <source>Platform supports processing of file capsules</source>\n        <translation type=\"unfinished\">Platform supports processing of file capsules</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"800\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of file capsules.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of file capsules.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"803\"/>\n        <source>File Capsule</source>\n        <translation type=\"unfinished\">File Capsule</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"828\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"831\"/>\n        <source>Available firmware actions</source>\n        <translation type=\"unfinished\">Available firmware actions</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware actions.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware actions.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"837\"/>\n        <source>Actions</source>\n        <translation type=\"unfinished\">Actions</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"846\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"849\"/>\n        <source>Stop at a firmware user interface on the next boot</source>\n        <translation type=\"unfinished\">Stop at a firmware user interface on the next boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Stop at a firmware user interface on the next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Stop at a firmware user interface on the next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"855\"/>\n        <source>Boot to firmware UI</source>\n        <translation type=\"unfinished\">Boot to firmware UI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"862\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"865\"/>\n        <source>Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot</source>\n        <translation type=\"unfinished\">Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"871\"/>\n        <source>Collect current config</source>\n        <translation type=\"unfinished\">Collect current config</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"878\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"881\"/>\n        <source>Indicate that Platform-defined recovery should commence upon reboot</source>\n        <translation type=\"unfinished\">Indicate that Platform-defined recovery should commence upon reboot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"884\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that Platform-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that Platform-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"887\"/>\n        <source>Start Platform recovery</source>\n        <translation type=\"unfinished\">Start Platform recovery</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"894\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"897\"/>\n        <source>Indicate that OS-defined recovery should commence upon reboot</source>\n        <translation type=\"unfinished\">Indicate that OS-defined recovery should commence upon reboot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"900\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that OS-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that OS-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"903\"/>\n        <source>Start OS recovery</source>\n        <translation type=\"unfinished\">Start OS recovery</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"932\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"935\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"944\"/>\n        <source>Secure boot settings</source>\n        <translation type=\"unfinished\">Secure boot settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"938\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"947\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Secure boot settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Secure boot settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"941\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1025\"/>\n        <source>Secure Boot</source>\n        <translation type=\"unfinished\">Secure Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"978\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"981\"/>\n        <source>Defines whether the system is currently operating in Audit Mode</source>\n        <translation type=\"unfinished\">Defines whether the system is currently operating in Audit Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"984\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Audit Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Audit Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"987\"/>\n        <source>Audit Mode</source>\n        <translation type=\"unfinished\">Audit Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"997\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1000\"/>\n        <source>Defines whether the system is currently operating in Deployed Mode</source>\n        <translation type=\"unfinished\">Defines whether the system is currently operating in Deployed Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1003\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Deployed Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Deployed Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1006\"/>\n        <source>Deployed Mode</source>\n        <translation type=\"unfinished\">Deployed Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1016\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1019\"/>\n        <source>Defines whether the platform firmware is operating with Secure Boot enabled</source>\n        <translation type=\"unfinished\">Defines whether the platform firmware is operating with Secure Boot enabled</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1022\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the platform firmware is operating with Secure Boot enabled.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the platform firmware is operating with Secure Boot enabled.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1035\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1038\"/>\n        <source>Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables</source>\n        <translation type=\"unfinished\">Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1041\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1044\"/>\n        <source>Setup Mode</source>\n        <translation type=\"unfinished\">Setup Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1054\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1057\"/>\n        <source>Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys</source>\n        <translation type=\"unfinished\">Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1063\"/>\n        <source>Vendor Keys</source>\n        <translation type=\"unfinished\">Vendor Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1074\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1077\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1086\"/>\n        <source>Apple settings</source>\n        <translation type=\"unfinished\">Apple settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1080\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apple settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apple settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1083\"/>\n        <source>Apple</source>\n        <translation type=\"unfinished\">Apple</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1113\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1116\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1129\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1132\"/>\n        <source>macOS boot arguments</source>\n        <translation type=\"unfinished\">macOS boot arguments</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1119\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;macOS boot arguments.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;macOS boot arguments.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1161\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1164\"/>\n        <source>Undo stack</source>\n        <translation type=\"unfinished\">Undo stack</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1167\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo stack&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo stack&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1194\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1214\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Help menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Help menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1255\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Exit the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Exit the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1272\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apply changes to the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apply changes to the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1289\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reloads EFI data from the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reloads EFI data from the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1306\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Show information about the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Show information about the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1320\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Export current entries into JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Export current entries into JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1337\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Import EFI data from JSON dump.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Import EFI data from JSON dump.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1354\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dumps raw EFI data for debugging purposes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dumps raw EFI data for debugging purposes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1362\"/>\n        <source>&amp;Undo</source>\n        <translation type=\"unfinished\">&amp;Undo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1365\"/>\n        <source>Undo</source>\n        <translation type=\"unfinished\">Undo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1368\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1371\"/>\n        <source>Ctrl+Z</source>\n        <translation type=\"unfinished\">Ctrl+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1379\"/>\n        <source>&amp;Redo</source>\n        <translation type=\"unfinished\">&amp;Redo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1382\"/>\n        <source>Redo</source>\n        <translation type=\"unfinished\">Redo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1385\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Redo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Redo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1388\"/>\n        <source>Ctrl+Shift+Z</source>\n        <translation type=\"unfinished\">Ctrl+Shift+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1396\"/>\n        <source>Hot &amp;keys</source>\n        <translation type=\"unfinished\">Hot &amp;keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1399\"/>\n        <source>Hot Keys</source>\n        <translation type=\"unfinished\">Hot Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1402\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"593\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"596\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"605\"/>\n        <source>Global settings</source>\n        <translation type=\"unfinished\">Global settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"641\"/>\n        <source>Timeout</source>\n        <translation type=\"unfinished\">Timeout</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1122\"/>\n        <source>Boot args</source>\n        <translation type=\"unfinished\">Boot args</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1188\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1191\"/>\n        <source>File</source>\n        <translation type=\"unfinished\">File</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1197\"/>\n        <source>&amp;File</source>\n        <translation type=\"unfinished\">&amp;File</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1208\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1211\"/>\n        <source>Help</source>\n        <translation type=\"unfinished\">Help</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1217\"/>\n        <source>&amp;Help</source>\n        <translation type=\"unfinished\">&amp;Help</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1225\"/>\n        <source>&amp;Edit</source>\n        <translation type=\"unfinished\">&amp;Edit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1249\"/>\n        <source>&amp;Quit</source>\n        <translation type=\"unfinished\">&amp;Quit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1252\"/>\n        <source>Quit</source>\n        <translation type=\"unfinished\">Quit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1258\"/>\n        <source>Ctrl+Q</source>\n        <translation type=\"unfinished\">Ctrl+Q</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1266\"/>\n        <source>&amp;Save</source>\n        <translation type=\"unfinished\">&amp;Save</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1269\"/>\n        <source>Save</source>\n        <translation type=\"unfinished\">Save</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1275\"/>\n        <source>Ctrl+S</source>\n        <translation type=\"unfinished\">Ctrl+S</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1283\"/>\n        <source>&amp;Reload</source>\n        <translation type=\"unfinished\">&amp;Reload</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1286\"/>\n        <source>Reload</source>\n        <translation type=\"unfinished\">Reload</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1292\"/>\n        <source>Ctrl+R</source>\n        <translation type=\"unfinished\">Ctrl+R</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1300\"/>\n        <source>About &amp;EFI Boot Editor</source>\n        <translation type=\"unfinished\">About &amp;EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1303\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"29\"/>\n        <source>About EFI Boot Editor</source>\n        <translation type=\"unfinished\">About EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1314\"/>\n        <source>&amp;Export</source>\n        <translation type=\"unfinished\">&amp;Export</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1317\"/>\n        <source>Export</source>\n        <translation type=\"unfinished\">Export</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1323\"/>\n        <source>Ctrl+E</source>\n        <translation type=\"unfinished\">Ctrl+E</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1331\"/>\n        <source>&amp;Import</source>\n        <translation type=\"unfinished\">&amp;Import</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1334\"/>\n        <source>Import</source>\n        <translation type=\"unfinished\">Import</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1340\"/>\n        <source>Ctrl+I</source>\n        <translation type=\"unfinished\">Ctrl+I</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1348\"/>\n        <source>&amp;Dump raw EFI data</source>\n        <translation type=\"unfinished\">&amp;Dump raw EFI data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1351\"/>\n        <source>Dump raw EFI data</source>\n        <translation type=\"unfinished\">Dump raw EFI data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"26\"/>\n        <source>Working…</source>\n        <translation type=\"unfinished\">Working…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"92\"/>\n        <source>Undo %1</source>\n        <translation type=\"unfinished\">Undo %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"95\"/>\n        <source>Redo %1</source>\n        <translation type=\"unfinished\">Redo %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"137\"/>\n        <source>Are you sure you want to reload the entries?&lt;br/&gt;ALL of your changes will be lost!</source>\n        <translation type=\"unfinished\">Are you sure you want to reload the entries?&lt;br/&gt;ALL of your changes will be lost!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"162\"/>\n        <source>Are you sure you want to reorder the boot entries?&lt;br/&gt;All indexes will be overwritten!</source>\n        <translation type=\"unfinished\">Are you sure you want to reorder the boot entries?&lt;br/&gt;All indexes will be overwritten!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"221\"/>\n        <source>Are you sure you want to save?&lt;br/&gt;Your EFI configuration will be overwritten!</source>\n        <translation type=\"unfinished\">Are you sure you want to save?&lt;br/&gt;Your EFI configuration will be overwritten!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <source>Open boot configuration dump</source>\n        <translation type=\"unfinished\">Open boot configuration dump</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>JSON documents (*.json)</source>\n        <translation type=\"unfinished\">JSON documents (*.json)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <source>Save boot configuration dump</source>\n        <translation type=\"unfinished\">Save boot configuration dump</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>Save raw EFI dump</source>\n        <translation type=\"unfinished\">Save raw EFI dump</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"31\"/>\n        <source>&lt;h1&gt;EFI Boot Editor&lt;/h1&gt;&lt;p&gt;Version &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Boot Editor for (U)EFI based systems.&lt;/p&gt;</source>\n        <extracomment>About dialog</extracomment>\n        <translation type=\"unfinished\">&lt;h1&gt;EFI Boot Editor&lt;/h1&gt;&lt;p&gt;Version &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Boot Editor for (U)EFI based systems.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"45\"/>\n        <source>&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;Website&lt;/a&gt;&lt;/p&gt;&lt;p&gt;The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.&lt;/p&gt;&lt;p&gt;License: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL Version 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;On Linux uses &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; for EFI variables access.&lt;/p&gt;&lt;p&gt;Uses Tango Icons as fallback icons.&lt;/p&gt;</source>\n        <extracomment>About dialog details</extracomment>\n        <translation type=\"unfinished\">&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;Website&lt;/a&gt;&lt;/p&gt;&lt;p&gt;The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.&lt;/p&gt;&lt;p&gt;License: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL Version 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;On Linux uses &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; for EFI variables access.&lt;/p&gt;&lt;p&gt;Uses Tango Icons as fallback icons.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"330\"/>\n        <source>Reorder %1 entries</source>\n        <translation type=\"unfinished\">Reorder %1 entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"453\"/>\n        <source>Are you sure you want to quit?</source>\n        <translation type=\"unfinished\">Are you sure you want to quit?</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"123\"/>\n        <source>EFI support required</source>\n        <translation type=\"unfinished\">EFI support required</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditorCLI</name>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"13\"/>\n        <source>Boot Editor for (U)EFI based systems.</source>\n        <translation type=\"unfinished\">Boot Editor for (U)EFI based systems.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <source>Export configuration.</source>\n        <translation type=\"unfinished\">Export configuration.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>FILE</source>\n        <translation type=\"unfinished\">FILE</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <source>Dump raw EFI data.</source>\n        <translation type=\"unfinished\">Dump raw EFI data.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>Import configuration from JSON (either from export or raw dump).</source>\n        <translation type=\"unfinished\">Import configuration from JSON (either from export or raw dump).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"19\"/>\n        <source>Force import, don&apos;t ask for confirmation.</source>\n        <translation type=\"unfinished\">Force import, don&apos;t ask for confirmation.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"26\"/>\n        <source>EFI support required</source>\n        <translation type=\"unfinished\">EFI support required</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"45\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Loading EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"47\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"57\"/>\n        <source>Exporting boot configuration…</source>\n        <translation type=\"unfinished\">Exporting boot configuration…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"67\"/>\n        <source>Importing boot configuration…</source>\n        <translation type=\"unfinished\">Importing boot configuration…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Loaded %0 %1 entries</source>\n        <translation type=\"unfinished\">Loaded %0 %1 entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <source>Boot</source>\n        <translation type=\"unfinished\">Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <source>Driver</source>\n        <translation type=\"unfinished\">Driver</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <source>System Preparation</source>\n        <translation type=\"unfinished\">System Preparation</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Hot Key</source>\n        <translation type=\"unfinished\">Hot Key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"78\"/>\n        <source>Are you sure you want to save?\nYour EFI configuration will be overwritten!</source>\n        <translation type=\"unfinished\">Are you sure you want to save?\nYour EFI configuration will be overwritten!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"86\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Saving EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"98\"/>\n        <source>ERROR: %0! %1</source>\n        <translation type=\"unfinished\">ERROR: %0! %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"114\"/>\n        <source>Finished</source>\n        <translation type=\"unfinished\">Finished</translation>\n    </message>\n</context>\n<context>\n    <name>EFIKeySequenceEdit</name>\n    <message>\n        <location filename=\"../src/efikeysequenceedit.cpp\" line=\"109\"/>\n        <source>Press hot key</source>\n        <translation type=\"unfinished\">Press hot key</translation>\n    </message>\n</context>\n<context>\n    <name>FilePathDialog</name>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"12\"/>\n        <source>File path editor</source>\n        <translation type=\"unfinished\">File path editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"47\"/>\n        <source>PCI</source>\n        <translation type=\"unfinished\">PCI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"80\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"86\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"196\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"202\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"218\"/>\n        <source>Function</source>\n        <translation type=\"unfinished\">Function</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"121\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"127\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"143\"/>\n        <source>Device</source>\n        <translation type=\"unfinished\">Device</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"721\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"727\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"742\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"835\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"841\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"856\"/>\n        <source>HID</source>\n        <translation type=\"unfinished\">HID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"761\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"767\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"782\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"896\"/>\n        <source>UID</source>\n        <translation type=\"unfinished\">UID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1813\"/>\n        <source>USB</source>\n        <translation type=\"unfinished\">USB</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1819\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1893\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1909\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3688\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3710\"/>\n        <source>Interface</source>\n        <translation type=\"unfinished\">Interface</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7442\"/>\n        <source>Vendor</source>\n        <translation type=\"unfinished\">Vendor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7445\"/>\n        <source>Vendor settings</source>\n        <translation type=\"unfinished\">Vendor settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7448\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1778\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1793\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5824\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6348\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7117\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7546\"/>\n        <source>GUID</source>\n        <translation type=\"unfinished\">GUID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5539\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7587\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7850\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7853\"/>\n        <source>Data format</source>\n        <translation type=\"unfinished\">Data format</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5542\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7590\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7856\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5546\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5869\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7860\"/>\n        <source>BASE64</source>\n        <translation type=\"unfinished\">BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1168\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5551\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5874\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7865\"/>\n        <source>UTF-16</source>\n        <translation type=\"unfinished\">UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1173\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5556\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7604\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7870\"/>\n        <source>UTF-8</source>\n        <translation type=\"unfinished\">UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5561\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7875\"/>\n        <source>HEX</source>\n        <translation type=\"unfinished\">HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5523\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5901\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7888\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7891\"/>\n        <source>Data</source>\n        <translation type=\"unfinished\">Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7894\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7565\"/>\n        <source>Vendor data</source>\n        <translation type=\"unfinished\">Vendor data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7481\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7757\"/>\n        <source>Type</source>\n        <translation type=\"unfinished\">Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7478\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7500\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7504\"/>\n        <source>HW</source>\n        <translation type=\"unfinished\">HW</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7509\"/>\n        <source>MSG</source>\n        <translation type=\"unfinished\">MSG</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7514\"/>\n        <source>MEDIA</source>\n        <translation type=\"unfinished\">MEDIA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2292\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2298\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2313\"/>\n        <source>MAC</source>\n        <translation type=\"unfinished\">MAC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2265\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;MAC settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;MAC settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2374\"/>\n        <source>IPv4</source>\n        <translation type=\"unfinished\">IPv4</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2380\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv4 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv4 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2569\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2591\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2925\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2931\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2947\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4110\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4116\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4132\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6616\"/>\n        <source>Protocol</source>\n        <translation type=\"unfinished\">Protocol</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3003\"/>\n        <source>Static</source>\n        <translation type=\"unfinished\">Static</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2692\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Subnet mask.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Subnet mask.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2730\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5479\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5486\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5503\"/>\n        <source>IPv6</source>\n        <translation type=\"unfinished\">IPv6</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2736\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv6 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv6 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3008\"/>\n        <source>Stateless auto-configuration</source>\n        <translation type=\"unfinished\">Stateless auto-configuration</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3013\"/>\n        <source>Stateful auto-configuration</source>\n        <translation type=\"unfinished\">Stateful auto-configuration</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3920\"/>\n        <source>SATA</source>\n        <translation type=\"unfinished\">SATA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SATA settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SATA settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1387\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1393\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1409\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1658\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1664\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1679\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3900\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4035\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4041\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4057\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4191\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4197\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4212\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4496\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4502\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4610\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4616\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4988\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5009\"/>\n        <source>LUN</source>\n        <translation type=\"unfinished\">LUN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4885\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4901\"/>\n        <source>URI</source>\n        <translation type=\"unfinished\">URI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6105\"/>\n        <source>Disk</source>\n        <translation type=\"unfinished\">Disk</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6102\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6123\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6126\"/>\n        <source>Choose disk</source>\n        <translation type=\"unfinished\">Choose disk</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6129\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Choose disk from discovered in the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Choose disk from discovered in the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6133\"/>\n        <source>Custom</source>\n        <translation type=\"unfinished\">Custom</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6147\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6150\"/>\n        <source>Reload drives</source>\n        <translation type=\"unfinished\">Reload drives</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reload system drives list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reload system drives list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6343\"/>\n        <source>MBR</source>\n        <translation type=\"unfinished\">MBR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6177\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6183\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6199\"/>\n        <source>Partition</source>\n        <translation type=\"unfinished\">Partition</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6720\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6741\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6797\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6812\"/>\n        <source>Name</source>\n        <translation type=\"unfinished\">Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7176\"/>\n        <source>BIOS Boot Specification</source>\n        <translation type=\"unfinished\">BIOS Boot Specification</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7405\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7411\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7427\"/>\n        <source>Description</source>\n        <translation type=\"unfinished\">Description</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7639\"/>\n        <source>End</source>\n        <translation type=\"unfinished\">End</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7669\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7672\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7678\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7797\"/>\n        <source>Sub-Type</source>\n        <translation type=\"unfinished\">Sub-Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7675\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7697\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7701\"/>\n        <source>End This Instance</source>\n        <translation type=\"unfinished\">End This Instance</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7706\"/>\n        <source>End Entire</source>\n        <translation type=\"unfinished\">End Entire</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7718\"/>\n        <source>Unknown</source>\n        <translation type=\"unfinished\">Unknown</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"50\"/>\n        <source>The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.</source>\n        <translation type=\"unfinished\">The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"53\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"77\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"99\"/>\n        <source>PCI Function Number.</source>\n        <translation type=\"unfinished\">PCI Function Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"83\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"105\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Function Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Function Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"118\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"140\"/>\n        <source>PCI Device Number.</source>\n        <translation type=\"unfinished\">PCI Device Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"124\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Device Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Device Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"163\"/>\n        <source>PCCARD</source>\n        <translation type=\"unfinished\">PCCARD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"166\"/>\n        <source>PCCARD Settings.</source>\n        <translation type=\"unfinished\">PCCARD Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCCARD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCCARD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"193\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"215\"/>\n        <source>Function Number (0 = First Function).</source>\n        <translation type=\"unfinished\">Function Number (0 = First Function).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"199\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"221\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Function Number (0 = First Function).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Function Number (0 = First Function).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"238\"/>\n        <source>Memory Mapped</source>\n        <translation type=\"unfinished\">Memory Mapped</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"241\"/>\n        <source>Memory Mapped Settings.</source>\n        <translation type=\"unfinished\">Memory Mapped Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Memory Mapped Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Memory Mapped Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"268\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"290\"/>\n        <source>The type of memory to allocate.</source>\n        <translation type=\"unfinished\">The type of memory to allocate.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"271\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"293\"/>\n        <source>Memory Type</source>\n        <translation type=\"unfinished\">Memory Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"274\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"296\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The type of memory to allocate.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The type of memory to allocate.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"300\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1584\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1738\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1753\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3145\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3160\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4416\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4437\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6868\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6883\"/>\n        <source>Reserved</source>\n        <translation type=\"unfinished\">Reserved</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"305\"/>\n        <source>Loader Code</source>\n        <translation type=\"unfinished\">Loader Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"310\"/>\n        <source>Loader Data</source>\n        <translation type=\"unfinished\">Loader Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"315\"/>\n        <source>Boot Services Code</source>\n        <translation type=\"unfinished\">Boot Services Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"320\"/>\n        <source>Boot Services Data</source>\n        <translation type=\"unfinished\">Boot Services Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"325\"/>\n        <source>Runtime Services Code</source>\n        <translation type=\"unfinished\">Runtime Services Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"330\"/>\n        <source>Runtime Services Data</source>\n        <translation type=\"unfinished\">Runtime Services Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"335\"/>\n        <source>Conventional</source>\n        <translation type=\"unfinished\">Conventional</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"340\"/>\n        <source>Unusable</source>\n        <translation type=\"unfinished\">Unusable</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"345\"/>\n        <source>ACPI Reclaim</source>\n        <translation type=\"unfinished\">ACPI Reclaim</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"350\"/>\n        <source>ACPI Memory NVS</source>\n        <translation type=\"unfinished\">ACPI Memory NVS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"355\"/>\n        <source>Memory Mapped IO</source>\n        <translation type=\"unfinished\">Memory Mapped IO</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"360\"/>\n        <source>Memory Mapped IO Port Space</source>\n        <translation type=\"unfinished\">Memory Mapped IO Port Space</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"365\"/>\n        <source>Pal Code</source>\n        <translation type=\"unfinished\">Pal Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"370\"/>\n        <source>Persistent</source>\n        <translation type=\"unfinished\">Persistent</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"375\"/>\n        <source>Unaccepted</source>\n        <translation type=\"unfinished\">Unaccepted</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"383\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7013\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7034\"/>\n        <source>Starting Memory Address.</source>\n        <translation type=\"unfinished\">Starting Memory Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"386\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"407\"/>\n        <source>Start Address</source>\n        <translation type=\"unfinished\">Start Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"389\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7019\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7040\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"423\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7053\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7074\"/>\n        <source>Ending Memory Address.</source>\n        <translation type=\"unfinished\">Ending Memory Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"426\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"432\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"447\"/>\n        <source>End Address</source>\n        <translation type=\"unfinished\">End Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"429\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7080\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ending Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ending Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"467\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"522\"/>\n        <source>Controller</source>\n        <translation type=\"unfinished\">Controller</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"470\"/>\n        <source>Controller settings.</source>\n        <translation type=\"unfinished\">Controller settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"473\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"519\"/>\n        <source>Controller number.</source>\n        <translation type=\"unfinished\">Controller number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"525\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"542\"/>\n        <source>BMC</source>\n        <translation type=\"unfinished\">BMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"545\"/>\n        <source>The Device Path for a Baseboard Management Controller (BMC) host interface.</source>\n        <translation type=\"unfinished\">The Device Path for a Baseboard Management Controller (BMC) host interface.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"548\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for a Baseboard Management Controller (BMC) host interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for a Baseboard Management Controller (BMC) host interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"602\"/>\n        <source>The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.</source>\n        <translation type=\"unfinished\">The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"579\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"589\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2332\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2354\"/>\n        <source>Interface Type</source>\n        <translation type=\"unfinished\">Interface Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"582\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"612\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"625\"/>\n        <source>Keyboard Controller Style</source>\n        <translation type=\"unfinished\">Keyboard Controller Style</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"630\"/>\n        <source>Server Management Interface Chip</source>\n        <translation type=\"unfinished\">Server Management Interface Chip</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"635\"/>\n        <source>Block Transfer</source>\n        <translation type=\"unfinished\">Block Transfer</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"643\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"664\"/>\n        <source>Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.</source>\n        <translation type=\"unfinished\">Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"667\"/>\n        <source>Base Address</source>\n        <translation type=\"unfinished\">Base Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"670\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"688\"/>\n        <source>ACPI</source>\n        <translation type=\"unfinished\">ACPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"805\"/>\n        <source>This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.</source>\n        <translation type=\"unfinished\">This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"808\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"718\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"739\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"832\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"853\"/>\n        <source>Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.</source>\n        <translation type=\"unfinished\">Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"724\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"745\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"838\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"859\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"779\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"872\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"893\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.</source>\n        <translation type=\"unfinished\">Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"764\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"785\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"899\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"802\"/>\n        <source>Expanded</source>\n        <translation type=\"unfinished\">Expanded</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"912\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"933\"/>\n        <source>Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.</source>\n        <translation type=\"unfinished\">Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"915\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"921\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"936\"/>\n        <source>CID</source>\n        <translation type=\"unfinished\">CID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"918\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"939\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"952\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"974\"/>\n        <source>Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.</source>\n        <translation type=\"unfinished\">Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"955\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"961\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"977\"/>\n        <source>HIDSTR</source>\n        <translation type=\"unfinished\">HIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"958\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"980\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"987\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1009\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.</source>\n        <translation type=\"unfinished\">Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"990\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"996\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1012\"/>\n        <source>UIDSTR</source>\n        <translation type=\"unfinished\">UIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"993\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1015\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1044\"/>\n        <source>Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.</source>\n        <translation type=\"unfinished\">Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1025\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1031\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1047\"/>\n        <source>CIDSTR</source>\n        <translation type=\"unfinished\">CIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1028\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1050\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1061\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1094\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1100\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1115\"/>\n        <source>ADR</source>\n        <translation type=\"unfinished\">ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1064\"/>\n        <source>The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.</source>\n        <translation type=\"unfinished\">The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1067\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1091\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1112\"/>\n        <source>ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required</source>\n        <translation type=\"unfinished\">ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1097\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1118\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1131\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1192\"/>\n        <source>This device path may optionally contain more than one ADR entry.</source>\n        <translation type=\"unfinished\">This device path may optionally contain more than one ADR entry.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1195\"/>\n        <source>Additional ADR</source>\n        <translation type=\"unfinished\">Additional ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1198\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path may optionally contain more than one ADR entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path may optionally contain more than one ADR entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1153\"/>\n        <source>Additional ADR format.</source>\n        <translation type=\"unfinished\">Additional ADR format.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1156\"/>\n        <source>Additional ADR format</source>\n        <translation type=\"unfinished\">Additional ADR format</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1159\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Additional ADR format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Additional ADR format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1209\"/>\n        <source>NVDIMM</source>\n        <translation type=\"unfinished\">NVDIMM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1212\"/>\n        <source>This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.</source>\n        <translation type=\"unfinished\">This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1260\"/>\n        <source>NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.</source>\n        <translation type=\"unfinished\">NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1242\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1248\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1263\"/>\n        <source>NFIT Device Handle</source>\n        <translation type=\"unfinished\">NFIT Device Handle</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1245\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1284\"/>\n        <source>ATAPI</source>\n        <translation type=\"unfinished\">ATAPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1287\"/>\n        <source>ATAPI Settings.</source>\n        <translation type=\"unfinished\">ATAPI Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1336\"/>\n        <source>Set to zero for primary or one for secondary.</source>\n        <translation type=\"unfinished\">Set to zero for primary or one for secondary.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1317\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1323\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1339\"/>\n        <source>Primary</source>\n        <translation type=\"unfinished\">Primary</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1320\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1342\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for primary or one for secondary.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for primary or one for secondary.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1349\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1371\"/>\n        <source>Set to zero for master or one for slave mode.</source>\n        <translation type=\"unfinished\">Set to zero for master or one for slave mode.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1374\"/>\n        <source>Slave</source>\n        <translation type=\"unfinished\">Slave</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1377\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for master or one for slave mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for master or one for slave mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1384\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1406\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4054\"/>\n        <source>Logical Unit Number.</source>\n        <translation type=\"unfinished\">Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1390\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1412\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4038\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1429\"/>\n        <source>SCSI</source>\n        <translation type=\"unfinished\">SCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1432\"/>\n        <source>SCSI Settings.</source>\n        <translation type=\"unfinished\">SCSI Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1435\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1481\"/>\n        <source>Target ID on the SCSI bus (PUN).</source>\n        <translation type=\"unfinished\">Target ID on the SCSI bus (PUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1962\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1984\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4969\"/>\n        <source>Target ID</source>\n        <translation type=\"unfinished\">Target ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1465\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1487\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the SCSI bus (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the SCSI bus (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4985\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5006\"/>\n        <source>Logical Unit Number (LUN).</source>\n        <translation type=\"unfinished\">Logical Unit Number (LUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5012\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1545\"/>\n        <source>Fibre Channel</source>\n        <translation type=\"unfinished\">Fibre Channel</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1548\"/>\n        <source>Fibre Channel Settings</source>\n        <translation type=\"unfinished\">Fibre Channel Settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1551\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1596\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1750\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4434\"/>\n        <source>Reserved.</source>\n        <translation type=\"unfinished\">Reserved.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1581\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1602\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1756\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3142\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4419\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1615\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1636\"/>\n        <source>Fibre Channel World Wide Name.</source>\n        <translation type=\"unfinished\">Fibre Channel World Wide Name.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1624\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1639\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4456\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4477\"/>\n        <source>World Wide Name</source>\n        <translation type=\"unfinished\">World Wide Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1621\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1642\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel World Wide Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel World Wide Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1676\"/>\n        <source>Fibre Channel Logical Unit Number.</source>\n        <translation type=\"unfinished\">Fibre Channel Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1661\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1682\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1699\"/>\n        <source>Firewire</source>\n        <translation type=\"unfinished\">Firewire</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1702\"/>\n        <source>Firewire Settings.</source>\n        <translation type=\"unfinished\">Firewire Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1705\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firewire Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firewire Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1790\"/>\n        <source>1394 Global Unique ID (GUID)</source>\n        <translation type=\"unfinished\">1394 Global Unique ID (GUID)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1796\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 Global Unique ID (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 Global Unique ID (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1816\"/>\n        <source>USB settings.</source>\n        <translation type=\"unfinished\">USB settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1865\"/>\n        <source>USB Parent Port Number.</source>\n        <translation type=\"unfinished\">USB Parent Port Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1852\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1868\"/>\n        <source>Parent Port</source>\n        <translation type=\"unfinished\">Parent Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1871\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Parent Port Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Parent Port Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1906\"/>\n        <source>USB Interface Number.</source>\n        <translation type=\"unfinished\">USB Interface Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1912\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1929\"/>\n        <source>I2O</source>\n        <translation type=\"unfinished\">I2O</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1932\"/>\n        <source>I2O Settings</source>\n        <translation type=\"unfinished\">I2O Settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1935\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;I2O Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;I2O Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1981\"/>\n        <source>Target ID (TID) for a device.</source>\n        <translation type=\"unfinished\">Target ID (TID) for a device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1965\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1987\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID (TID) for a device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID (TID) for a device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2004\"/>\n        <source>InfiniBand</source>\n        <translation type=\"unfinished\">InfiniBand</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2007\"/>\n        <source>InfiniBand Settings.</source>\n        <translation type=\"unfinished\">InfiniBand Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2010\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;InfiniBand Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;InfiniBand Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2034\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2067\"/>\n        <source>Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.</source>\n        <translation type=\"unfinished\">Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2043\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2055\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2076\"/>\n        <source>Resource Flags</source>\n        <translation type=\"unfinished\">Resource Flags</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2046\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2079\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2098\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2119\"/>\n        <source>128-bit Global Identifier for remote fabric port</source>\n        <translation type=\"unfinished\">128-bit Global Identifier for remote fabric port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2101\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2122\"/>\n        <source>PORT GID</source>\n        <translation type=\"unfinished\">PORT GID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2104\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2125\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;128-bit Global Identifier for remote fabric port&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;128-bit Global Identifier for remote fabric port&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2135\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2156\"/>\n        <source>64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)</source>\n        <translation type=\"unfinished\">64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2138\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2144\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2159\"/>\n        <source>IOC GUID/Service ID</source>\n        <translation type=\"unfinished\">IOC GUID/Service ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2141\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2162\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2175\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2196\"/>\n        <source>64-bit persistent ID of remote IOC port.</source>\n        <translation type=\"unfinished\">64-bit persistent ID of remote IOC port.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2184\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2199\"/>\n        <source>Target Port ID</source>\n        <translation type=\"unfinished\">Target Port ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2181\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote IOC port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote IOC port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2236\"/>\n        <source>64-bit persistent ID of remote device.</source>\n        <translation type=\"unfinished\">64-bit persistent ID of remote device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2239\"/>\n        <source>Device ID</source>\n        <translation type=\"unfinished\">Device ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2259\"/>\n        <source>MAC Address</source>\n        <translation type=\"unfinished\">MAC Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2262\"/>\n        <source>MAC settings.</source>\n        <translation type=\"unfinished\">MAC settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2289\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2310\"/>\n        <source>The MAC address for a network interface padded with 0s.</source>\n        <translation type=\"unfinished\">The MAC address for a network interface padded with 0s.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2295\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2316\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The MAC address for a network interface padded with 0s.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The MAC address for a network interface padded with 0s.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2329\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2351\"/>\n        <source>Network interface type (i.e., 802.3, FDDI). See RFC 3232.</source>\n        <translation type=\"unfinished\">Network interface type (i.e., 802.3, FDDI). See RFC 3232.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2357\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network interface type (i.e., 802.3, FDDI). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network interface type (i.e., 802.3, FDDI). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2377\"/>\n        <source>IPv4 settings.</source>\n        <translation type=\"unfinished\">IPv4 settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2425\"/>\n        <source>The local IPv4 address.</source>\n        <translation type=\"unfinished\">The local IPv4 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2407\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2763\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2784\"/>\n        <source>Local IP Address</source>\n        <translation type=\"unfinished\">Local IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2431\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2465\"/>\n        <source>The remote IPv4 address.</source>\n        <translation type=\"unfinished\">The remote IPv4 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2447\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2824\"/>\n        <source>Remote IP Address</source>\n        <translation type=\"unfinished\">Remote IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2471\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2862\"/>\n        <source>The local port number.</source>\n        <translation type=\"unfinished\">The local port number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2487\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2865\"/>\n        <source>Local Port</source>\n        <translation type=\"unfinished\">Local Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2490\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2547\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2903\"/>\n        <source>The remote port number.</source>\n        <translation type=\"unfinished\">The remote port number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2550\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2906\"/>\n        <source>Remote Port</source>\n        <translation type=\"unfinished\">Remote Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2553\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2909\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2566\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2588\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2922\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2944\"/>\n        <source>The network protocol (i.e., UDP, TCP). See RFC 3232.</source>\n        <translation type=\"unfinished\">The network protocol (i.e., UDP, TCP). See RFC 3232.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2928\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2950\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The network protocol (i.e., UDP, TCP). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The network protocol (i.e., UDP, TCP). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2631\"/>\n        <source>0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.</source>\n        <translation type=\"unfinished\">0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2635\"/>\n        <source>Static IP Address</source>\n        <translation type=\"unfinished\">Static IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2667\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3083\"/>\n        <source>The Gateway IP Address.</source>\n        <translation type=\"unfinished\">The Gateway IP Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3071\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3086\"/>\n        <source>Gateway IP Address</source>\n        <translation type=\"unfinished\">Gateway IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2673\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Gateway IP Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Gateway IP Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2686\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2707\"/>\n        <source>Subnet mask.</source>\n        <translation type=\"unfinished\">Subnet mask.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2689\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2695\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2710\"/>\n        <source>Subnet Mask</source>\n        <translation type=\"unfinished\">Subnet Mask</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2733\"/>\n        <source>IPv6 settings.</source>\n        <translation type=\"unfinished\">IPv6 settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2760\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2781\"/>\n        <source>The local IPv6 address.</source>\n        <translation type=\"unfinished\">The local IPv6 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2787\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2821\"/>\n        <source>The remote IPv6 address.</source>\n        <translation type=\"unfinished\">The remote IPv6 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2963\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2989\"/>\n        <source>0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.</source>\n        <translation type=\"unfinished\">0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2976\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2994\"/>\n        <source>IP Address Origin</source>\n        <translation type=\"unfinished\">IP Address Origin</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2971\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2997\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3021\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3043\"/>\n        <source>The Prefix Length.</source>\n        <translation type=\"unfinished\">The Prefix Length.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3024\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3030\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3046\"/>\n        <source>Prefix Length</source>\n        <translation type=\"unfinished\">Prefix Length</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3027\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3049\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Prefix Length.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Prefix Length.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3106\"/>\n        <source>UART</source>\n        <translation type=\"unfinished\">UART</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3109\"/>\n        <source>UART Settings.</source>\n        <translation type=\"unfinished\">UART Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3112\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3176\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3197\"/>\n        <source>The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.</source>\n        <translation type=\"unfinished\">The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3179\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3185\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3200\"/>\n        <source>Baud Rate</source>\n        <translation type=\"unfinished\">Baud Rate</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3182\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3203\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3216\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3238\"/>\n        <source>The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.</source>\n        <translation type=\"unfinished\">The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3219\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3225\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3241\"/>\n        <source>Data Bits</source>\n        <translation type=\"unfinished\">Data Bits</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3222\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3257\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3291\"/>\n        <source>The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.</source>\n        <translation type=\"unfinished\">The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3266\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3300\"/>\n        <source>Parity</source>\n        <translation type=\"unfinished\">Parity</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3303\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3313\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3394\"/>\n        <source>Default</source>\n        <translation type=\"unfinished\">Default</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3318\"/>\n        <source>No</source>\n        <translation type=\"unfinished\">No</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3323\"/>\n        <source>Even</source>\n        <translation type=\"unfinished\">Even</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3328\"/>\n        <source>Odd</source>\n        <translation type=\"unfinished\">Odd</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3333\"/>\n        <source>Mark</source>\n        <translation type=\"unfinished\">Mark</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3338\"/>\n        <source>Space</source>\n        <translation type=\"unfinished\">Space</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3346\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3376\"/>\n        <source>The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.</source>\n        <translation type=\"unfinished\">The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3353\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3363\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3383\"/>\n        <source>Stop Bits</source>\n        <translation type=\"unfinished\">Stop Bits</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3356\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3399\"/>\n        <source>1</source>\n        <translation type=\"unfinished\">1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3404\"/>\n        <source>1.5</source>\n        <translation type=\"unfinished\">1.5</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3409\"/>\n        <source>2</source>\n        <translation type=\"unfinished\">2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3421\"/>\n        <source>USB Class</source>\n        <translation type=\"unfinished\">USB Class</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3424\"/>\n        <source>USB Class Settings.</source>\n        <translation type=\"unfinished\">USB Class Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3427\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Class Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Class Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3451\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3472\"/>\n        <source>Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.</source>\n        <translation type=\"unfinished\">Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3454\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3460\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3475\"/>\n        <source>Vendor ID</source>\n        <translation type=\"unfinished\">Vendor ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3457\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3478\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3491\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3512\"/>\n        <source>Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.</source>\n        <translation type=\"unfinished\">Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3515\"/>\n        <source>Product ID</source>\n        <translation type=\"unfinished\">Product ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3518\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3552\"/>\n        <source>The class code assigned by the USB-IF. A value of 0xFF will match any class code.</source>\n        <translation type=\"unfinished\">The class code assigned by the USB-IF. A value of 0xFF will match any class code.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3540\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3555\"/>\n        <source>Device Class</source>\n        <translation type=\"unfinished\">Device Class</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3537\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3558\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The class code assigned by the USB-IF. A value of 0xFF will match any class code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The class code assigned by the USB-IF. A value of 0xFF will match any class code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3592\"/>\n        <source>The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.</source>\n        <translation type=\"unfinished\">The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3574\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3595\"/>\n        <source>Device Subclass</source>\n        <translation type=\"unfinished\">Device Subclass</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3632\"/>\n        <source>The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.</source>\n        <translation type=\"unfinished\">The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3635\"/>\n        <source>Device Protocol</source>\n        <translation type=\"unfinished\">Device Protocol</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3617\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3655\"/>\n        <source>USB WWID</source>\n        <translation type=\"unfinished\">USB WWID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3658\"/>\n        <source>This device path describes a USB device using its serial number.</source>\n        <translation type=\"unfinished\">This device path describes a USB device using its serial number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3661\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a USB device using its serial number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a USB device using its serial number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3685\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3707\"/>\n        <source>USB interface Number.</source>\n        <translation type=\"unfinished\">USB interface Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3747\"/>\n        <source>USB vendor id of the device.</source>\n        <translation type=\"unfinished\">USB vendor id of the device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3750\"/>\n        <source>Device Vendor Id</source>\n        <translation type=\"unfinished\">Device Vendor Id</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3753\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB vendor id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB vendor id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3787\"/>\n        <source>USB product id of the device.</source>\n        <translation type=\"unfinished\">USB product id of the device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3790\"/>\n        <source>Device Product Id</source>\n        <translation type=\"unfinished\">Device Product Id</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3793\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB product id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB product id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3828\"/>\n        <source>Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).</source>\n        <translation type=\"unfinished\">Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3815\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3831\"/>\n        <source>Serial Number</source>\n        <translation type=\"unfinished\">Serial Number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3812\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3845\"/>\n        <source>Device Logical Unit</source>\n        <translation type=\"unfinished\">Device Logical Unit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3848\"/>\n        <source>Device Logical Unit Settings.</source>\n        <translation type=\"unfinished\">Device Logical Unit Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3851\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device Logical Unit Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device Logical Unit Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3897\"/>\n        <source>Logical Unit Number for the interface.</source>\n        <translation type=\"unfinished\">Logical Unit Number for the interface.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3903\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number for the interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number for the interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3923\"/>\n        <source>SATA settings.</source>\n        <translation type=\"unfinished\">SATA settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3950\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3972\"/>\n        <source>The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.</source>\n        <translation type=\"unfinished\">The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3953\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3975\"/>\n        <source>HBA Port</source>\n        <translation type=\"unfinished\">HBA Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3956\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3978\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4013\"/>\n        <source>The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.</source>\n        <translation type=\"unfinished\">The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4000\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4016\"/>\n        <source>Port Multiplier Port</source>\n        <translation type=\"unfinished\">Port Multiplier Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3997\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4019\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4077\"/>\n        <source>iSCSI</source>\n        <translation type=\"unfinished\">iSCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4080\"/>\n        <source>iSCSI Settings.</source>\n        <translation type=\"unfinished\">iSCSI Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4083\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4129\"/>\n        <source>Network Protocol (0 = TCP, 1+ = reserved).</source>\n        <translation type=\"unfinished\">Network Protocol (0 = TCP, 1+ = reserved).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4113\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network Protocol (0 = TCP, 1+ = reserved).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network Protocol (0 = TCP, 1+ = reserved).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4148\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4169\"/>\n        <source>iSCSI Login Options.</source>\n        <translation type=\"unfinished\">iSCSI Login Options.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4151\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4172\"/>\n        <source>Options</source>\n        <translation type=\"unfinished\">Options</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4154\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4175\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Login Options.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Login Options.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4188\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4209\"/>\n        <source>8 byte array containing the iSCSI Logical Unit Number.</source>\n        <translation type=\"unfinished\">8 byte array containing the iSCSI Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4194\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing the iSCSI Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing the iSCSI Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4228\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4250\"/>\n        <source>iSCSI Target Portal group tag the initiator intends to establish a session with.</source>\n        <translation type=\"unfinished\">iSCSI Target Portal group tag the initiator intends to establish a session with.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4231\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4253\"/>\n        <source>Target Portal Group</source>\n        <translation type=\"unfinished\">Target Portal Group</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4234\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4256\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Target Portal group tag the initiator intends to establish a session with.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Target Portal group tag the initiator intends to establish a session with.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4291\"/>\n        <source>iSCSI NodeTarget Name.</source>\n        <translation type=\"unfinished\">iSCSI NodeTarget Name.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4272\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4294\"/>\n        <source>Target Name</source>\n        <translation type=\"unfinished\">Target Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4275\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4297\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI NodeTarget Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI NodeTarget Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4308\"/>\n        <source>VLAN</source>\n        <translation type=\"unfinished\">VLAN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4311\"/>\n        <source>VLAN Settings.</source>\n        <translation type=\"unfinished\">VLAN Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4314\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4360\"/>\n        <source>VLAN identifier (0-4094).</source>\n        <translation type=\"unfinished\">VLAN identifier (0-4094).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4341\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4347\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4363\"/>\n        <source>Vlan ID</source>\n        <translation type=\"unfinished\">Vlan ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4344\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4366\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN identifier (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN identifier (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4383\"/>\n        <source>Fibre Channel Ex</source>\n        <translation type=\"unfinished\">Fibre Channel Ex</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4386\"/>\n        <source>The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation type=\"unfinished\">The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4389\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4474\"/>\n        <source>8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).</source>\n        <translation type=\"unfinished\">8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4480\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4514\"/>\n        <source>8 byte array containing Fibre Channel Logical Unit Number.</source>\n        <translation type=\"unfinished\">8 byte array containing Fibre Channel Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4499\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4520\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4537\"/>\n        <source>SAS Extended Messaging</source>\n        <translation type=\"unfinished\">SAS Extended Messaging</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4540\"/>\n        <source>The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation type=\"unfinished\">The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4543\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4567\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4588\"/>\n        <source>8-byte array of the SAS Address for Serial Attached SCSI Target Port.</source>\n        <translation type=\"unfinished\">8-byte array of the SAS Address for Serial Attached SCSI Target Port.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4570\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4576\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4591\"/>\n        <source>SAS Address</source>\n        <translation type=\"unfinished\">SAS Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4573\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4594\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Address for Serial Attached SCSI Target Port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Address for Serial Attached SCSI Target Port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4628\"/>\n        <source>8-byte array of the SAS Logical Unit Number.</source>\n        <translation type=\"unfinished\">8-byte array of the SAS Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4613\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4634\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4647\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4668\"/>\n        <source>More Information about the device and its interconnect.</source>\n        <translation type=\"unfinished\">More Information about the device and its interconnect.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4650\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4656\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4671\"/>\n        <source>Device and Topology Info</source>\n        <translation type=\"unfinished\">Device and Topology Info</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4653\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4674\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;More Information about the device and its interconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;More Information about the device and its interconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4687\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4709\"/>\n        <source>Relative Target Port (RTP).</source>\n        <translation type=\"unfinished\">Relative Target Port (RTP).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4690\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4696\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4712\"/>\n        <source>Relative Target Port</source>\n        <translation type=\"unfinished\">Relative Target Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4715\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Relative Target Port (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Relative Target Port (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4732\"/>\n        <source>NVM Express NS</source>\n        <translation type=\"unfinished\">NVM Express NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4735\"/>\n        <source>NVM Express Namespace Settings.</source>\n        <translation type=\"unfinished\">NVM Express Namespace Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4738\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM Express Namespace Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM Express Namespace Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4783\"/>\n        <source>Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.</source>\n        <translation type=\"unfinished\">Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4765\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4771\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4786\"/>\n        <source>NSID</source>\n        <translation type=\"unfinished\">NSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4768\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4789\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4802\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4823\"/>\n        <source>This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.</source>\n        <translation type=\"unfinished\">This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4805\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4811\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4826\"/>\n        <source>EUI-64</source>\n        <translation type=\"unfinished\">EUI-64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4808\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4829\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4849\"/>\n        <source>Refer to RFC 3986 for details on the URI contents.</source>\n        <translation type=\"unfinished\">Refer to RFC 3986 for details on the URI contents.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Refer to RFC 3986 for details on the URI contents.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Refer to RFC 3986 for details on the URI contents.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4876\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4898\"/>\n        <source>Instance of the URI pursuant to RFC 3986.</source>\n        <translation type=\"unfinished\">Instance of the URI pursuant to RFC 3986.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4882\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Instance of the URI pursuant to RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Instance of the URI pursuant to RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4915\"/>\n        <source>UFS</source>\n        <translation type=\"unfinished\">UFS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4918\"/>\n        <source>UFS Settings.</source>\n        <translation type=\"unfinished\">UFS Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4966\"/>\n        <source>Target ID on the UFS interface (PUN).</source>\n        <translation type=\"unfinished\">Target ID on the UFS interface (PUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4972\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the UFS interface (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the UFS interface (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5029\"/>\n        <source>SD</source>\n        <translation type=\"unfinished\">SD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5032\"/>\n        <source>SD Settings.</source>\n        <translation type=\"unfinished\">SD Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5035\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5081\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5299\"/>\n        <source>Slot Number</source>\n        <translation type=\"unfinished\">Slot Number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5084\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5280\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5286\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5302\"/>\n        <source>Slot</source>\n        <translation type=\"unfinished\">Slot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5087\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5283\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5305\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Slot Number&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Slot Number&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5104\"/>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\">Bluetooth</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5107\"/>\n        <source>EFI Bluetooth Settings.</source>\n        <translation type=\"unfinished\">EFI Bluetooth Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5110\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI Bluetooth Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI Bluetooth Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5155\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5373\"/>\n        <source>48-bit Bluetooth device address.</source>\n        <translation type=\"unfinished\">48-bit Bluetooth device address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5143\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5158\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5361\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5376\"/>\n        <source>Device Address</source>\n        <translation type=\"unfinished\">Device Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5161\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5379\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-bit Bluetooth device address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-bit Bluetooth device address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5178\"/>\n        <source>Wi-Fi</source>\n        <translation type=\"unfinished\">Wi-Fi</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5181\"/>\n        <source>Wi-Fi Settings.</source>\n        <translation type=\"unfinished\">Wi-Fi Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5184\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wi-Fi Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wi-Fi Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5208\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5230\"/>\n        <source>SSID in octet string.</source>\n        <translation type=\"unfinished\">SSID in octet string.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5211\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5217\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5233\"/>\n        <source>SSID</source>\n        <translation type=\"unfinished\">SSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5214\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5236\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID in octet string.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID in octet string.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5247\"/>\n        <source>eMMC</source>\n        <translation type=\"unfinished\">eMMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5250\"/>\n        <source>Embedded Multi-Media Card Settings.</source>\n        <translation type=\"unfinished\">Embedded Multi-Media Card Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5253\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Embedded Multi-Media Card Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Embedded Multi-Media Card Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5322\"/>\n        <source>BluetoothLE</source>\n        <translation type=\"unfinished\">BluetoothLE</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5325\"/>\n        <source>EFI BluetoothLE Settings.</source>\n        <translation type=\"unfinished\">EFI BluetoothLE Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5328\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI BluetoothLE Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI BluetoothLE Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5416\"/>\n        <source>0x00 - Public Device Address.\n0x01 - Random Device Address.</source>\n        <translation type=\"unfinished\">0x00 - Public Device Address.\n0x01 - Random Device Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5396\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5403\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5420\"/>\n        <source>Address Type</source>\n        <translation type=\"unfinished\">Address Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5399\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5423\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Public Device Address.\n0x01 - Random Device Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Public Device Address.\n0x01 - Random Device Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5428\"/>\n        <source>Public</source>\n        <translation type=\"unfinished\">Public</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5433\"/>\n        <source>Random</source>\n        <translation type=\"unfinished\">Random</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5445\"/>\n        <source>DNS</source>\n        <translation type=\"unfinished\">DNS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5448\"/>\n        <source>DNS Settings.</source>\n        <translation type=\"unfinished\">DNS Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5451\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DNS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DNS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5499\"/>\n        <source>0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.</source>\n        <translation type=\"unfinished\">0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5482\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5506\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5514\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5575\"/>\n        <source>One or more instances of the DNS server address in EFI_IP_ADDRESS.</source>\n        <translation type=\"unfinished\">One or more instances of the DNS server address in EFI_IP_ADDRESS.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5520\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5581\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;One or more instances of the DNS server address in EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;One or more instances of the DNS server address in EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5536\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7584\"/>\n        <source>Data format.</source>\n        <translation type=\"unfinished\">Data format.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5592\"/>\n        <source>NVDIMM NS</source>\n        <translation type=\"unfinished\">NVDIMM NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5595\"/>\n        <source>This device path describes a bootable NVDIMM namespace that is defined by a namespace label.</source>\n        <translation type=\"unfinished\">This device path describes a bootable NVDIMM namespace that is defined by a namespace label.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVDIMM namespace that is defined by a namespace label.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVDIMM namespace that is defined by a namespace label.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5622\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5643\"/>\n        <source>Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.</source>\n        <translation type=\"unfinished\">Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5646\"/>\n        <source>UUID</source>\n        <translation type=\"unfinished\">UUID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5628\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5649\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5663\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5698\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5706\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5724\"/>\n        <source>REST Service</source>\n        <translation type=\"unfinished\">REST Service</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5666\"/>\n        <source>REST Service Settings.</source>\n        <translation type=\"unfinished\">REST Service Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5669\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;REST Service Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;REST Service Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5719\"/>\n        <source>0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.</source>\n        <translation type=\"unfinished\">0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5701\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5727\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5733\"/>\n        <source>Redfish</source>\n        <translation type=\"unfinished\">Redfish</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5738\"/>\n        <source>OData</source>\n        <translation type=\"unfinished\">OData</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5743\"/>\n        <source>Vendor specific</source>\n        <translation type=\"unfinished\">Vendor specific</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5775\"/>\n        <source>0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.</source>\n        <translation type=\"unfinished\">0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5755\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5779\"/>\n        <source>Access Mode</source>\n        <translation type=\"unfinished\">Access Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5782\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5787\"/>\n        <source>In-Band</source>\n        <translation type=\"unfinished\">In-Band</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5792\"/>\n        <source>Out-of-band</source>\n        <translation type=\"unfinished\">Out-of-band</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5821\"/>\n        <source>GUID of vendor specific REST service.</source>\n        <translation type=\"unfinished\">GUID of vendor specific REST service.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID of vendor specific REST service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID of vendor specific REST service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5898\"/>\n        <source>Vendor-defined data.</source>\n        <translation type=\"unfinished\">Vendor-defined data.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5915\"/>\n        <source>NVMe-oF NS</source>\n        <translation type=\"unfinished\">NVMe-oF NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5918\"/>\n        <source>This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.</source>\n        <translation type=\"unfinished\">This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5967\"/>\n        <source>Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.</source>\n        <translation type=\"unfinished\">Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5970\"/>\n        <source>NIDT</source>\n        <translation type=\"unfinished\">NIDT</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5973\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5986\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6007\"/>\n        <source>Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.</source>\n        <translation type=\"unfinished\">Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5989\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5995\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6010\"/>\n        <source>NID</source>\n        <translation type=\"unfinished\">NID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5992\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6013\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6023\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6045\"/>\n        <source>Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.</source>\n        <translation type=\"unfinished\">Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6026\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6048\"/>\n        <source>Subsystem NQN</source>\n        <translation type=\"unfinished\">Subsystem NQN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6029\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6051\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6066\"/>\n        <source>Hard Drive</source>\n        <translation type=\"unfinished\">Hard Drive</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6069\"/>\n        <source>The Hard Drive Media Device Path is used to represent a partition on a hard drive.</source>\n        <translation type=\"unfinished\">The Hard Drive Media Device Path is used to represent a partition on a hard drive.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6072\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Hard Drive Media Device Path is used to represent a partition on a hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Hard Drive Media Device Path is used to represent a partition on a hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6174\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6196\"/>\n        <source>Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].</source>\n        <translation type=\"unfinished\">Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6180\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6236\"/>\n        <source>Starting LBA of the partition on the hard drive.</source>\n        <translation type=\"unfinished\">Starting LBA of the partition on the hard drive.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6466\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6487\"/>\n        <source>Partition Start</source>\n        <translation type=\"unfinished\">Partition Start</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting LBA of the partition on the hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting LBA of the partition on the hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6255\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6276\"/>\n        <source>Size of the partition in units of Logical Blocks.</source>\n        <translation type=\"unfinished\">Size of the partition in units of Logical Blocks.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6258\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6264\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6279\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6527\"/>\n        <source>Partition Size</source>\n        <translation type=\"unfinished\">Partition Size</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6261\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6282\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Logical Blocks.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Logical Blocks.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6295\"/>\n        <source>Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation type=\"unfinished\">Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6301\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6310\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6367\"/>\n        <source>Partition Signature</source>\n        <translation type=\"unfinished\">Partition Signature</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6304\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6322\"/>\n        <source>PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.</source>\n        <translation type=\"unfinished\">PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6328\"/>\n        <source>Signature Type</source>\n        <translation type=\"unfinished\">Signature Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6331\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6338\"/>\n        <source>None</source>\n        <translation type=\"unfinished\">None</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6361\"/>\n        <source>Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation type=\"unfinished\">Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6370\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6392\"/>\n        <source>CD-ROM</source>\n        <translation type=\"unfinished\">CD-ROM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6395\"/>\n        <source>The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.</source>\n        <translation type=\"unfinished\">The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6398\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6444\"/>\n        <source>Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.</source>\n        <translation type=\"unfinished\">Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6425\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6431\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6447\"/>\n        <source>Boot Entry</source>\n        <translation type=\"unfinished\">Boot Entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6450\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6463\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6484\"/>\n        <source>Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.</source>\n        <translation type=\"unfinished\">Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6469\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6490\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6524\"/>\n        <source>Size of the partition in units of Blocks, also called Sectors.</source>\n        <translation type=\"unfinished\">Size of the partition in units of Blocks, also called Sectors.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6530\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Blocks, also called Sectors.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Blocks, also called Sectors.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6547\"/>\n        <source>File Path</source>\n        <translation type=\"unfinished\">File Path</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6550\"/>\n        <source>File Path settings.</source>\n        <translation type=\"unfinished\">File Path settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6553\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File Path settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File Path settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6599\"/>\n        <source>Path including directory and file names.</source>\n        <translation type=\"unfinished\">Path including directory and file names.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6586\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6602\"/>\n        <source>Path Name</source>\n        <translation type=\"unfinished\">Path Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6583\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6605\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Path including directory and file names.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Path including directory and file names.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6619\"/>\n        <source>The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.</source>\n        <translation type=\"unfinished\">The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6622\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6667\"/>\n        <source>The ID of the protocol.</source>\n        <translation type=\"unfinished\">The ID of the protocol.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6673\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ID of the protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ID of the protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6687\"/>\n        <source>Firmware File</source>\n        <translation type=\"unfinished\">Firmware File</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6690\"/>\n        <source>Describes a firmware file in a firmware volume.</source>\n        <translation type=\"unfinished\">Describes a firmware file in a firmware volume.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6693\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware file in a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware file in a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6717\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6738\"/>\n        <source>Firmware file name GUID.</source>\n        <translation type=\"unfinished\">Firmware file name GUID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6723\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6744\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware file name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware file name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6758\"/>\n        <source>Firmware Volume</source>\n        <translation type=\"unfinished\">Firmware Volume</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6761\"/>\n        <source>Describes a firmware volume.</source>\n        <translation type=\"unfinished\">Describes a firmware volume.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6764\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6809\"/>\n        <source>Firmware volume name GUID.</source>\n        <translation type=\"unfinished\">Firmware volume name GUID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware volume name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware volume name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6829\"/>\n        <source>Relative Offset Range</source>\n        <translation type=\"unfinished\">Relative Offset Range</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6832\"/>\n        <source>This device path node specifies a range of offsets relative to the first byte available on the device.</source>\n        <translation type=\"unfinished\">This device path node specifies a range of offsets relative to the first byte available on the device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6835\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path node specifies a range of offsets relative to the first byte available on the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path node specifies a range of offsets relative to the first byte available on the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6880\"/>\n        <source>Reserved for future use.</source>\n        <translation type=\"unfinished\">Reserved for future use.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6886\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved for future use.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved for future use.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6899\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6920\"/>\n        <source>Offset of the first byte, relative to the parent device node.</source>\n        <translation type=\"unfinished\">Offset of the first byte, relative to the parent device node.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6902\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6908\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6923\"/>\n        <source>Starting Offset</source>\n        <translation type=\"unfinished\">Starting Offset</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6905\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the first byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the first byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6939\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6960\"/>\n        <source>Offset of the last byte, relative to the parent device node.</source>\n        <translation type=\"unfinished\">Offset of the last byte, relative to the parent device node.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6942\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6963\"/>\n        <source>Ending Offset</source>\n        <translation type=\"unfinished\">Ending Offset</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6966\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the last byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the last byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6983\"/>\n        <source>RAM Disk</source>\n        <translation type=\"unfinished\">RAM Disk</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6986\"/>\n        <source>RAM Disk Settings.</source>\n        <translation type=\"unfinished\">RAM Disk Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6989\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7016\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7037\"/>\n        <source>Starting Address</source>\n        <translation type=\"unfinished\">Starting Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7056\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7077\"/>\n        <source>Ending Address</source>\n        <translation type=\"unfinished\">Ending Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7093\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7114\"/>\n        <source>GUID that defines the type of the RAM Disk.</source>\n        <translation type=\"unfinished\">GUID that defines the type of the RAM Disk.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7120\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID that defines the type of the RAM Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID that defines the type of the RAM Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7130\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7152\"/>\n        <source>RAM Disk instance number, if supported.</source>\n        <translation type=\"unfinished\">RAM Disk instance number, if supported.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7133\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7155\"/>\n        <source>Disk Instance</source>\n        <translation type=\"unfinished\">Disk Instance</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7158\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk instance number, if supported.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk instance number, if supported.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7179\"/>\n        <source>This Device Path is used to describe the booting of non-EFI-aware operating systems.</source>\n        <translation type=\"unfinished\">This Device Path is used to describe the booting of non-EFI-aware operating systems.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7182\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path is used to describe the booting of non-EFI-aware operating systems.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path is used to describe the booting of non-EFI-aware operating systems.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7206\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7249\"/>\n        <source>An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.</source>\n        <translation type=\"unfinished\">An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7220\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7263\"/>\n        <source>Device Type</source>\n        <translation type=\"unfinished\">Device Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7223\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7290\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7347\"/>\n        <source>Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero</source>\n        <translation type=\"unfinished\">Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7311\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7368\"/>\n        <source>Status Flag</source>\n        <translation type=\"unfinished\">Status Flag</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7371\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7402\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7424\"/>\n        <source>String that describes the boot device to a user.</source>\n        <translation type=\"unfinished\">String that describes the boot device to a user.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7408\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7430\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;String that describes the boot device to a user.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;String that describes the boot device to a user.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7543\"/>\n        <source>Vendor-assigned GUID that defines the data that follows.</source>\n        <translation type=\"unfinished\">Vendor-assigned GUID that defines the data that follows.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7549\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-assigned GUID that defines the data that follows.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-assigned GUID that defines the data that follows.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7562\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7622\"/>\n        <source>Vendor-defined variable size data.</source>\n        <translation type=\"unfinished\">Vendor-defined variable size data.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7568\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7628\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined variable size data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined variable size data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7642\"/>\n        <source>Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.</source>\n        <translation type=\"unfinished\">Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7645\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7721\"/>\n        <source>Unknown file path specifier settings</source>\n        <translation type=\"unfinished\">Unknown file path specifier settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7724\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown file path specifier settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown file path specifier settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7748\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7772\"/>\n        <source>Unknown Type</source>\n        <translation type=\"unfinished\">Unknown Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7754\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7775\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7812\"/>\n        <source>Unknown Sub-Type</source>\n        <translation type=\"unfinished\">Unknown Sub-Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7828\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7831\"/>\n        <source>Unknown data</source>\n        <translation type=\"unfinished\">Unknown data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/filepathdialog.cpp\" line=\"1569\"/>\n        <source>Couldn&apos;t change data format!</source>\n        <translation type=\"unfinished\">Couldn&apos;t change data format!</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeyListModel</name>\n    <message>\n        <location filename=\"../src/hotkeylistmodel.cpp\" line=\"100\"/>\n        <source>boot option</source>\n        <translation type=\"unfinished\">boot option</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Boot option</source>\n        <translation type=\"unfinished\">Boot option</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Hot key</source>\n        <translation type=\"unfinished\">Hot key</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Vendor data</source>\n        <translation type=\"unfinished\">Vendor data</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeysDialog</name>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"20\"/>\n        <source>Hot Keys editor</source>\n        <translation type=\"unfinished\">Hot Keys editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"41\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"44\"/>\n        <source>Hot Keys</source>\n        <translation type=\"unfinished\">Hot Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"47\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"125\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"128\"/>\n        <source>Index filter</source>\n        <translation type=\"unfinished\">Index filter</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"131\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Index filter&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Index filter&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"163\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"166\"/>\n        <source>Remove hot key</source>\n        <translation type=\"unfinished\">Remove hot key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"191\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"194\"/>\n        <source>Add hot key</source>\n        <translation type=\"unfinished\">Add hot key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"197\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <location filename=\"../include/commands.h\" line=\"21\"/>\n        <location filename=\"../include/commands.h\" line=\"66\"/>\n        <source>Change %1 to &quot;%2&quot;</source>\n        <translation type=\"unfinished\">Change %1 to &quot;%2&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"35\"/>\n        <source>Insert %1 entry &quot;%2&quot; at position %3</source>\n        <translation type=\"unfinished\">Insert %1 entry &quot;%2&quot; at position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"50\"/>\n        <source>Remove %1 entry &quot;%2&quot; from position %3</source>\n        <translation type=\"unfinished\">Remove %1 entry &quot;%2&quot; from position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"73\"/>\n        <location filename=\"../src/commands.cpp\" line=\"116\"/>\n        <source>Move %1 entry &quot;%2&quot; from position %3 to %4</source>\n        <translation type=\"unfinished\">Move %1 entry &quot;%2&quot; from position %3 to %4</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <location filename=\"../include/commands.h\" line=\"157\"/>\n        <location filename=\"../include/commands.h\" line=\"198\"/>\n        <source>Change %1 entry &quot;%2&quot; %3 to &quot;%4&quot;</source>\n        <translation type=\"unfinished\">Change %1 entry &quot;%2&quot; %3 to &quot;%4&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <source>Optional data</source>\n        <translation type=\"unfinished\">Optional data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"227\"/>\n        <source>Insert %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation type=\"unfinished\">Insert %1 entry &quot;%2&quot; file path at position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"242\"/>\n        <source>Remove %1 entry &quot;%2&quot; file path from position %3</source>\n        <translation type=\"unfinished\">Remove %1 entry &quot;%2&quot; file path from position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"257\"/>\n        <source>Set %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation type=\"unfinished\">Set %1 entry &quot;%2&quot; file path at position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <source>Insert %1 entry at position %2</source>\n        <translation type=\"unfinished\">Insert %1 entry at position %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>Key</source>\n        <translation type=\"unfinished\">Key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <source>Remove %1 entry from position %2</source>\n        <translation type=\"unfinished\">Remove %1 entry from position %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <location filename=\"../include/commands.h\" line=\"362\"/>\n        <location filename=\"../include/commands.h\" line=\"403\"/>\n        <source>Change %1 entry at position %2 %3 to &quot;%4&quot;</source>\n        <translation type=\"unfinished\">Change %1 entry at position %2 %3 to &quot;%4&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>keys</source>\n        <translation type=\"unfinished\">keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"293\"/>\n        <location filename=\"../src/commands.cpp\" line=\"333\"/>\n        <source>Move %1 entry &quot;%2&quot; file path from position %3 to %4</source>\n        <translation type=\"unfinished\">Move %1 entry &quot;%2&quot; file path from position %3 to %4</translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/efibooteditor_hu.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"hu\" sourcelanguage=\"en_US\">\n<context>\n    <name>BootEntryForm</name>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"169\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"172\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"182\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"185\"/>\n        <source>Description</source>\n        <translation>Leírás</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"198\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"201\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"204\"/>\n        <source>Path</source>\n        <translation>Útvonal</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"415\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"418\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"478\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"481\"/>\n        <source>Optional data</source>\n        <translation>Választható adatok</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"421\"/>\n        <source>Optional</source>\n        <translation>Választható</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"434\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"437\"/>\n        <source>Optional data format</source>\n        <translation>Választható adatformátum</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"6\"/>\n        <source>Boot entry form</source>\n        <translation>Boot belépési űrlap</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"24\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"27\"/>\n        <source>Error</source>\n        <translation>Hiba</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"40\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"43\"/>\n        <source>Error note</source>\n        <translation>Hibajegyzet</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"46\"/>\n        <source>This entry placeholder is shown here to indicate it&apos;s referenced in boot order. It won&apos;t be modified on save, just left as is.</source>\n        <translation>Ez a bejegyzés helyőrző itt látható, jelezve, hogy a rendszerindítási sorrendben hivatkoznak rá. Mentéskor nem módosul, csak úgy marad, ahogy van.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"147\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"150\"/>\n        <source>Hot Keys</source>\n        <translation>Gyorsbillentyűk</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Gyorsbillentyűk&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"188\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry description.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;A bejegyzés leírása.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"222\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"225\"/>\n        <source>Device path</source>\n        <translation>Eszköz útvonala</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Eszköz elérési útja.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"280\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"283\"/>\n        <source>Move file path up</source>\n        <translation>Fájl elérési útvonalának felfelé mozgatása</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"286\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Mozgassa a fájl elérési útját felfelé.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"305\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"308\"/>\n        <source>Move file path down</source>\n        <translation>A fájl elérési útvonalának mozgatása lefelé</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"311\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Mozgassa a fájl elérési útját lefelé.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"330\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"333\"/>\n        <source>Remove file path</source>\n        <translation>Fájl elérési útvonalának eltávolítása</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"336\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Távolítsa el a fájl elérési útját.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"355\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"358\"/>\n        <source>Edit file path</source>\n        <translation>Fájl elérési útvonal szerkesztése</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"361\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Edit file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fájl elérési útvonal szerkesztése.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"380\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"383\"/>\n        <source>Add file path</source>\n        <translation>Fájl elérési útvonal hozzáadása</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fájl elérési útvonal hozzáadása.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Választható adatformátum.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"444\"/>\n        <source>BASE64</source>\n        <translation type=\"unfinished\">BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"449\"/>\n        <source>UTF-16</source>\n        <translation type=\"unfinished\">UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"454\"/>\n        <source>UTF-8</source>\n        <translation type=\"unfinished\">UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"459\"/>\n        <source>HEX</source>\n        <translation type=\"unfinished\">HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"484\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry optional data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Nem kötelező adatok megadása.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"497\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"500\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"503\"/>\n        <source>Attributes</source>\n        <translation>Attribútumok</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"623\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry category.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Belépési kategória.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"122\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Belépési index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"540\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Is entry considered for automatic boot?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;A belépést figyelembe veszik az automatikus rendszerindításnál?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"569\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hidden.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Rejtett.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"585\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Force reconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Újracsatlakozás kényszerítése.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"534\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"537\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"543\"/>\n        <source>Active</source>\n        <translation>Aktív</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"579\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"582\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"588\"/>\n        <source>Force reconnect</source>\n        <translation>Újracsatlakozás kikényszerítése</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"563\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"566\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"572\"/>\n        <source>Hidden</source>\n        <translation>Rejtett</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"598\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"601\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"604\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"617\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"620\"/>\n        <source>Category</source>\n        <translation>Kategória</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"627\"/>\n        <source>Boot</source>\n        <translation>Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"632\"/>\n        <source>App</source>\n        <translation>Alkalmazás</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"68\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"71\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"74\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"116\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"119\"/>\n        <source>Index</source>\n        <translation>Index</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentryform.cpp\" line=\"117\"/>\n        <source>Couldn&apos;t change optional data format!</source>\n        <translation>Az választható adatformátumot nem sikerült módosítani!</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryListModel</name>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"88\"/>\n        <source>Set Next boot to &quot;%1&quot;</source>\n        <translation>Következő indítás beállítása &quot;%1&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"184\"/>\n        <source>index</source>\n        <translation type=\"unfinished\">index</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"200\"/>\n        <source>description</source>\n        <translation>leírás</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"237\"/>\n        <source>optional data</source>\n        <translation>választható adatok</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"253\"/>\n        <source>attributes</source>\n        <translation>attribútumok</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"269\"/>\n        <source>next boot</source>\n        <translation>következő indítás</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryWidget</name>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"12\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"221\"/>\n        <source>Boot entry</source>\n        <translation>Rendszerindítási bejegyzés</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"36\"/>\n        <source>Next boot</source>\n        <translation>Következő rendszerindítás</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"39\"/>\n        <source>Run at next boot</source>\n        <translation>Futtatás a következő rendszerindításkor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"42\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;When chosen, entry will run at next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ha kiválasztja, a bejegyzés a következő rendszerindításkor fog futni.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"140\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"143\"/>\n        <source>Current boot</source>\n        <translation>Aktuális rendszerindítás</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This entry is currently booted.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ez a bejegyzés jelenleg be van töltve.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"181\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Rendszerindító bejegyzés indexe.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"218\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry description, human readable name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Rendszerindítási bejegyzés leírása, ember által olvasható név.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"67\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"70\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"76\"/>\n        <source>Device path</source>\n        <translation>Eszköz elérési útja</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"73\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Eszköz elérési útja.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"113\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data, arguments passed to boot executable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Választható adatok, a rendszerindítási végrehajtható fájlnak átadott argumentumok.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"178\"/>\n        <source>Boot entry index</source>\n        <translation>Rendszerindító bejegyzés indexe</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"184\"/>\n        <source>Index</source>\n        <translation type=\"unfinished\">Index</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"212\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"215\"/>\n        <source>Boot entry description</source>\n        <translation>Rendszerindító bejegyzés leírása</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"107\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"110\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"116\"/>\n        <source>Optional data</source>\n        <translation>Választható adatok</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootData</name>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"111\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"813\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1027\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1361\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1472\"/>\n        <source>%1: not found</source>\n        <translation>%1: nem található</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"120\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"821\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1387\"/>\n        <source>%1: failed deserialization</source>\n        <translation>%1: sikertelen deszerializálás</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Error loading entries</source>\n        <translation>Hiba a bejegyzések betöltése során</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Failed to load some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>Nem sikerült betölteni néhány EFI Boot Manager bejegyzést:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Error saving entries</source>\n        <translation>Hiba a bejegyzések mentése során</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Entry %1(%2): duplicated index!</source>\n        <translation>%1(%2) bejegyzés: duplikált index!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"389\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"419\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"458\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"479\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"487\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"516\"/>\n        <source>Error saving %1</source>\n        <translation>Hiba történt a(z) %1 mentésekor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"407\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"470\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"504\"/>\n        <source>Error removing %1</source>\n        <translation>Hiba a(z) %1 eltávolításakor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Error importing boot configuration</source>\n        <translation>Hiba a rendszerindítási konfiguráció importálásában</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <source>Couldn&apos;t open selected file (%1).</source>\n        <translation>Nem sikerült megnyitni a kiválasztott fájlt (%1).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <source>Parser failed: %1</source>\n        <translation>Az elemzés nem sikerült: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <source>Invalid _Type: %1</source>\n        <translation>Érvénytelen _Típus: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <source>Error exporting boot configuration</source>\n        <translation>Hiba a rendszerindítási konfiguráció exportálásában</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <source>Couldn&apos;t open selected file (%1): %2.</source>\n        <translation>Nem sikerült megnyitni a kiválasztott fájlt (%1): %2.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <source>Couldn&apos;t write into file (%1): %2.</source>\n        <translation>Nem tudott írni a (%1) fájlba: %2.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Error dumping raw EFI data</source>\n        <translation>Hiba a nyers EFI adatok kiírásakor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Failed to dump some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>Nem sikerült kiírni néhány EFI Boot Manager bejegyzést:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"905\"/>\n        <source>Timeout</source>\n        <translation>Időtúllépés</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"921\"/>\n        <source>Apple boot-args</source>\n        <translation type=\"unfinished\">Apple boot-args</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"937\"/>\n        <source>Firmware actions</source>\n        <translation>Firmware-műveletek</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"73\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation>EFI Boot Manager bejegyzések betöltése…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"89\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"787\"/>\n        <source>Searching EFI Boot Manager entries…</source>\n        <translation>EFI Boot Manager bejegyzések keresése…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"116\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"292\"/>\n        <source>Processing EFI Boot Manager entries (%1)…</source>\n        <translation>EFI Boot Manager bejegyzések feldolgozása (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"308\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation>EFI Boot Manager bejegyzések mentése…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"333\"/>\n        <source>Searching old EFI Boot Manager entries…</source>\n        <translation>Régi EFI Boot Manager bejegyzések keresése…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"374\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"416\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"447\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"476\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"484\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"491\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"513\"/>\n        <source>Saving EFI Boot Manager entries (%1)…</source>\n        <translation>EFI Boot Manager bejegyzések mentése (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"467\"/>\n        <source>Removing old EFI Boot Manager entries (%1)…</source>\n        <translation>Régi EFI Boot Manager bejegyzések eltávolítása (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"404\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"501\"/>\n        <source>Removing EFI Boot Manager entries (%1)…</source>\n        <translation>EFI Boot Manager bejegyzések eltávolítása (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"94\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"338\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"792\"/>\n        <source>Couldn&apos;t load EFI Boot Manager variables</source>\n        <translation>Nem sikerült betölteni az EFI Boot Manager változókat</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"100\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"799\"/>\n        <source>Couldn&apos;t find any EFI Boot Manager variables</source>\n        <translation>Nem találtam EFI Boot Manager változókat</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"529\"/>\n        <source>Importing boot configuration…</source>\n        <translation>Rendszerindító konfiguráció importálása…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"565\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"770\"/>\n        <source>Exporting boot configuration…</source>\n        <translation>Rendszerindító konfiguráció exportálása…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"587\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"809\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"875\"/>\n        <source>Exporting EFI Boot Manager entries (%1)…</source>\n        <translation>EFI Boot Manager bejegyzések exportálása (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1013\"/>\n        <source>Importing boot configuration from JSON…</source>\n        <translation>Rendszerindító konfiguráció importálása JSON-ból…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1032\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1366\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1477\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1531\"/>\n        <source>Importing EFI Boot Manager entries (%1)…</source>\n        <translation>EFI Boot Manager bejegyzések importálása (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1035\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1376\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>%1: %2 expected</source>\n        <translation>%1: %2 várható</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1043\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1048\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1053\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <source>number</source>\n        <translation>szám</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1058\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1063\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1068\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1073\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1078\"/>\n        <source>bool</source>\n        <translation type=\"unfinished\">bool</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1109\"/>\n        <source>%1: unknown boot manager capability</source>\n        <translation>%1: ismeretlen rendszerindítás-kezelő képesség</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1122\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1166\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1212\"/>\n        <source>array</source>\n        <translation>tömb</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1333\"/>\n        <source>string</source>\n        <translation type=\"unfinished\">string</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1156\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1192\"/>\n        <source>%1: unknown os indication</source>\n        <translation>%1: Ismeretlen operációs rendszer jelzése</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1083\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1235\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1264\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1290\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1309\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1328\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>object</source>\n        <translation>objektum</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <source>hexadecimal number</source>\n        <translation>hexadecimális szám</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1270\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1315\"/>\n        <source>%1: failed parsing</source>\n        <translation>%1: sikertelen elemzés</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Failed to import some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>Nem sikerült importálni néhány EFI Boot Manager bejegyzést:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1347\"/>\n        <source>Importing boot configuration from raw dump…</source>\n        <translation>Rendszerindító konfiguráció importálása nyers memóriaképből…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1379\"/>\n        <source>object(raw_data: string, efi_attributes: number)</source>\n        <extracomment>Expected JSON structure, thrown as error description. raw_data and efi_attributes are field names in JSON file</extracomment>\n        <translation>object(raw_data: string, efi_attributes: szám)</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"15\"/>\n        <source>Boot</source>\n        <translation>RENDSZERINDÍTÁS</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"16\"/>\n        <source>Driver</source>\n        <translation>Illesztőprogram</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"17\"/>\n        <source>System Preparation</source>\n        <translation>Rendszer előkészítés</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"18\"/>\n        <source>Platform Recovery</source>\n        <translation>Platform helyreállítása</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditor</name>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"18\"/>\n        <source>EFI Boot Editor</source>\n        <translation>EFI rendszerindítás-szerkesztő</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"71\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"412\"/>\n        <source>Boot</source>\n        <translation>Rendszerindítás</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"74\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"98\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"101\"/>\n        <source>Boot entries</source>\n        <translation>Indító bejegyzések</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"77\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"104\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Boot entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Rendszerindító bejegyzések listája.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"133\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"415\"/>\n        <source>Driver</source>\n        <translation>Illesztőprogram</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"136\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"160\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"163\"/>\n        <source>Driver entries</source>\n        <translation>Illesztőprogram-bejegyzések</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"139\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"166\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Driver entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Az illesztőprogram bejegyzéseinek listája.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"195\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"418\"/>\n        <source>System Preparation</source>\n        <translation>Rendszer előkészítés</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"198\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"222\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"225\"/>\n        <source>SysPrep entries</source>\n        <translation>SysPrep bejegyzések</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"201\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of SysPrep entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;A SysPrep-bejegyzések listája.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"257\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"421\"/>\n        <source>Platform Recovery</source>\n        <translation>Platform helyreállítása</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"260\"/>\n        <source>PlatformRecovery entries</source>\n        <translation>PlatformRecovery bejegyzések</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"263\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of PlatformRecovery entries (READONLY).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PlatformRecovery bejegyzések listája (CSAK OLVASHATÓ).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"284\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"287\"/>\n        <source>PlatformRecovery entries (READONLY)</source>\n        <translation>PlatformRecovery bejegyzések(CSAK OLVASHATÓ)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"346\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"349\"/>\n        <source>Add new entry</source>\n        <translation>Új bejegyzés hozzáadása</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"352\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to add new boot entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Kattintson ide új rendszerindító bejegyzés hozzáadásához.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"377\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"380\"/>\n        <source>Duplicate entry</source>\n        <translation>Ismétlődő bejegyzés</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"383\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Duplicate entry&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ismétlődő bejegyzés&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"408\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"411\"/>\n        <source>Remove entry</source>\n        <translation>Bejegyzés eltávolítása</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"414\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to remove currently selected entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Kattintson ide az aktuálisan kiválasztott bejegyzés eltávolításához.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"439\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"442\"/>\n        <source>Move entry up</source>\n        <translation>Mozgassa a bejegyzést felfelé</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"445\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Kattintson ide az aktuálisan kijelölt bejegyzés felfelé mozgatásához.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"470\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"473\"/>\n        <source>Move entry down</source>\n        <translation>Mozgassa a bejegyzést lefelé</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"476\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Kattintson ide az aktuálisan kijelölt bejegyzés lefelé mozgatásához..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"501\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"504\"/>\n        <source>Reorder entries</source>\n        <translation>Bejegyzések újrarendezése</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"507\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click here to adjust the order of all entries based on their position on the list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ide kattintva módosíthatja az összes bejegyzés sorrendjét a listán elfoglalt helyük alapján.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"599\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"608\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Global settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Globális beállítások.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"602\"/>\n        <source>Global</source>\n        <translation>Globális</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"632\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"635\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"654\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"657\"/>\n        <source>Boot manager timeout</source>\n        <translation>Boot manager időtúllépés</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"638\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"660\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot manager timeout.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot manager időtúllépés.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"663\"/>\n        <source>s</source>\n        <translation type=\"unfinished\">s</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"674\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"677\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"686\"/>\n        <source>Firmware details</source>\n        <translation>Firmware részletek</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"680\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"689\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware részletek.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"683\"/>\n        <source>Firmware</source>\n        <translation type=\"unfinished\">Firmware</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"719\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"722\"/>\n        <source>Available firmware features</source>\n        <translation>Elérhető firmware funkciók</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"725\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware features.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Elérhető firmware funkciók.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"728\"/>\n        <source>Features</source>\n        <translation>Funkciók</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"737\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"740\"/>\n        <source>Platform supports reporting of deferred capsule processing by creation of result variable</source>\n        <translation type=\"unfinished\">Platform supports reporting of deferred capsule processing by creation of result variable</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"743\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports reporting of deferred capsule processing by creation of result variable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports reporting of deferred capsule processing by creation of result variable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"746\"/>\n        <source>Capsule Reporting</source>\n        <translation type=\"unfinished\">Capsule Reporting</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"756\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"759\"/>\n        <source>Firmware supports timestamp based revocation</source>\n        <translation>A Firmware támogatja az időbélyeg alapú visszavonást</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"762\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware supports timestamp based revocation.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;A Firmware támogatja az időbélyeg alapú visszavonást.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"765\"/>\n        <source>Timestamp based revocation</source>\n        <translation>Időbélyeg alapú visszavonás</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"775\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"778\"/>\n        <source>Platform supports processing of Firmware Management Protocol update capsule</source>\n        <translation type=\"unfinished\">Platform supports processing of Firmware Management Protocol update capsule</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"781\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of Firmware Management Protocol update capsule.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of Firmware Management Protocol update capsule.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"784\"/>\n        <source>FMP Capsule</source>\n        <translation type=\"unfinished\">FMP Capsule</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"794\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"797\"/>\n        <source>Platform supports processing of file capsules</source>\n        <translation type=\"unfinished\">Platform supports processing of file capsules</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"800\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of file capsules.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of file capsules.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"803\"/>\n        <source>File Capsule</source>\n        <translation type=\"unfinished\">File Capsule</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"828\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"831\"/>\n        <source>Available firmware actions</source>\n        <translation type=\"unfinished\">Available firmware actions</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware actions.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware actions.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"837\"/>\n        <source>Actions</source>\n        <translation type=\"unfinished\">Actions</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"846\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"849\"/>\n        <source>Stop at a firmware user interface on the next boot</source>\n        <translation type=\"unfinished\">Stop at a firmware user interface on the next boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Stop at a firmware user interface on the next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Stop at a firmware user interface on the next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"855\"/>\n        <source>Boot to firmware UI</source>\n        <translation type=\"unfinished\">Boot to firmware UI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"862\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"865\"/>\n        <source>Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot</source>\n        <translation type=\"unfinished\">Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"871\"/>\n        <source>Collect current config</source>\n        <translation type=\"unfinished\">Collect current config</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"878\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"881\"/>\n        <source>Indicate that Platform-defined recovery should commence upon reboot</source>\n        <translation type=\"unfinished\">Indicate that Platform-defined recovery should commence upon reboot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"884\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that Platform-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that Platform-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"887\"/>\n        <source>Start Platform recovery</source>\n        <translation type=\"unfinished\">Start Platform recovery</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"894\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"897\"/>\n        <source>Indicate that OS-defined recovery should commence upon reboot</source>\n        <translation type=\"unfinished\">Indicate that OS-defined recovery should commence upon reboot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"900\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that OS-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that OS-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"903\"/>\n        <source>Start OS recovery</source>\n        <translation type=\"unfinished\">Start OS recovery</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"932\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"935\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"944\"/>\n        <source>Secure boot settings</source>\n        <translation type=\"unfinished\">Secure boot settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"938\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"947\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Secure boot settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Secure boot settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"941\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1025\"/>\n        <source>Secure Boot</source>\n        <translation type=\"unfinished\">Secure Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"978\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"981\"/>\n        <source>Defines whether the system is currently operating in Audit Mode</source>\n        <translation type=\"unfinished\">Defines whether the system is currently operating in Audit Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"984\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Audit Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Audit Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"987\"/>\n        <source>Audit Mode</source>\n        <translation type=\"unfinished\">Audit Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"997\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1000\"/>\n        <source>Defines whether the system is currently operating in Deployed Mode</source>\n        <translation type=\"unfinished\">Defines whether the system is currently operating in Deployed Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1003\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Deployed Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Deployed Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1006\"/>\n        <source>Deployed Mode</source>\n        <translation type=\"unfinished\">Deployed Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1016\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1019\"/>\n        <source>Defines whether the platform firmware is operating with Secure Boot enabled</source>\n        <translation type=\"unfinished\">Defines whether the platform firmware is operating with Secure Boot enabled</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1022\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the platform firmware is operating with Secure Boot enabled.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the platform firmware is operating with Secure Boot enabled.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1035\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1038\"/>\n        <source>Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables</source>\n        <translation type=\"unfinished\">Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1041\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1044\"/>\n        <source>Setup Mode</source>\n        <translation type=\"unfinished\">Setup Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1054\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1057\"/>\n        <source>Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys</source>\n        <translation type=\"unfinished\">Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1063\"/>\n        <source>Vendor Keys</source>\n        <translation type=\"unfinished\">Vendor Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1074\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1077\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1086\"/>\n        <source>Apple settings</source>\n        <translation type=\"unfinished\">Apple settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1080\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apple settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apple settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1083\"/>\n        <source>Apple</source>\n        <translation type=\"unfinished\">Apple</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1113\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1116\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1129\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1132\"/>\n        <source>macOS boot arguments</source>\n        <translation type=\"unfinished\">macOS boot arguments</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1119\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;macOS boot arguments.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;macOS boot arguments.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1161\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1164\"/>\n        <source>Undo stack</source>\n        <translation type=\"unfinished\">Undo stack</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1167\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo stack&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo stack&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1194\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1214\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Help menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Help menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1255\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Exit the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Exit the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1272\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apply changes to the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apply changes to the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1289\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reloads EFI data from the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reloads EFI data from the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1306\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Show information about the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Show information about the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1320\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Export current entries into JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Export current entries into JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1337\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Import EFI data from JSON dump.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Import EFI data from JSON dump.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1354\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dumps raw EFI data for debugging purposes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dumps raw EFI data for debugging purposes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1362\"/>\n        <source>&amp;Undo</source>\n        <translation type=\"unfinished\">&amp;Undo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1365\"/>\n        <source>Undo</source>\n        <translation type=\"unfinished\">Undo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1368\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1371\"/>\n        <source>Ctrl+Z</source>\n        <translation type=\"unfinished\">Ctrl+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1379\"/>\n        <source>&amp;Redo</source>\n        <translation type=\"unfinished\">&amp;Redo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1382\"/>\n        <source>Redo</source>\n        <translation type=\"unfinished\">Redo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1385\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Redo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Redo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1388\"/>\n        <source>Ctrl+Shift+Z</source>\n        <translation type=\"unfinished\">Ctrl+Shift+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1396\"/>\n        <source>Hot &amp;keys</source>\n        <translation type=\"unfinished\">Hot &amp;keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1399\"/>\n        <source>Hot Keys</source>\n        <translation type=\"unfinished\">Hot Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1402\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"593\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"596\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"605\"/>\n        <source>Global settings</source>\n        <translation type=\"unfinished\">Global settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"641\"/>\n        <source>Timeout</source>\n        <translation type=\"unfinished\">Timeout</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1122\"/>\n        <source>Boot args</source>\n        <translation type=\"unfinished\">Boot args</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1188\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1191\"/>\n        <source>File</source>\n        <translation type=\"unfinished\">File</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1197\"/>\n        <source>&amp;File</source>\n        <translation type=\"unfinished\">&amp;File</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1208\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1211\"/>\n        <source>Help</source>\n        <translation type=\"unfinished\">Help</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1217\"/>\n        <source>&amp;Help</source>\n        <translation type=\"unfinished\">&amp;Help</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1225\"/>\n        <source>&amp;Edit</source>\n        <translation type=\"unfinished\">&amp;Edit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1249\"/>\n        <source>&amp;Quit</source>\n        <translation type=\"unfinished\">&amp;Quit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1252\"/>\n        <source>Quit</source>\n        <translation type=\"unfinished\">Quit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1258\"/>\n        <source>Ctrl+Q</source>\n        <translation type=\"unfinished\">Ctrl+Q</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1266\"/>\n        <source>&amp;Save</source>\n        <translation type=\"unfinished\">&amp;Save</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1269\"/>\n        <source>Save</source>\n        <translation type=\"unfinished\">Save</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1275\"/>\n        <source>Ctrl+S</source>\n        <translation type=\"unfinished\">Ctrl+S</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1283\"/>\n        <source>&amp;Reload</source>\n        <translation type=\"unfinished\">&amp;Reload</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1286\"/>\n        <source>Reload</source>\n        <translation type=\"unfinished\">Reload</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1292\"/>\n        <source>Ctrl+R</source>\n        <translation type=\"unfinished\">Ctrl+R</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1300\"/>\n        <source>About &amp;EFI Boot Editor</source>\n        <translation type=\"unfinished\">About &amp;EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1303\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"29\"/>\n        <source>About EFI Boot Editor</source>\n        <translation type=\"unfinished\">About EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1314\"/>\n        <source>&amp;Export</source>\n        <translation type=\"unfinished\">&amp;Export</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1317\"/>\n        <source>Export</source>\n        <translation type=\"unfinished\">Export</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1323\"/>\n        <source>Ctrl+E</source>\n        <translation type=\"unfinished\">Ctrl+E</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1331\"/>\n        <source>&amp;Import</source>\n        <translation type=\"unfinished\">&amp;Import</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1334\"/>\n        <source>Import</source>\n        <translation type=\"unfinished\">Import</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1340\"/>\n        <source>Ctrl+I</source>\n        <translation type=\"unfinished\">Ctrl+I</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1348\"/>\n        <source>&amp;Dump raw EFI data</source>\n        <translation type=\"unfinished\">&amp;Dump raw EFI data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1351\"/>\n        <source>Dump raw EFI data</source>\n        <translation type=\"unfinished\">Dump raw EFI data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"26\"/>\n        <source>Working…</source>\n        <translation type=\"unfinished\">Working…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"92\"/>\n        <source>Undo %1</source>\n        <translation type=\"unfinished\">Undo %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"95\"/>\n        <source>Redo %1</source>\n        <translation type=\"unfinished\">Redo %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"137\"/>\n        <source>Are you sure you want to reload the entries?&lt;br/&gt;ALL of your changes will be lost!</source>\n        <translation type=\"unfinished\">Are you sure you want to reload the entries?&lt;br/&gt;ALL of your changes will be lost!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"162\"/>\n        <source>Are you sure you want to reorder the boot entries?&lt;br/&gt;All indexes will be overwritten!</source>\n        <translation type=\"unfinished\">Are you sure you want to reorder the boot entries?&lt;br/&gt;All indexes will be overwritten!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"221\"/>\n        <source>Are you sure you want to save?&lt;br/&gt;Your EFI configuration will be overwritten!</source>\n        <translation type=\"unfinished\">Are you sure you want to save?&lt;br/&gt;Your EFI configuration will be overwritten!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <source>Open boot configuration dump</source>\n        <translation type=\"unfinished\">Open boot configuration dump</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>JSON documents (*.json)</source>\n        <translation type=\"unfinished\">JSON documents (*.json)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <source>Save boot configuration dump</source>\n        <translation type=\"unfinished\">Save boot configuration dump</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>Save raw EFI dump</source>\n        <translation type=\"unfinished\">Save raw EFI dump</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"31\"/>\n        <source>&lt;h1&gt;EFI Boot Editor&lt;/h1&gt;&lt;p&gt;Version &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Boot Editor for (U)EFI based systems.&lt;/p&gt;</source>\n        <extracomment>About dialog</extracomment>\n        <translation type=\"unfinished\">&lt;h1&gt;EFI Boot Editor&lt;/h1&gt;&lt;p&gt;Version &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Boot Editor for (U)EFI based systems.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"45\"/>\n        <source>&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;Website&lt;/a&gt;&lt;/p&gt;&lt;p&gt;The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.&lt;/p&gt;&lt;p&gt;License: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL Version 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;On Linux uses &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; for EFI variables access.&lt;/p&gt;&lt;p&gt;Uses Tango Icons as fallback icons.&lt;/p&gt;</source>\n        <extracomment>About dialog details</extracomment>\n        <translation type=\"unfinished\">&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;Website&lt;/a&gt;&lt;/p&gt;&lt;p&gt;The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.&lt;/p&gt;&lt;p&gt;License: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL Version 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;On Linux uses &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; for EFI variables access.&lt;/p&gt;&lt;p&gt;Uses Tango Icons as fallback icons.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"330\"/>\n        <source>Reorder %1 entries</source>\n        <translation type=\"unfinished\">Reorder %1 entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"453\"/>\n        <source>Are you sure you want to quit?</source>\n        <translation type=\"unfinished\">Are you sure you want to quit?</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"123\"/>\n        <source>EFI support required</source>\n        <translation type=\"unfinished\">EFI support required</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditorCLI</name>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"13\"/>\n        <source>Boot Editor for (U)EFI based systems.</source>\n        <translation type=\"unfinished\">Boot Editor for (U)EFI based systems.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <source>Export configuration.</source>\n        <translation type=\"unfinished\">Export configuration.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>FILE</source>\n        <translation type=\"unfinished\">FILE</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <source>Dump raw EFI data.</source>\n        <translation type=\"unfinished\">Dump raw EFI data.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>Import configuration from JSON (either from export or raw dump).</source>\n        <translation type=\"unfinished\">Import configuration from JSON (either from export or raw dump).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"19\"/>\n        <source>Force import, don&apos;t ask for confirmation.</source>\n        <translation type=\"unfinished\">Force import, don&apos;t ask for confirmation.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"26\"/>\n        <source>EFI support required</source>\n        <translation type=\"unfinished\">EFI support required</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"45\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Loading EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"47\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"57\"/>\n        <source>Exporting boot configuration…</source>\n        <translation type=\"unfinished\">Exporting boot configuration…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"67\"/>\n        <source>Importing boot configuration…</source>\n        <translation type=\"unfinished\">Importing boot configuration…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Loaded %0 %1 entries</source>\n        <translation>Betöltött %0 %1 bejegyzések</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <source>Boot</source>\n        <translation type=\"unfinished\">Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <source>Driver</source>\n        <translation>Illesztőprogram</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <source>System Preparation</source>\n        <translation>Rendszerelőkészítés</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Hot Key</source>\n        <translation>Gyorsbillentyű</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"78\"/>\n        <source>Are you sure you want to save?\nYour EFI configuration will be overwritten!</source>\n        <translation>Biztosan menteni szeretne?\nA rendszer felülírja az EFI-beállításokat!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"86\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation>EFI Boot Manager bejegyzések mentése…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"98\"/>\n        <source>ERROR: %0! %1</source>\n        <translation>HIBA: %0! %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"114\"/>\n        <source>Finished</source>\n        <translation>Kész</translation>\n    </message>\n</context>\n<context>\n    <name>EFIKeySequenceEdit</name>\n    <message>\n        <location filename=\"../src/efikeysequenceedit.cpp\" line=\"109\"/>\n        <source>Press hot key</source>\n        <translation>Nyomja meg a gyorsbillentyűt</translation>\n    </message>\n</context>\n<context>\n    <name>FilePathDialog</name>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"12\"/>\n        <source>File path editor</source>\n        <translation>Fájl elérési útvonal szerkesztő</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"47\"/>\n        <source>PCI</source>\n        <translation type=\"unfinished\">PCI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"80\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"86\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"196\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"202\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"218\"/>\n        <source>Function</source>\n        <translation>Feladatkör</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"121\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"127\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"143\"/>\n        <source>Device</source>\n        <translation>Eszköz</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"721\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"727\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"742\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"835\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"841\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"856\"/>\n        <source>HID</source>\n        <translation type=\"unfinished\">HID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"761\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"767\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"782\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"896\"/>\n        <source>UID</source>\n        <translation type=\"unfinished\">UID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1813\"/>\n        <source>USB</source>\n        <translation type=\"unfinished\">USB</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1819\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB beállítások.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1893\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1909\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3688\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3710\"/>\n        <source>Interface</source>\n        <translation>Interfész</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7442\"/>\n        <source>Vendor</source>\n        <translation>Forgalmazó</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7445\"/>\n        <source>Vendor settings</source>\n        <translation>Forgalmazói beállítások</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7448\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Forgalmazói beállítások.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1778\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1793\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5824\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6348\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7117\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7546\"/>\n        <source>GUID</source>\n        <translation type=\"unfinished\">GUID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5539\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7587\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7850\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7853\"/>\n        <source>Data format</source>\n        <translation>Adatformátum</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5542\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7590\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7856\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Adatformátum.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5546\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5869\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7860\"/>\n        <source>BASE64</source>\n        <translation type=\"unfinished\">BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1168\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5551\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5874\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7865\"/>\n        <source>UTF-16</source>\n        <translation type=\"unfinished\">UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1173\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5556\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7604\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7870\"/>\n        <source>UTF-8</source>\n        <translation type=\"unfinished\">UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5561\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7875\"/>\n        <source>HEX</source>\n        <translation type=\"unfinished\">HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5523\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5901\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7888\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7891\"/>\n        <source>Data</source>\n        <translation>Adat</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7894\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Adat.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7565\"/>\n        <source>Vendor data</source>\n        <translation>Forgalmazói adatok</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7481\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7757\"/>\n        <source>Type</source>\n        <translation>Típus</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7478\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7500\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Típus.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7504\"/>\n        <source>HW</source>\n        <translation type=\"unfinished\">HW</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7509\"/>\n        <source>MSG</source>\n        <translation type=\"unfinished\">MSG</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7514\"/>\n        <source>MEDIA</source>\n        <translation type=\"unfinished\">MEDIA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2292\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2298\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2313\"/>\n        <source>MAC</source>\n        <translation type=\"unfinished\">MAC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2265\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;MAC settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;MAC beállítások.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2374\"/>\n        <source>IPv4</source>\n        <translation type=\"unfinished\">IPv4</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2380\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv4 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv4 beállítások.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2569\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2591\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2925\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2931\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2947\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4110\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4116\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4132\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6616\"/>\n        <source>Protocol</source>\n        <translation>Protokoll</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3003\"/>\n        <source>Static</source>\n        <translation>Statikus</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2692\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Subnet mask.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Alhálózati maszk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2730\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5479\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5486\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5503\"/>\n        <source>IPv6</source>\n        <translation type=\"unfinished\">IPv6</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2736\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv6 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv6 beállítások.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3008\"/>\n        <source>Stateless auto-configuration</source>\n        <translation>Állapot nélküli automatikus konfiguráció</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3013\"/>\n        <source>Stateful auto-configuration</source>\n        <translation>Állapotfüggő automatikus konfiguráció</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3920\"/>\n        <source>SATA</source>\n        <translation type=\"unfinished\">SATA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SATA settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SATA beállítások.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1387\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1393\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1409\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1658\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1664\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1679\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3900\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4035\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4041\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4057\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4191\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4197\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4212\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4496\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4502\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4610\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4616\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4988\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5009\"/>\n        <source>LUN</source>\n        <translation type=\"unfinished\">LUN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4885\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4901\"/>\n        <source>URI</source>\n        <translation type=\"unfinished\">URI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6105\"/>\n        <source>Disk</source>\n        <translation>Lemez</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6102\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Lemez.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6123\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6126\"/>\n        <source>Choose disk</source>\n        <translation>Válasszon lemezt</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6129\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Choose disk from discovered in the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Válasszon lemezt a rendszerben találtak közül.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6133\"/>\n        <source>Custom</source>\n        <translation>Egyéni</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6147\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6150\"/>\n        <source>Reload drives</source>\n        <translation>Meghajtók újratöltése</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reload system drives list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Rendszermeghajtók listájának újratöltése.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6343\"/>\n        <source>MBR</source>\n        <translation type=\"unfinished\">MBR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6177\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6183\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6199\"/>\n        <source>Partition</source>\n        <translation>Partíció</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6720\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6741\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6797\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6812\"/>\n        <source>Name</source>\n        <translation>Név</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7176\"/>\n        <source>BIOS Boot Specification</source>\n        <translation>BIOS rendszerindítási specifikáció</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7405\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7411\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7427\"/>\n        <source>Description</source>\n        <translation>Leírás</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7639\"/>\n        <source>End</source>\n        <translation>Vége</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7669\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7672\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7678\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7797\"/>\n        <source>Sub-Type</source>\n        <translation>Al-típus</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7675\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7697\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Al-típus.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7701\"/>\n        <source>End This Instance</source>\n        <translation>Vége ennek a példánynak</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7706\"/>\n        <source>End Entire</source>\n        <translation>Teljes befejezés</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7718\"/>\n        <source>Unknown</source>\n        <translation>Ismeretlen</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"50\"/>\n        <source>The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.</source>\n        <translation>A PCI eszköz elérési útja határozza meg a PCI-eszköz PCI konfigurációs terület címének elérési útját.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"53\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;A PCI eszköz elérési útja határozza meg a PCI-eszköz PCI konfigurációs terület címének elérési útját..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"77\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"99\"/>\n        <source>PCI Function Number.</source>\n        <translation>PCI-funkciószám.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"83\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"105\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Function Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI-funkciószám.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"118\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"140\"/>\n        <source>PCI Device Number.</source>\n        <translation>PCI eszköz száma.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"124\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Device Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI eszköz száma.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"163\"/>\n        <source>PCCARD</source>\n        <translation type=\"unfinished\">PCCARD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"166\"/>\n        <source>PCCARD Settings.</source>\n        <translation>PCCARD beállítások.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCCARD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCCARD beállítások.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"193\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"215\"/>\n        <source>Function Number (0 = First Function).</source>\n        <translation>Funkció száma (0 = első funkció).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"199\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"221\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Function Number (0 = First Function).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Funkció száma (0 = első funkció).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"238\"/>\n        <source>Memory Mapped</source>\n        <translation>Memória leképezve</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"241\"/>\n        <source>Memory Mapped Settings.</source>\n        <translation>Memórialeképzési beállítások.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Memory Mapped Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Memórialeképzési beállítások.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"268\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"290\"/>\n        <source>The type of memory to allocate.</source>\n        <translation type=\"unfinished\">The type of memory to allocate.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"271\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"293\"/>\n        <source>Memory Type</source>\n        <translation>Memória típusa</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"274\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"296\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The type of memory to allocate.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;A lefoglalni kívánt memória típusa.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"300\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1584\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1738\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1753\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3145\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3160\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4416\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4437\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6868\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6883\"/>\n        <source>Reserved</source>\n        <translation>Fenntartott</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"305\"/>\n        <source>Loader Code</source>\n        <translation>Betöltő kód</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"310\"/>\n        <source>Loader Data</source>\n        <translation>Adatbetöltő</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"315\"/>\n        <source>Boot Services Code</source>\n        <translation>Rendszerindító szolgáltatások kódja</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"320\"/>\n        <source>Boot Services Data</source>\n        <translation>Rendszerindító szolgáltatás adatai</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"325\"/>\n        <source>Runtime Services Code</source>\n        <translation>Futásidejű szolgáltatások kódja</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"330\"/>\n        <source>Runtime Services Data</source>\n        <translation>Futásidejű szolgáltatások adatai</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"335\"/>\n        <source>Conventional</source>\n        <translation>Hagyományos</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"340\"/>\n        <source>Unusable</source>\n        <translation>Használhatatlan</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"345\"/>\n        <source>ACPI Reclaim</source>\n        <translation>ACPI visszaállítása</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"350\"/>\n        <source>ACPI Memory NVS</source>\n        <translation>ACPI memória NVS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"355\"/>\n        <source>Memory Mapped IO</source>\n        <translation>Memória leképezésű IO</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"360\"/>\n        <source>Memory Mapped IO Port Space</source>\n        <translation>Memória leképezésű IO port tér</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"365\"/>\n        <source>Pal Code</source>\n        <translation type=\"unfinished\">Pal Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"370\"/>\n        <source>Persistent</source>\n        <translation>Tartós</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"375\"/>\n        <source>Unaccepted</source>\n        <translation>Nem elfogadott</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"383\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7013\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7034\"/>\n        <source>Starting Memory Address.</source>\n        <translation>Kezdő memóriacím.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"386\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"407\"/>\n        <source>Start Address</source>\n        <translation>Kezdőcím</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"389\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7019\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7040\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Kezdő memóriacím.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"423\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7053\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7074\"/>\n        <source>Ending Memory Address.</source>\n        <translation>Befejező memóriacím.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"426\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"432\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"447\"/>\n        <source>End Address</source>\n        <translation>Befejező cím</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"429\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7080\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ending Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Befejező memóriacím.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"467\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"522\"/>\n        <source>Controller</source>\n        <translation>Vezérlő</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"470\"/>\n        <source>Controller settings.</source>\n        <translation>Vezérlő beállításai.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"473\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vezérlő beállításai.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"519\"/>\n        <source>Controller number.</source>\n        <translation>Vezérlő száma.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"525\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vezérlő száma.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"542\"/>\n        <source>BMC</source>\n        <translation type=\"unfinished\">BMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"545\"/>\n        <source>The Device Path for a Baseboard Management Controller (BMC) host interface.</source>\n        <translation>Az alaplapi felügyeleti vezérlő (BMC) gazdafelületének eszközútvonala.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"548\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for a Baseboard Management Controller (BMC) host interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Az alaplapi felügyeleti vezérlő (BMC) gazdafelületének eszközútvonala.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"602\"/>\n        <source>The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.</source>\n        <translation>Az alaplapi felügyeleti vezérlő (BMC) gazdafelületének típusa:\n0x00 - Ismeretlen.\n0x01 - KCS: Billentyűzetvezérlő stílusa.\n0x02 - SMIC: Server Management Interface chip.\n0x03 - BT: Blokkátvitel.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"579\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"589\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2332\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2354\"/>\n        <source>Interface Type</source>\n        <translation>Interfész típusa</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"582\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"612\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Az alaplapi felügyeleti vezérlő (BMC) gazdafelületének típusa:\n0x00 - Ismeretlen.\n0x01 - KCS: Billentyűzetvezérlő stílusa.\n0x02 - SMIC: Server Management Interface chip.\n0x03 - BT: Blokkátvitel.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"625\"/>\n        <source>Keyboard Controller Style</source>\n        <translation>Billentyűzetvezérlő stílusa</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"630\"/>\n        <source>Server Management Interface Chip</source>\n        <translation>Szervermenedzsment-interfész chip</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"635\"/>\n        <source>Block Transfer</source>\n        <translation>Blokk átvitel</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"643\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"664\"/>\n        <source>Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.</source>\n        <translation>A BMC alapcíme (akár memória-, akár I/O-cím). Ha a mező legkisebb előjelű bitje 1, akkor a cím az I/O-térben van; egyébként a cím memória leképezésű. A használat részletei az IPMI-interfész specifikációban találhatók.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"667\"/>\n        <source>Base Address</source>\n        <translation>Alapcím</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"670\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;A BMC alapcíme (akár memória-, akár I/O-cím). Ha a mező legkisebb előjelű bitje 1, akkor a cím az I/O-térben van; egyébként a cím memória leképezésű. A használat részletei az IPMI-interfész specifikációban találhatók.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"688\"/>\n        <source>ACPI</source>\n        <translation type=\"unfinished\">ACPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"805\"/>\n        <source>This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.</source>\n        <translation>Ez az eszközútvonal ACPI eszközazonosítókat tartalmaz, amelyek az eszköz Plug and Play hardverazonosítóját és a hozzá tartozó egyedi állandó azonosítót jelentik.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"808\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ez az eszközútvonal ACPI eszközazonosítókat tartalmaz, amelyek az eszköz Plug and Play hardverazonosítóját és a hozzá tartozó egyedi állandó azonosítót jelentik.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"718\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"739\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"832\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"853\"/>\n        <source>Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.</source>\n        <translation>Az eszközök 32 bites tömörített EISA-típusazonosítóban tárolt PnP-hardverazonosítója. Ennek az értéknek meg kell egyeznie az ACPI névtérben lévő megfelelő HID értékkel.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"724\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"745\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"838\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"859\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Az eszközök 32 bites tömörített EISA-típusazonosítóban tárolt PnP-hardverazonosítója. Ennek az értéknek meg kell egyeznie az ACPI névtérben lévő megfelelő HID értékkel.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"779\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"872\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"893\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.</source>\n        <translation>Egyedi azonosító, amelyet az ACPI igényel, ha két eszköznek ugyanaz a HID-je. Ennek az értéknek meg kell egyeznie a megfelelő UID/HID párral is az ACPI névtérben. Csak a 32 bites numerikus érték típusú UID támogatott; így nem szabad karakterláncokat használni az UID-hez az ACPI névtérben.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"764\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"785\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"899\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Egyedi azonosító, amelyet az ACPI igényel, ha két eszköznek ugyanaz a HID-je. Ennek az értéknek meg kell egyeznie a megfelelő UID/HID párral is az ACPI névtérben. Csak a 32 bites numerikus érték típusú UID támogatott; így nem szabad karakterláncokat használni az UID-hez az ACPI névtérben.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"802\"/>\n        <source>Expanded</source>\n        <translation>Kibővített</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"912\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"933\"/>\n        <source>Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.</source>\n        <translation>Az eszközök kompatibilis PnP hardverazonosítója, amelyet egy numerikus 32 bites tömörített EISA-típusú azonosítóban tárolnak. Ennek az értéknek meg kell egyeznie az ACPI-névtérben a megfelelő CID által visszaadott kompatibilis eszközazonosítók legalább egyikével.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"915\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"921\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"936\"/>\n        <source>CID</source>\n        <translation type=\"unfinished\">CID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"918\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"939\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Az eszközök kompatibilis PnP hardverazonosítója, amelyet egy numerikus 32 bites tömörített EISA-típusú azonosítóban tárolnak. Ennek az értéknek meg kell egyeznie az ACPI-névtérben a megfelelő CID által visszaadott kompatibilis eszközazonosítók legalább egyikével.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"952\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"974\"/>\n        <source>Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.</source>\n        <translation>Az eszközök PnP hardverazonosítója karakterláncként tárolva. Ennek az értéknek meg kell egyeznie az ACPI névtérben található megfelelő HID-vel. Ha a karakterlánc hossza 0, akkor a HID mezőt kell használni. Ha a karakterlánc hossza nagyobb, mint 0, akkor ez a mező felváltja a HID-mezőt.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"955\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"961\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"977\"/>\n        <source>HIDSTR</source>\n        <translation type=\"unfinished\">HIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"958\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"980\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Az eszközök PnP hardverazonosítója karakterláncként tárolva. Ennek az értéknek meg kell egyeznie az ACPI névtérben található megfelelő HID-vel. Ha a karakterlánc hossza 0, akkor a HID mezőt kell használni. Ha a karakterlánc hossza nagyobb, mint 0, akkor ez a mező felváltja a HID-mezőt.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"987\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1009\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.</source>\n        <translation>Egyedi azonosító, amelyet az ACPI akkor igényel, ha két eszköznek ugyanaz a HID-je van. Ennek az értéknek meg kell egyeznie a megfelelő UID/HID párral az ACPI névtérben. Ez az érték karakterláncként kerül tárolásra. Ha a karakterlánc hossza 0, akkor az UID mezőt kell használni. Ha a karakterlánc hossza nagyobb, mint 0, akkor ez a mező az UID mezőt helyettesíti.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"990\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"996\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1012\"/>\n        <source>UIDSTR</source>\n        <translation type=\"unfinished\">UIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"993\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1015\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Egyedi azonosító, amelyet az ACPI akkor igényel, ha két eszköznek ugyanaz a HID-je van. Ennek az értéknek meg kell egyeznie a megfelelő UID/HID párral az ACPI névtérben. Ez az érték karakterláncként kerül tárolásra. Ha a karakterlánc hossza 0, akkor az UID mezőt kell használni. Ha a karakterlánc hossza nagyobb, mint 0, akkor ez a mező az UID mezőt helyettesíti.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1044\"/>\n        <source>Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.</source>\n        <translation>Az eszközök kompatibilis PnP hardverazonosítója karakterláncként tárolva. Ennek az értéknek meg kell egyeznie az ACPI névtérben a megfelelő CID által visszaadott kompatibilis eszközazonosítók közül legalább eggyel. Ha a karakterlánc hossza 0, akkor a CID mezőt kell használni. Ha a karakterlánc hossza nagyobb, mint 0, akkor ez a mező a CID mezőt helyettesíti.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1025\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1031\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1047\"/>\n        <source>CIDSTR</source>\n        <translation type=\"unfinished\">CIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1028\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1050\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Az eszközök kompatibilis PnP hardverazonosítója karakterláncként tárolva. Ennek az értéknek meg kell egyeznie az ACPI névtérben a megfelelő CID által visszaadott kompatibilis eszközazonosítók közül legalább eggyel. Ha a karakterlánc hossza 0, akkor a CID mezőt kell használni. Ha a karakterlánc hossza nagyobb, mint 0, akkor ez a mező a CID mezőt helyettesíti.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1061\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1094\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1100\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1115\"/>\n        <source>ADR</source>\n        <translation type=\"unfinished\">ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1064\"/>\n        <source>The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.</source>\n        <translation>Az ADR-eszköz elérési útja a videokimeneti eszköz attribútumainak tárolására szolgál a grafikus kimeneti protokoll támogatásához.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1067\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Az ADR-eszköz elérési útja a videokimeneti eszköz attribútumainak tárolására szolgál a grafikus kimeneti protokoll támogatásához.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1091\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1112\"/>\n        <source>ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required</source>\n        <translation>ADR-érték. Videokimeneti eszközök esetében ennek a mezőnek az értéke az ACPI 3.0 B-2 táblázatából származik. Legalább egy ADR-érték megadása kötelező</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1097\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1118\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR-érték. Videokimeneti eszközök esetében ennek a mezőnek az értéke az ACPI 3.0 B-2 táblázatából származik. Legalább egy ADR-érték megadása kötelező&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1131\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1192\"/>\n        <source>This device path may optionally contain more than one ADR entry.</source>\n        <translation>Ez az eszközútvonal opcionálisan egynél több ADR-bejegyzést is tartalmazhat.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1195\"/>\n        <source>Additional ADR</source>\n        <translation>További ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1198\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path may optionally contain more than one ADR entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ez az eszközútvonal opcionálisan több ADR-bejegyzést is tartalmazhat.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1153\"/>\n        <source>Additional ADR format.</source>\n        <translation>További ADR formátum.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1156\"/>\n        <source>Additional ADR format</source>\n        <translation>További ADR formátum</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1159\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Additional ADR format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;További ADR formátum.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1209\"/>\n        <source>NVDIMM</source>\n        <translation type=\"unfinished\">NVDIMM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1212\"/>\n        <source>This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.</source>\n        <translation>Ez az eszközútvonal egy NVDIMM-eszközt ír le az ACPI 6.0 specifikációban meghatározott NFIT Device Handle azonosítót használva.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ez az eszközútvonal egy NVDIMM-eszközt ír le az ACPI 6.0 specifikációban meghatározott NFIT Device Handle azonosítót használva.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1260\"/>\n        <source>NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.</source>\n        <translation>NFIT Device Handle - Egyedi fizikai azonosító. Lásd az ACPI által definiált eszközök és eszközspecifikus objektumok fejezetet, NVDIMM eszközök alfejezet a leíróhoz használt mezők konkrét definíciójáért.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1242\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1248\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1263\"/>\n        <source>NFIT Device Handle</source>\n        <translation type=\"unfinished\">NFIT Device Handle</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1245\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFIT Device Handle - Egyedi fizikai azonosító. Lásd az ACPI által definiált eszközök és eszközspecifikus objektumok fejezetet, NVDIMM eszközök alfejezet a leíróhoz használt mezők konkrét definíciójáért.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1284\"/>\n        <source>ATAPI</source>\n        <translation type=\"unfinished\">ATAPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1287\"/>\n        <source>ATAPI Settings.</source>\n        <translation>ATAPI beállítások.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI beállítások.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1336\"/>\n        <source>Set to zero for primary or one for secondary.</source>\n        <translation>Elsődlegesen nullára, másodlagosan pedig egyre állítható.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1317\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1323\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1339\"/>\n        <source>Primary</source>\n        <translation>Elsődleges</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1320\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1342\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for primary or one for secondary.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Elsődlegesen nullára, másodlagosan pedig egyre állítható.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1349\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1371\"/>\n        <source>Set to zero for master or one for slave mode.</source>\n        <translation>Master üzemmódban nullára, slave üzemmódban pedig egyre állítható.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1374\"/>\n        <source>Slave</source>\n        <translation type=\"unfinished\">Slave</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1377\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for master or one for slave mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Master üzemmódban nullára, slave üzemmódban pedig egyre állítható.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1384\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1406\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4054\"/>\n        <source>Logical Unit Number.</source>\n        <translation>Logikai egység száma (LUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1390\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1412\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4038\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logikai egység száma (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1429\"/>\n        <source>SCSI</source>\n        <translation type=\"unfinished\">SCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1432\"/>\n        <source>SCSI Settings.</source>\n        <translation>SCSI-beállítások.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1435\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI-beállítások.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1481\"/>\n        <source>Target ID on the SCSI bus (PUN).</source>\n        <translation>Cél azonosítója a SCSI-buszon (PUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1962\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1984\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4969\"/>\n        <source>Target ID</source>\n        <translation>Cél azonosító</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1465\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1487\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the SCSI bus (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Cél azonosítója a SCSI-buszon (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4985\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5006\"/>\n        <source>Logical Unit Number (LUN).</source>\n        <translation>Logikai egység száma (LUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5012\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logikai egység száma (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1545\"/>\n        <source>Fibre Channel</source>\n        <translation type=\"unfinished\">Fibre Channel</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1548\"/>\n        <source>Fibre Channel Settings</source>\n        <translation>Fibre Channel beállítások</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1551\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel beállítások&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1596\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1750\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4434\"/>\n        <source>Reserved.</source>\n        <translation>Fenntartva.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1581\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1602\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1756\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3142\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4419\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fenntartva.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1615\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1636\"/>\n        <source>Fibre Channel World Wide Name.</source>\n        <translation>Fibre Channel World Wide Name.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1624\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1639\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4456\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4477\"/>\n        <source>World Wide Name</source>\n        <translation type=\"unfinished\">World Wide Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1621\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1642\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel World Wide Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel World Wide Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1676\"/>\n        <source>Fibre Channel Logical Unit Number.</source>\n        <translation>Fibre Channel logikai egység száma.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1661\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1682\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel logikai egység száma.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1699\"/>\n        <source>Firewire</source>\n        <translation type=\"unfinished\">Firewire</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1702\"/>\n        <source>Firewire Settings.</source>\n        <translation>Firewire beállítások.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1705\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firewire Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firewire beállítások.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1790\"/>\n        <source>1394 Global Unique ID (GUID)</source>\n        <translation>1394 Globális egyedi azonosító (GUID)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1796\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 Global Unique ID (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 Globális egyedi azonosító (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1816\"/>\n        <source>USB settings.</source>\n        <translation>USB-beállítások.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1865\"/>\n        <source>USB Parent Port Number.</source>\n        <translation type=\"unfinished\">USB Parent Port Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1852\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1868\"/>\n        <source>Parent Port</source>\n        <translation type=\"unfinished\">Parent Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1871\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Parent Port Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Parent Port Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1906\"/>\n        <source>USB Interface Number.</source>\n        <translation>USB interfész száma.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1912\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB interfész száma.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1929\"/>\n        <source>I2O</source>\n        <translation type=\"unfinished\">I2O</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1932\"/>\n        <source>I2O Settings</source>\n        <translation>I2O beállítások</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1935\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;I2O Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;I2O beállítások&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1981\"/>\n        <source>Target ID (TID) for a device.</source>\n        <translation>Egy eszköz célazonosítója (TID).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1965\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1987\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID (TID) for a device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Egy eszköz célazonosítója (TID).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2004\"/>\n        <source>InfiniBand</source>\n        <translation type=\"unfinished\">InfiniBand</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2007\"/>\n        <source>InfiniBand Settings.</source>\n        <translation>InfiniBand beállítások.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2010\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;InfiniBand Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;InfiniBand beállítások.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2034\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2067\"/>\n        <source>Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.</source>\n        <translation>Az InfiniBand-eszköz elérésiút-elemeinek azonosítását/kezelését segítő jelzők:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\n1. bit - a rendszerindítási környezet kiterjesztése.\n2. bit - konzol protokoll.\n3. bit - tárolási protokoll.\n4. bit - hálózati protokoll.\nMinden más bit fenntartva.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2043\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2055\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2076\"/>\n        <source>Resource Flags</source>\n        <translation type=\"unfinished\">Resource Flags</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2046\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2079\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;A zászlók segítenek az InfiniBand eszköz elérési útvonal elemeinek azonosításában/kezelésében:\nBit 0 - IOC/Szolgáltatás (0b = IOC, 1b = Szolgáltatás)\nBit 1 - Kiterjesztett Boot Környezet\nBit 2 - Konzol Protokoll\nBit 3 - Tárolási Protokoll\nBit 4 - Hálózati Protokoll\nMinden egyéb bit fenntartott&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2098\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2119\"/>\n        <source>128-bit Global Identifier for remote fabric port</source>\n        <translation>128 bites globális azonosító távoli hálóporthoz</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2101\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2122\"/>\n        <source>PORT GID</source>\n        <translation type=\"unfinished\">PORT GID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2104\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2125\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;128-bit Global Identifier for remote fabric port&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;128 bites globális azonosító távoli hálóporthoz&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2135\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2156\"/>\n        <source>64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)</source>\n        <translation>64 bites egyedi azonosító a távoli IOC- vagy kiszolgálófolyamathoz. Az erőforrás-jelzők által meghatározott mező értelmezése (0. bit)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2138\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2144\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2159\"/>\n        <source>IOC GUID/Service ID</source>\n        <translation type=\"unfinished\">IOC GUID/Service ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2141\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2162\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64 bites egyedi azonosító a távoli IOC- vagy kiszolgálófolyamathoz. Az erőforrás-jelzők által meghatározott mező értelmezése (0. bit)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2175\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2196\"/>\n        <source>64-bit persistent ID of remote IOC port.</source>\n        <translation>A távoli IOC-port 64 bites állandó azonosítója.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2184\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2199\"/>\n        <source>Target Port ID</source>\n        <translation type=\"unfinished\">Target Port ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2181\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote IOC port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;A távoli IOC-port 64 bites állandó azonosítója.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2236\"/>\n        <source>64-bit persistent ID of remote device.</source>\n        <translation>A távoli eszköz 64 bites állandó azonosítója.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2239\"/>\n        <source>Device ID</source>\n        <translation type=\"unfinished\">Device ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;A távoli eszköz 64 bites állandó azonosítója.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2259\"/>\n        <source>MAC Address</source>\n        <translation>MAC cím</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2262\"/>\n        <source>MAC settings.</source>\n        <translation>MAC-beállítások.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2289\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2310\"/>\n        <source>The MAC address for a network interface padded with 0s.</source>\n        <translation>A hálózati interfész MAC-címe 0-akkal kitöltve.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2295\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2316\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The MAC address for a network interface padded with 0s.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;A hálózati interfész MAC-címe 0-akkal kitöltve.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2329\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2351\"/>\n        <source>Network interface type (i.e., 802.3, FDDI). See RFC 3232.</source>\n        <translation>Hálózati interfész típusa (pl. 802.3, FDDI). Lásd RFC 3232.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2357\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network interface type (i.e., 802.3, FDDI). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hálózati interfész típusa (pl. 802.3, FDDI). Lásd RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2377\"/>\n        <source>IPv4 settings.</source>\n        <translation>IPv4 beállítások.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2425\"/>\n        <source>The local IPv4 address.</source>\n        <translation>A helyi IPv4-cím.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2407\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2763\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2784\"/>\n        <source>Local IP Address</source>\n        <translation>Helyi IP-cím</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2431\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;A helyi IPv4-cím.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2465\"/>\n        <source>The remote IPv4 address.</source>\n        <translation>A távoli IPv4-cím.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2447\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2824\"/>\n        <source>Remote IP Address</source>\n        <translation>Távoli IP-cím</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2471\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;A távoli IPv4-cím.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2862\"/>\n        <source>The local port number.</source>\n        <translation>A helyi port száma.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2487\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2865\"/>\n        <source>Local Port</source>\n        <translation>Helyi port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2490\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;A helyi port száma.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2547\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2903\"/>\n        <source>The remote port number.</source>\n        <translation>A távoli port száma.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2550\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2906\"/>\n        <source>Remote Port</source>\n        <translation>Távoli port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2553\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2909\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;A távoli port száma.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2566\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2588\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2922\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2944\"/>\n        <source>The network protocol (i.e., UDP, TCP). See RFC 3232.</source>\n        <translation>A hálózati protokoll (pl. UDP, TCP). Lásd RFC 3232.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2928\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2950\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The network protocol (i.e., UDP, TCP). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;A hálózati protokoll (pl. UDP, TCP). Lásd RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2631\"/>\n        <source>0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.</source>\n        <translation>0x00 - A forrás IP-cím DHCP-n keresztül lett kiosztva. \n0x01 - A forrás IP-cím statikusan kötött.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2635\"/>\n        <source>Static IP Address</source>\n        <translation>Statikus IP-cím</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - A forrás IP-cím DHCP-n keresztül lett kiosztva.\n0x01 - A forrás IP-cím statikusan kötött.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2667\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3083\"/>\n        <source>The Gateway IP Address.</source>\n        <translation>Az átjáró IP-címe.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3071\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3086\"/>\n        <source>Gateway IP Address</source>\n        <translation>Átjáró IP-cím</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2673\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Gateway IP Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Az átjáró IP-címe.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2686\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2707\"/>\n        <source>Subnet mask.</source>\n        <translation>Alhálózati maszk.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2689\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2695\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2710\"/>\n        <source>Subnet Mask</source>\n        <translation>Alhálózati maszk</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2733\"/>\n        <source>IPv6 settings.</source>\n        <translation>IPv6 beállítások.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2760\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2781\"/>\n        <source>The local IPv6 address.</source>\n        <translation>A helyi IPv6-cím.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2787\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;A helyi IPv6-cím.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2821\"/>\n        <source>The remote IPv6 address.</source>\n        <translation>A távoli IPv6-cím.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;A távoli IPv6-cím.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2963\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2989\"/>\n        <source>0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.</source>\n        <translation>0x00 - A helyi IP-cím kézzel lett konfigurálva.\n0x01 - A helyi IP-cím az IPv6 stateless automatikus konfigurációval lett kiosztva.\n0x02 - A helyi IP-cím az IPv6 stateful konfigurációval lett kiosztva.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2976\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2994\"/>\n        <source>IP Address Origin</source>\n        <translation>IP-cím származása</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2971\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2997\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - A helyi IP-cím kézzel lett konfigurálva.\n0x01 - A helyi IP-cím az IPv6 stateless automatikus konfigurációval lett kiosztva.\n0x02 - A helyi IP-cím az IPv6 stateful konfigurációval lett kiosztva.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3021\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3043\"/>\n        <source>The Prefix Length.</source>\n        <translation>Az előtag hossza.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3024\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3030\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3046\"/>\n        <source>Prefix Length</source>\n        <translation>Előtag hossza</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3027\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3049\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Prefix Length.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Az előtag hossza.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3106\"/>\n        <source>UART</source>\n        <translation type=\"unfinished\">UART</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3109\"/>\n        <source>UART Settings.</source>\n        <translation>UART beállítások.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3112\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART beállítások.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3176\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3197\"/>\n        <source>The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.</source>\n        <translation>Az UART stílusú eszköz baud-rátájának beállítása. A 0 érték azt jelenti, hogy az eszköz alapértelmezett adatátviteli sebességét fogja használni.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3179\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3185\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3200\"/>\n        <source>Baud Rate</source>\n        <translation>Baud Rate</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3182\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3203\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Az UART stílusú eszköz baud-rátájának beállítása. A 0 érték azt jelenti, hogy az eszköz alapértelmezett adatátviteli sebességét fogja használni.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3216\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3238\"/>\n        <source>The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.</source>\n        <translation>Az UART stílusú eszköz adatbitjeinek száma. A 0 érték azt jelenti, hogy az eszköz az alapértelmezett adatbitek számát használja.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3219\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3225\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3241\"/>\n        <source>Data Bits</source>\n        <translation type=\"unfinished\">Data Bits</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3222\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Az UART stílusú eszköz adatbitjeinek száma. A 0 érték azt jelenti, hogy az eszköz az alapértelmezett adatbitek számát használja.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3257\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3291\"/>\n        <source>The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.</source>\n        <translation>Az UART stílusú eszköz paritás beállítása:\n0x00 - Alapértelmezett paritás.\n0x01 - Nincs paritás.\n0x02 - Páros paritás.\n0x03 - Páratlan paritás.\n0x04 - Mark paritás.\n0x05 - Space paritás.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3266\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3300\"/>\n        <source>Parity</source>\n        <translation>Paritás</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3303\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3313\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3394\"/>\n        <source>Default</source>\n        <translation type=\"unfinished\">Default</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3318\"/>\n        <source>No</source>\n        <translation type=\"unfinished\">No</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3323\"/>\n        <source>Even</source>\n        <translation type=\"unfinished\">Even</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3328\"/>\n        <source>Odd</source>\n        <translation type=\"unfinished\">Odd</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3333\"/>\n        <source>Mark</source>\n        <translation type=\"unfinished\">Mark</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3338\"/>\n        <source>Space</source>\n        <translation type=\"unfinished\">Space</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3346\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3376\"/>\n        <source>The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.</source>\n        <translation type=\"unfinished\">The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3353\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3363\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3383\"/>\n        <source>Stop Bits</source>\n        <translation type=\"unfinished\">Stop Bits</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3356\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3399\"/>\n        <source>1</source>\n        <translation type=\"unfinished\">1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3404\"/>\n        <source>1.5</source>\n        <translation type=\"unfinished\">1.5</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3409\"/>\n        <source>2</source>\n        <translation type=\"unfinished\">2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3421\"/>\n        <source>USB Class</source>\n        <translation type=\"unfinished\">USB Class</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3424\"/>\n        <source>USB Class Settings.</source>\n        <translation type=\"unfinished\">USB Class Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3427\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Class Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Class Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3451\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3472\"/>\n        <source>Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.</source>\n        <translation type=\"unfinished\">Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3454\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3460\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3475\"/>\n        <source>Vendor ID</source>\n        <translation type=\"unfinished\">Vendor ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3457\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3478\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3491\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3512\"/>\n        <source>Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.</source>\n        <translation type=\"unfinished\">Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3515\"/>\n        <source>Product ID</source>\n        <translation type=\"unfinished\">Product ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3518\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3552\"/>\n        <source>The class code assigned by the USB-IF. A value of 0xFF will match any class code.</source>\n        <translation type=\"unfinished\">The class code assigned by the USB-IF. A value of 0xFF will match any class code.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3540\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3555\"/>\n        <source>Device Class</source>\n        <translation type=\"unfinished\">Device Class</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3537\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3558\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The class code assigned by the USB-IF. A value of 0xFF will match any class code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The class code assigned by the USB-IF. A value of 0xFF will match any class code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3592\"/>\n        <source>The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.</source>\n        <translation type=\"unfinished\">The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3574\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3595\"/>\n        <source>Device Subclass</source>\n        <translation type=\"unfinished\">Device Subclass</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3632\"/>\n        <source>The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.</source>\n        <translation type=\"unfinished\">The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3635\"/>\n        <source>Device Protocol</source>\n        <translation type=\"unfinished\">Device Protocol</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3617\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3655\"/>\n        <source>USB WWID</source>\n        <translation type=\"unfinished\">USB WWID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3658\"/>\n        <source>This device path describes a USB device using its serial number.</source>\n        <translation type=\"unfinished\">This device path describes a USB device using its serial number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3661\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a USB device using its serial number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a USB device using its serial number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3685\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3707\"/>\n        <source>USB interface Number.</source>\n        <translation type=\"unfinished\">USB interface Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3747\"/>\n        <source>USB vendor id of the device.</source>\n        <translation type=\"unfinished\">USB vendor id of the device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3750\"/>\n        <source>Device Vendor Id</source>\n        <translation type=\"unfinished\">Device Vendor Id</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3753\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB vendor id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB vendor id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3787\"/>\n        <source>USB product id of the device.</source>\n        <translation type=\"unfinished\">USB product id of the device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3790\"/>\n        <source>Device Product Id</source>\n        <translation type=\"unfinished\">Device Product Id</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3793\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB product id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB product id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3828\"/>\n        <source>Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).</source>\n        <translation type=\"unfinished\">Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3815\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3831\"/>\n        <source>Serial Number</source>\n        <translation type=\"unfinished\">Serial Number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3812\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3845\"/>\n        <source>Device Logical Unit</source>\n        <translation type=\"unfinished\">Device Logical Unit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3848\"/>\n        <source>Device Logical Unit Settings.</source>\n        <translation type=\"unfinished\">Device Logical Unit Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3851\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device Logical Unit Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device Logical Unit Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3897\"/>\n        <source>Logical Unit Number for the interface.</source>\n        <translation type=\"unfinished\">Logical Unit Number for the interface.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3903\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number for the interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number for the interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3923\"/>\n        <source>SATA settings.</source>\n        <translation type=\"unfinished\">SATA settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3950\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3972\"/>\n        <source>The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.</source>\n        <translation type=\"unfinished\">The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3953\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3975\"/>\n        <source>HBA Port</source>\n        <translation type=\"unfinished\">HBA Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3956\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3978\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4013\"/>\n        <source>The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.</source>\n        <translation type=\"unfinished\">The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4000\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4016\"/>\n        <source>Port Multiplier Port</source>\n        <translation type=\"unfinished\">Port Multiplier Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3997\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4019\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4077\"/>\n        <source>iSCSI</source>\n        <translation type=\"unfinished\">iSCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4080\"/>\n        <source>iSCSI Settings.</source>\n        <translation type=\"unfinished\">iSCSI Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4083\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4129\"/>\n        <source>Network Protocol (0 = TCP, 1+ = reserved).</source>\n        <translation type=\"unfinished\">Network Protocol (0 = TCP, 1+ = reserved).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4113\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network Protocol (0 = TCP, 1+ = reserved).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network Protocol (0 = TCP, 1+ = reserved).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4148\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4169\"/>\n        <source>iSCSI Login Options.</source>\n        <translation type=\"unfinished\">iSCSI Login Options.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4151\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4172\"/>\n        <source>Options</source>\n        <translation type=\"unfinished\">Options</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4154\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4175\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Login Options.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Login Options.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4188\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4209\"/>\n        <source>8 byte array containing the iSCSI Logical Unit Number.</source>\n        <translation type=\"unfinished\">8 byte array containing the iSCSI Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4194\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing the iSCSI Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing the iSCSI Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4228\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4250\"/>\n        <source>iSCSI Target Portal group tag the initiator intends to establish a session with.</source>\n        <translation type=\"unfinished\">iSCSI Target Portal group tag the initiator intends to establish a session with.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4231\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4253\"/>\n        <source>Target Portal Group</source>\n        <translation type=\"unfinished\">Target Portal Group</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4234\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4256\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Target Portal group tag the initiator intends to establish a session with.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Target Portal group tag the initiator intends to establish a session with.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4291\"/>\n        <source>iSCSI NodeTarget Name.</source>\n        <translation type=\"unfinished\">iSCSI NodeTarget Name.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4272\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4294\"/>\n        <source>Target Name</source>\n        <translation type=\"unfinished\">Target Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4275\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4297\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI NodeTarget Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI NodeTarget Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4308\"/>\n        <source>VLAN</source>\n        <translation type=\"unfinished\">VLAN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4311\"/>\n        <source>VLAN Settings.</source>\n        <translation type=\"unfinished\">VLAN Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4314\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4360\"/>\n        <source>VLAN identifier (0-4094).</source>\n        <translation type=\"unfinished\">VLAN identifier (0-4094).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4341\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4347\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4363\"/>\n        <source>Vlan ID</source>\n        <translation type=\"unfinished\">Vlan ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4344\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4366\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN identifier (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN identifier (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4383\"/>\n        <source>Fibre Channel Ex</source>\n        <translation type=\"unfinished\">Fibre Channel Ex</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4386\"/>\n        <source>The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation type=\"unfinished\">The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4389\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4474\"/>\n        <source>8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).</source>\n        <translation type=\"unfinished\">8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4480\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4514\"/>\n        <source>8 byte array containing Fibre Channel Logical Unit Number.</source>\n        <translation type=\"unfinished\">8 byte array containing Fibre Channel Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4499\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4520\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4537\"/>\n        <source>SAS Extended Messaging</source>\n        <translation type=\"unfinished\">SAS Extended Messaging</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4540\"/>\n        <source>The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation type=\"unfinished\">The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4543\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4567\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4588\"/>\n        <source>8-byte array of the SAS Address for Serial Attached SCSI Target Port.</source>\n        <translation type=\"unfinished\">8-byte array of the SAS Address for Serial Attached SCSI Target Port.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4570\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4576\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4591\"/>\n        <source>SAS Address</source>\n        <translation type=\"unfinished\">SAS Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4573\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4594\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Address for Serial Attached SCSI Target Port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Address for Serial Attached SCSI Target Port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4628\"/>\n        <source>8-byte array of the SAS Logical Unit Number.</source>\n        <translation type=\"unfinished\">8-byte array of the SAS Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4613\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4634\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4647\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4668\"/>\n        <source>More Information about the device and its interconnect.</source>\n        <translation type=\"unfinished\">More Information about the device and its interconnect.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4650\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4656\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4671\"/>\n        <source>Device and Topology Info</source>\n        <translation type=\"unfinished\">Device and Topology Info</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4653\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4674\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;More Information about the device and its interconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;More Information about the device and its interconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4687\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4709\"/>\n        <source>Relative Target Port (RTP).</source>\n        <translation type=\"unfinished\">Relative Target Port (RTP).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4690\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4696\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4712\"/>\n        <source>Relative Target Port</source>\n        <translation type=\"unfinished\">Relative Target Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4715\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Relative Target Port (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Relative Target Port (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4732\"/>\n        <source>NVM Express NS</source>\n        <translation type=\"unfinished\">NVM Express NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4735\"/>\n        <source>NVM Express Namespace Settings.</source>\n        <translation type=\"unfinished\">NVM Express Namespace Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4738\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM Express Namespace Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM Express Namespace Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4783\"/>\n        <source>Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.</source>\n        <translation type=\"unfinished\">Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4765\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4771\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4786\"/>\n        <source>NSID</source>\n        <translation type=\"unfinished\">NSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4768\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4789\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4802\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4823\"/>\n        <source>This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.</source>\n        <translation type=\"unfinished\">This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4805\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4811\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4826\"/>\n        <source>EUI-64</source>\n        <translation type=\"unfinished\">EUI-64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4808\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4829\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4849\"/>\n        <source>Refer to RFC 3986 for details on the URI contents.</source>\n        <translation type=\"unfinished\">Refer to RFC 3986 for details on the URI contents.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Refer to RFC 3986 for details on the URI contents.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Refer to RFC 3986 for details on the URI contents.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4876\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4898\"/>\n        <source>Instance of the URI pursuant to RFC 3986.</source>\n        <translation type=\"unfinished\">Instance of the URI pursuant to RFC 3986.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4882\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Instance of the URI pursuant to RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Instance of the URI pursuant to RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4915\"/>\n        <source>UFS</source>\n        <translation type=\"unfinished\">UFS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4918\"/>\n        <source>UFS Settings.</source>\n        <translation type=\"unfinished\">UFS Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4966\"/>\n        <source>Target ID on the UFS interface (PUN).</source>\n        <translation type=\"unfinished\">Target ID on the UFS interface (PUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4972\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the UFS interface (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the UFS interface (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5029\"/>\n        <source>SD</source>\n        <translation type=\"unfinished\">SD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5032\"/>\n        <source>SD Settings.</source>\n        <translation type=\"unfinished\">SD Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5035\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5081\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5299\"/>\n        <source>Slot Number</source>\n        <translation type=\"unfinished\">Slot Number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5084\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5280\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5286\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5302\"/>\n        <source>Slot</source>\n        <translation type=\"unfinished\">Slot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5087\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5283\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5305\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Slot Number&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Slot Number&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5104\"/>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\">Bluetooth</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5107\"/>\n        <source>EFI Bluetooth Settings.</source>\n        <translation type=\"unfinished\">EFI Bluetooth Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5110\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI Bluetooth Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI Bluetooth Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5155\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5373\"/>\n        <source>48-bit Bluetooth device address.</source>\n        <translation type=\"unfinished\">48-bit Bluetooth device address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5143\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5158\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5361\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5376\"/>\n        <source>Device Address</source>\n        <translation type=\"unfinished\">Device Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5161\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5379\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-bit Bluetooth device address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-bit Bluetooth device address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5178\"/>\n        <source>Wi-Fi</source>\n        <translation type=\"unfinished\">Wi-Fi</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5181\"/>\n        <source>Wi-Fi Settings.</source>\n        <translation type=\"unfinished\">Wi-Fi Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5184\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wi-Fi Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wi-Fi Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5208\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5230\"/>\n        <source>SSID in octet string.</source>\n        <translation type=\"unfinished\">SSID in octet string.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5211\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5217\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5233\"/>\n        <source>SSID</source>\n        <translation type=\"unfinished\">SSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5214\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5236\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID in octet string.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID in octet string.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5247\"/>\n        <source>eMMC</source>\n        <translation type=\"unfinished\">eMMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5250\"/>\n        <source>Embedded Multi-Media Card Settings.</source>\n        <translation type=\"unfinished\">Embedded Multi-Media Card Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5253\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Embedded Multi-Media Card Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Embedded Multi-Media Card Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5322\"/>\n        <source>BluetoothLE</source>\n        <translation type=\"unfinished\">BluetoothLE</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5325\"/>\n        <source>EFI BluetoothLE Settings.</source>\n        <translation type=\"unfinished\">EFI BluetoothLE Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5328\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI BluetoothLE Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI BluetoothLE Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5416\"/>\n        <source>0x00 - Public Device Address.\n0x01 - Random Device Address.</source>\n        <translation type=\"unfinished\">0x00 - Public Device Address.\n0x01 - Random Device Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5396\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5403\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5420\"/>\n        <source>Address Type</source>\n        <translation type=\"unfinished\">Address Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5399\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5423\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Public Device Address.\n0x01 - Random Device Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Public Device Address.\n0x01 - Random Device Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5428\"/>\n        <source>Public</source>\n        <translation type=\"unfinished\">Public</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5433\"/>\n        <source>Random</source>\n        <translation type=\"unfinished\">Random</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5445\"/>\n        <source>DNS</source>\n        <translation type=\"unfinished\">DNS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5448\"/>\n        <source>DNS Settings.</source>\n        <translation type=\"unfinished\">DNS Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5451\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DNS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DNS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5499\"/>\n        <source>0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.</source>\n        <translation type=\"unfinished\">0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5482\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5506\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5514\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5575\"/>\n        <source>One or more instances of the DNS server address in EFI_IP_ADDRESS.</source>\n        <translation type=\"unfinished\">One or more instances of the DNS server address in EFI_IP_ADDRESS.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5520\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5581\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;One or more instances of the DNS server address in EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;One or more instances of the DNS server address in EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5536\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7584\"/>\n        <source>Data format.</source>\n        <translation type=\"unfinished\">Data format.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5592\"/>\n        <source>NVDIMM NS</source>\n        <translation type=\"unfinished\">NVDIMM NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5595\"/>\n        <source>This device path describes a bootable NVDIMM namespace that is defined by a namespace label.</source>\n        <translation type=\"unfinished\">This device path describes a bootable NVDIMM namespace that is defined by a namespace label.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVDIMM namespace that is defined by a namespace label.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVDIMM namespace that is defined by a namespace label.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5622\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5643\"/>\n        <source>Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.</source>\n        <translation type=\"unfinished\">Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5646\"/>\n        <source>UUID</source>\n        <translation type=\"unfinished\">UUID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5628\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5649\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5663\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5698\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5706\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5724\"/>\n        <source>REST Service</source>\n        <translation type=\"unfinished\">REST Service</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5666\"/>\n        <source>REST Service Settings.</source>\n        <translation type=\"unfinished\">REST Service Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5669\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;REST Service Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;REST Service Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5719\"/>\n        <source>0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.</source>\n        <translation type=\"unfinished\">0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5701\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5727\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5733\"/>\n        <source>Redfish</source>\n        <translation type=\"unfinished\">Redfish</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5738\"/>\n        <source>OData</source>\n        <translation type=\"unfinished\">OData</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5743\"/>\n        <source>Vendor specific</source>\n        <translation type=\"unfinished\">Vendor specific</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5775\"/>\n        <source>0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.</source>\n        <translation type=\"unfinished\">0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5755\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5779\"/>\n        <source>Access Mode</source>\n        <translation type=\"unfinished\">Access Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5782\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5787\"/>\n        <source>In-Band</source>\n        <translation type=\"unfinished\">In-Band</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5792\"/>\n        <source>Out-of-band</source>\n        <translation type=\"unfinished\">Out-of-band</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5821\"/>\n        <source>GUID of vendor specific REST service.</source>\n        <translation type=\"unfinished\">GUID of vendor specific REST service.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID of vendor specific REST service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID of vendor specific REST service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5898\"/>\n        <source>Vendor-defined data.</source>\n        <translation type=\"unfinished\">Vendor-defined data.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5915\"/>\n        <source>NVMe-oF NS</source>\n        <translation type=\"unfinished\">NVMe-oF NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5918\"/>\n        <source>This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.</source>\n        <translation type=\"unfinished\">This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5967\"/>\n        <source>Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.</source>\n        <translation type=\"unfinished\">Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5970\"/>\n        <source>NIDT</source>\n        <translation type=\"unfinished\">NIDT</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5973\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5986\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6007\"/>\n        <source>Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.</source>\n        <translation type=\"unfinished\">Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5989\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5995\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6010\"/>\n        <source>NID</source>\n        <translation type=\"unfinished\">NID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5992\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6013\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6023\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6045\"/>\n        <source>Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.</source>\n        <translation type=\"unfinished\">Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6026\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6048\"/>\n        <source>Subsystem NQN</source>\n        <translation type=\"unfinished\">Subsystem NQN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6029\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6051\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6066\"/>\n        <source>Hard Drive</source>\n        <translation type=\"unfinished\">Hard Drive</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6069\"/>\n        <source>The Hard Drive Media Device Path is used to represent a partition on a hard drive.</source>\n        <translation type=\"unfinished\">The Hard Drive Media Device Path is used to represent a partition on a hard drive.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6072\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Hard Drive Media Device Path is used to represent a partition on a hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Hard Drive Media Device Path is used to represent a partition on a hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6174\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6196\"/>\n        <source>Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].</source>\n        <translation type=\"unfinished\">Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6180\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6236\"/>\n        <source>Starting LBA of the partition on the hard drive.</source>\n        <translation type=\"unfinished\">Starting LBA of the partition on the hard drive.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6466\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6487\"/>\n        <source>Partition Start</source>\n        <translation type=\"unfinished\">Partition Start</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting LBA of the partition on the hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting LBA of the partition on the hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6255\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6276\"/>\n        <source>Size of the partition in units of Logical Blocks.</source>\n        <translation type=\"unfinished\">Size of the partition in units of Logical Blocks.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6258\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6264\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6279\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6527\"/>\n        <source>Partition Size</source>\n        <translation type=\"unfinished\">Partition Size</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6261\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6282\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Logical Blocks.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Logical Blocks.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6295\"/>\n        <source>Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation type=\"unfinished\">Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6301\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6310\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6367\"/>\n        <source>Partition Signature</source>\n        <translation type=\"unfinished\">Partition Signature</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6304\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6322\"/>\n        <source>PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.</source>\n        <translation type=\"unfinished\">PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6328\"/>\n        <source>Signature Type</source>\n        <translation type=\"unfinished\">Signature Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6331\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6338\"/>\n        <source>None</source>\n        <translation type=\"unfinished\">None</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6361\"/>\n        <source>Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation type=\"unfinished\">Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6370\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6392\"/>\n        <source>CD-ROM</source>\n        <translation type=\"unfinished\">CD-ROM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6395\"/>\n        <source>The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.</source>\n        <translation type=\"unfinished\">The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6398\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6444\"/>\n        <source>Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.</source>\n        <translation type=\"unfinished\">Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6425\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6431\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6447\"/>\n        <source>Boot Entry</source>\n        <translation type=\"unfinished\">Boot Entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6450\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6463\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6484\"/>\n        <source>Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.</source>\n        <translation type=\"unfinished\">Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6469\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6490\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6524\"/>\n        <source>Size of the partition in units of Blocks, also called Sectors.</source>\n        <translation type=\"unfinished\">Size of the partition in units of Blocks, also called Sectors.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6530\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Blocks, also called Sectors.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Blocks, also called Sectors.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6547\"/>\n        <source>File Path</source>\n        <translation type=\"unfinished\">File Path</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6550\"/>\n        <source>File Path settings.</source>\n        <translation type=\"unfinished\">File Path settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6553\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File Path settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File Path settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6599\"/>\n        <source>Path including directory and file names.</source>\n        <translation type=\"unfinished\">Path including directory and file names.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6586\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6602\"/>\n        <source>Path Name</source>\n        <translation type=\"unfinished\">Path Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6583\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6605\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Path including directory and file names.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Path including directory and file names.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6619\"/>\n        <source>The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.</source>\n        <translation type=\"unfinished\">The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6622\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6667\"/>\n        <source>The ID of the protocol.</source>\n        <translation type=\"unfinished\">The ID of the protocol.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6673\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ID of the protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ID of the protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6687\"/>\n        <source>Firmware File</source>\n        <translation type=\"unfinished\">Firmware File</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6690\"/>\n        <source>Describes a firmware file in a firmware volume.</source>\n        <translation type=\"unfinished\">Describes a firmware file in a firmware volume.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6693\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware file in a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware file in a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6717\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6738\"/>\n        <source>Firmware file name GUID.</source>\n        <translation type=\"unfinished\">Firmware file name GUID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6723\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6744\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware file name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware file name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6758\"/>\n        <source>Firmware Volume</source>\n        <translation type=\"unfinished\">Firmware Volume</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6761\"/>\n        <source>Describes a firmware volume.</source>\n        <translation type=\"unfinished\">Describes a firmware volume.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6764\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6809\"/>\n        <source>Firmware volume name GUID.</source>\n        <translation type=\"unfinished\">Firmware volume name GUID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware volume name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware volume name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6829\"/>\n        <source>Relative Offset Range</source>\n        <translation type=\"unfinished\">Relative Offset Range</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6832\"/>\n        <source>This device path node specifies a range of offsets relative to the first byte available on the device.</source>\n        <translation type=\"unfinished\">This device path node specifies a range of offsets relative to the first byte available on the device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6835\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path node specifies a range of offsets relative to the first byte available on the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path node specifies a range of offsets relative to the first byte available on the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6880\"/>\n        <source>Reserved for future use.</source>\n        <translation type=\"unfinished\">Reserved for future use.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6886\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved for future use.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved for future use.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6899\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6920\"/>\n        <source>Offset of the first byte, relative to the parent device node.</source>\n        <translation type=\"unfinished\">Offset of the first byte, relative to the parent device node.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6902\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6908\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6923\"/>\n        <source>Starting Offset</source>\n        <translation type=\"unfinished\">Starting Offset</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6905\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the first byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the first byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6939\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6960\"/>\n        <source>Offset of the last byte, relative to the parent device node.</source>\n        <translation type=\"unfinished\">Offset of the last byte, relative to the parent device node.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6942\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6963\"/>\n        <source>Ending Offset</source>\n        <translation type=\"unfinished\">Ending Offset</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6966\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the last byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the last byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6983\"/>\n        <source>RAM Disk</source>\n        <translation type=\"unfinished\">RAM Disk</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6986\"/>\n        <source>RAM Disk Settings.</source>\n        <translation type=\"unfinished\">RAM Disk Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6989\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7016\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7037\"/>\n        <source>Starting Address</source>\n        <translation type=\"unfinished\">Starting Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7056\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7077\"/>\n        <source>Ending Address</source>\n        <translation type=\"unfinished\">Ending Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7093\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7114\"/>\n        <source>GUID that defines the type of the RAM Disk.</source>\n        <translation type=\"unfinished\">GUID that defines the type of the RAM Disk.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7120\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID that defines the type of the RAM Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID that defines the type of the RAM Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7130\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7152\"/>\n        <source>RAM Disk instance number, if supported.</source>\n        <translation type=\"unfinished\">RAM Disk instance number, if supported.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7133\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7155\"/>\n        <source>Disk Instance</source>\n        <translation type=\"unfinished\">Disk Instance</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7158\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk instance number, if supported.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk instance number, if supported.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7179\"/>\n        <source>This Device Path is used to describe the booting of non-EFI-aware operating systems.</source>\n        <translation type=\"unfinished\">This Device Path is used to describe the booting of non-EFI-aware operating systems.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7182\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path is used to describe the booting of non-EFI-aware operating systems.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path is used to describe the booting of non-EFI-aware operating systems.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7206\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7249\"/>\n        <source>An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.</source>\n        <translation type=\"unfinished\">An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7220\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7263\"/>\n        <source>Device Type</source>\n        <translation type=\"unfinished\">Device Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7223\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7290\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7347\"/>\n        <source>Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero</source>\n        <translation type=\"unfinished\">Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7311\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7368\"/>\n        <source>Status Flag</source>\n        <translation type=\"unfinished\">Status Flag</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7371\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7402\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7424\"/>\n        <source>String that describes the boot device to a user.</source>\n        <translation type=\"unfinished\">String that describes the boot device to a user.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7408\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7430\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;String that describes the boot device to a user.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;String that describes the boot device to a user.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7543\"/>\n        <source>Vendor-assigned GUID that defines the data that follows.</source>\n        <translation type=\"unfinished\">Vendor-assigned GUID that defines the data that follows.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7549\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-assigned GUID that defines the data that follows.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-assigned GUID that defines the data that follows.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7562\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7622\"/>\n        <source>Vendor-defined variable size data.</source>\n        <translation type=\"unfinished\">Vendor-defined variable size data.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7568\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7628\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined variable size data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined variable size data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7642\"/>\n        <source>Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.</source>\n        <translation type=\"unfinished\">Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7645\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7721\"/>\n        <source>Unknown file path specifier settings</source>\n        <translation type=\"unfinished\">Unknown file path specifier settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7724\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown file path specifier settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown file path specifier settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7748\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7772\"/>\n        <source>Unknown Type</source>\n        <translation type=\"unfinished\">Unknown Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7754\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7775\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7812\"/>\n        <source>Unknown Sub-Type</source>\n        <translation type=\"unfinished\">Unknown Sub-Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7828\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7831\"/>\n        <source>Unknown data</source>\n        <translation type=\"unfinished\">Unknown data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/filepathdialog.cpp\" line=\"1569\"/>\n        <source>Couldn&apos;t change data format!</source>\n        <translation type=\"unfinished\">Couldn&apos;t change data format!</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeyListModel</name>\n    <message>\n        <location filename=\"../src/hotkeylistmodel.cpp\" line=\"100\"/>\n        <source>boot option</source>\n        <translation type=\"unfinished\">boot option</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Boot option</source>\n        <translation type=\"unfinished\">Boot option</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Hot key</source>\n        <translation type=\"unfinished\">Hot key</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Vendor data</source>\n        <translation type=\"unfinished\">Forgalmazói adatok</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeysDialog</name>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"20\"/>\n        <source>Hot Keys editor</source>\n        <translation type=\"unfinished\">Hot Keys editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"41\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"44\"/>\n        <source>Hot Keys</source>\n        <translation type=\"unfinished\">Hot Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"47\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"125\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"128\"/>\n        <source>Index filter</source>\n        <translation type=\"unfinished\">Index filter</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"131\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Index filter&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Index filter&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"163\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"166\"/>\n        <source>Remove hot key</source>\n        <translation type=\"unfinished\">Remove hot key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"191\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"194\"/>\n        <source>Add hot key</source>\n        <translation type=\"unfinished\">Add hot key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"197\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <location filename=\"../include/commands.h\" line=\"21\"/>\n        <location filename=\"../include/commands.h\" line=\"66\"/>\n        <source>Change %1 to &quot;%2&quot;</source>\n        <translation type=\"unfinished\">Change %1 to &quot;%2&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"35\"/>\n        <source>Insert %1 entry &quot;%2&quot; at position %3</source>\n        <translation type=\"unfinished\">Insert %1 entry &quot;%2&quot; at position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"50\"/>\n        <source>Remove %1 entry &quot;%2&quot; from position %3</source>\n        <translation type=\"unfinished\">Remove %1 entry &quot;%2&quot; from position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"73\"/>\n        <location filename=\"../src/commands.cpp\" line=\"116\"/>\n        <source>Move %1 entry &quot;%2&quot; from position %3 to %4</source>\n        <translation type=\"unfinished\">Move %1 entry &quot;%2&quot; from position %3 to %4</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <location filename=\"../include/commands.h\" line=\"157\"/>\n        <location filename=\"../include/commands.h\" line=\"198\"/>\n        <source>Change %1 entry &quot;%2&quot; %3 to &quot;%4&quot;</source>\n        <translation type=\"unfinished\">Change %1 entry &quot;%2&quot; %3 to &quot;%4&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <source>Optional data</source>\n        <translation type=\"unfinished\">Optional data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"227\"/>\n        <source>Insert %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation type=\"unfinished\">Insert %1 entry &quot;%2&quot; file path at position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"242\"/>\n        <source>Remove %1 entry &quot;%2&quot; file path from position %3</source>\n        <translation type=\"unfinished\">Remove %1 entry &quot;%2&quot; file path from position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"257\"/>\n        <source>Set %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation type=\"unfinished\">Set %1 entry &quot;%2&quot; file path at position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <source>Insert %1 entry at position %2</source>\n        <translation type=\"unfinished\">Insert %1 entry at position %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>Key</source>\n        <translation type=\"unfinished\">Key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <source>Remove %1 entry from position %2</source>\n        <translation type=\"unfinished\">Remove %1 entry from position %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <location filename=\"../include/commands.h\" line=\"362\"/>\n        <location filename=\"../include/commands.h\" line=\"403\"/>\n        <source>Change %1 entry at position %2 %3 to &quot;%4&quot;</source>\n        <translation type=\"unfinished\">Change %1 entry at position %2 %3 to &quot;%4&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>keys</source>\n        <translation type=\"unfinished\">keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"293\"/>\n        <location filename=\"../src/commands.cpp\" line=\"333\"/>\n        <source>Move %1 entry &quot;%2&quot; file path from position %3 to %4</source>\n        <translation type=\"unfinished\">Move %1 entry &quot;%2&quot; file path from position %3 to %4</translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/efibooteditor_it.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"it\" sourcelanguage=\"en_US\">\n<context>\n    <name>BootEntryForm</name>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"169\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"172\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"182\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"185\"/>\n        <source>Description</source>\n        <translation>Descrizione</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"198\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"201\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"204\"/>\n        <source>Path</source>\n        <translation>Percorso</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"415\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"418\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"478\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"481\"/>\n        <source>Optional data</source>\n        <translation>Dati opzionali</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"421\"/>\n        <source>Optional</source>\n        <translation>Opzionale</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"434\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"437\"/>\n        <source>Optional data format</source>\n        <translation>Formato dati opzionali</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"6\"/>\n        <source>Boot entry form</source>\n        <translation>Modulo voce boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"24\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"27\"/>\n        <source>Error</source>\n        <translation>Errore</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"40\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"43\"/>\n        <source>Error note</source>\n        <translation>Note errore</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"46\"/>\n        <source>This entry placeholder is shown here to indicate it&apos;s referenced in boot order. It won&apos;t be modified on save, just left as is.</source>\n        <translation>Questo segnaposto della voce viene visualizzato qui per indicare che è referenziato nell&apos;ordine di avvio. Non verrà modificato al salvataggio, ma lasciato così com&apos;è.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"147\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"150\"/>\n        <source>Hot Keys</source>\n        <translation>Tasti rapidi</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Tasti rapidi&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"188\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry description.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Descrizione voce.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"222\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"225\"/>\n        <source>Device path</source>\n        <translation>Percorso dispositivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Percorso dispositivo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"280\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"283\"/>\n        <source>Move file path up</source>\n        <translation>Sposta percorso file su</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"286\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sposta percorso file su.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"305\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"308\"/>\n        <source>Move file path down</source>\n        <translation>Sposta percorso file giù</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"311\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sposta percorso file giù.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"330\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"333\"/>\n        <source>Remove file path</source>\n        <translation>Rimuovi percorso file</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"336\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Rimuovi percorso file.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"355\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"358\"/>\n        <source>Edit file path</source>\n        <translation>Modifica percorso file</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"361\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Edit file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Modifica percorso file.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"380\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"383\"/>\n        <source>Add file path</source>\n        <translation>Aggiungi percorso file</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Aggiungi percorso file.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Formato dati opzionali.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"444\"/>\n        <source>BASE64</source>\n        <translation>BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"449\"/>\n        <source>UTF-16</source>\n        <translation>UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"454\"/>\n        <source>UTF-8</source>\n        <translation>UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"459\"/>\n        <source>HEX</source>\n        <translation>HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"484\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry optional data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dati opzionali voce.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"497\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"500\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"503\"/>\n        <source>Attributes</source>\n        <translation>Attributi</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"623\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry category.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Categoria voce.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"122\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indice voce.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"540\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Is entry considered for automatic boot?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;La voce è considerata per l&apos;avvio automatico?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"569\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hidden.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Nascosto.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"585\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Force reconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Forza riconnessione.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"534\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"537\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"543\"/>\n        <source>Active</source>\n        <translation>Attivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"579\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"582\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"588\"/>\n        <source>Force reconnect</source>\n        <translation>Forza riconnessione</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"563\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"566\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"572\"/>\n        <source>Hidden</source>\n        <translation>Nascosto</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"598\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"601\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"604\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"617\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"620\"/>\n        <source>Category</source>\n        <translation>Categoria</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"627\"/>\n        <source>Boot</source>\n        <translation>Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"632\"/>\n        <source>App</source>\n        <translation>App</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"68\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"71\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"74\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"116\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"119\"/>\n        <source>Index</source>\n        <translation>Indice</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentryform.cpp\" line=\"117\"/>\n        <source>Couldn&apos;t change optional data format!</source>\n        <translation>Impossibile modificare il formato dei dati opzionali!</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryListModel</name>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"88\"/>\n        <source>Set Next boot to &quot;%1&quot;</source>\n        <translation>Imposta &apos;Prossimo boot&apos; a&quot;%1&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"184\"/>\n        <source>index</source>\n        <translation>indice</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"200\"/>\n        <source>description</source>\n        <translation>descrizione</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"237\"/>\n        <source>optional data</source>\n        <translation>dati opzionali</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"253\"/>\n        <source>attributes</source>\n        <translation>attributi</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"269\"/>\n        <source>next boot</source>\n        <translation>prossimo boot</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryWidget</name>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"12\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"221\"/>\n        <source>Boot entry</source>\n        <translation>Voce boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"36\"/>\n        <source>Next boot</source>\n        <translation>Prossimo boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"39\"/>\n        <source>Run at next boot</source>\n        <translation>Esegui al prossimo boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"42\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;When chosen, entry will run at next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Quando scelta, la voce verrà eseguita al prossimo boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"140\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"143\"/>\n        <source>Current boot</source>\n        <translation>Boot attuale</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This entry is currently booted.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Questa voce è attualmente avviata.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"181\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indice voci boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"218\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry description, human readable name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Descrizione voce boot, nome leggibile dall&apos;uomo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"67\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"70\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"76\"/>\n        <source>Device path</source>\n        <translation>Percorso dispositivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"73\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Percorso dispositivo di boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"113\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data, arguments passed to boot executable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dati opzionali, argomenti passati all&apos;eseguibile boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"178\"/>\n        <source>Boot entry index</source>\n        <translation>Indice voci boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"184\"/>\n        <source>Index</source>\n        <translation>Indice</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"212\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"215\"/>\n        <source>Boot entry description</source>\n        <translation>Descrizione voce boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"107\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"110\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"116\"/>\n        <source>Optional data</source>\n        <translation>Dati opzionali</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootData</name>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"111\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"813\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1027\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1361\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1472\"/>\n        <source>%1: not found</source>\n        <translation>%1: non trovato</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"120\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"821\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1387\"/>\n        <source>%1: failed deserialization</source>\n        <translation>%1: deserializzazione fallita</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Error loading entries</source>\n        <translation>Errore durante il caricamento delle voci</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Failed to load some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>Impossibile caricare alcune voci di EFI Boot Manager:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Error saving entries</source>\n        <translation>Errore durante il salvataggio delle voci</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Entry %1(%2): duplicated index!</source>\n        <translation>Voce %1(%2): indice duplicato!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"389\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"419\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"458\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"479\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"487\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"516\"/>\n        <source>Error saving %1</source>\n        <translation>Errore durante il salvataggio di &apos;%1&apos;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"407\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"470\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"504\"/>\n        <source>Error removing %1</source>\n        <translation>Errore durante la rimozione di &apos;%1&apos;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Error importing boot configuration</source>\n        <translation>Errore durante l&apos;importazione della configurazione di boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <source>Couldn&apos;t open selected file (%1).</source>\n        <translation>Impossibile aprire il file selezionato (%1).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <source>Parser failed: %1</source>\n        <translation>Analisi fallita: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <source>Invalid _Type: %1</source>\n        <translation>_Tipo non valido: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <source>Error exporting boot configuration</source>\n        <translation>Errore durante l&apos;esportazione della configurazione di boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <source>Couldn&apos;t open selected file (%1): %2.</source>\n        <translation>Impossibile aprire il file selezionato (%1): %2.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <source>Couldn&apos;t write into file (%1): %2.</source>\n        <translation>Impossibile scrivere nel file (%1): %2.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Error dumping raw EFI data</source>\n        <translation>Errore durante il dump dei dati EFI non elaborati</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Failed to dump some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>Impossibile eseguire il dump di alcune voci di EFI Boot Manager:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"905\"/>\n        <source>Timeout</source>\n        <translation>Timeout</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"921\"/>\n        <source>Apple boot-args</source>\n        <translation>Argomenti boot Apple</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"937\"/>\n        <source>Firmware actions</source>\n        <translation>Azioni firmware</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"73\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation>Caricamento voci EFI Boot Manager…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"89\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"787\"/>\n        <source>Searching EFI Boot Manager entries…</source>\n        <translation>Ricerca voci EFI Boot Manager…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"116\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"292\"/>\n        <source>Processing EFI Boot Manager entries (%1)…</source>\n        <translation>Elaborazione voci EFI Boot Manager (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"308\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation>Salvataggio voci EFI Boot Manager…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"333\"/>\n        <source>Searching old EFI Boot Manager entries…</source>\n        <translation>Ricerca vecchie voci EFI Boot Manager…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"374\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"416\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"447\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"476\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"484\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"491\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"513\"/>\n        <source>Saving EFI Boot Manager entries (%1)…</source>\n        <translation>Salvataggio voci EFI Boot Manager (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"467\"/>\n        <source>Removing old EFI Boot Manager entries (%1)…</source>\n        <translation>Rimozione vecchie voci EFI Boot Manager (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"404\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"501\"/>\n        <source>Removing EFI Boot Manager entries (%1)…</source>\n        <translation>Rimozione voci EFI Boot Manager (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"94\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"338\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"792\"/>\n        <source>Couldn&apos;t load EFI Boot Manager variables</source>\n        <translation>Impossibile caricare variabili EFI Boot Manager</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"100\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"799\"/>\n        <source>Couldn&apos;t find any EFI Boot Manager variables</source>\n        <translation>Impossibile trovare variabili EFI Boot Manager</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"529\"/>\n        <source>Importing boot configuration…</source>\n        <translation>Importazione configurazione di boot…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"565\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"770\"/>\n        <source>Exporting boot configuration…</source>\n        <translation>Esportazione configurazione di boot…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"587\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"809\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"875\"/>\n        <source>Exporting EFI Boot Manager entries (%1)…</source>\n        <translation>Esportazione voci EFI Boot Manager (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1013\"/>\n        <source>Importing boot configuration from JSON…</source>\n        <translation>Importazione configurazione boot da JSON…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1032\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1366\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1477\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1531\"/>\n        <source>Importing EFI Boot Manager entries (%1)…</source>\n        <translation>Importazione voci EFI Boot Manager (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1035\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1376\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>%1: %2 expected</source>\n        <translation>%1: previsto %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1043\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1048\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1053\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <source>number</source>\n        <translation>numero</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1058\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1063\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1068\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1073\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1078\"/>\n        <source>bool</source>\n        <translation>bool</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1109\"/>\n        <source>%1: unknown boot manager capability</source>\n        <translation>%1: funzionalità gestione boot sconosciuta</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1122\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1166\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1212\"/>\n        <source>array</source>\n        <translation>matrice</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1333\"/>\n        <source>string</source>\n        <translation>stringa</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1156\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1192\"/>\n        <source>%1: unknown os indication</source>\n        <translation>%1: indicazione s.o. sconosciuto</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1083\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1235\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1264\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1290\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1309\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1328\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>object</source>\n        <translation>oggetto</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <source>hexadecimal number</source>\n        <translation>numero esadecimale</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1270\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1315\"/>\n        <source>%1: failed parsing</source>\n        <translation>%1: analisi fallita</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Failed to import some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>Impossibile importare alcune voci di EFI Boot Manager:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1347\"/>\n        <source>Importing boot configuration from raw dump…</source>\n        <translation>Importazione configurazione boot dal dump non elaborato…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1379\"/>\n        <source>object(raw_data: string, efi_attributes: number)</source>\n        <extracomment>Expected JSON structure, thrown as error description. raw_data and efi_attributes are field names in JSON file</extracomment>\n        <translation>object(raw_data: string, efi_attributes: number)</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"15\"/>\n        <source>Boot</source>\n        <translation>Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"16\"/>\n        <source>Driver</source>\n        <translation>Driver</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"17\"/>\n        <source>System Preparation</source>\n        <translation>Preparazione sistema</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"18\"/>\n        <source>Platform Recovery</source>\n        <translation>Ripristino piattaforma</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditor</name>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"18\"/>\n        <source>EFI Boot Editor</source>\n        <translation>EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"71\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"412\"/>\n        <source>Boot</source>\n        <translation>Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"74\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"98\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"101\"/>\n        <source>Boot entries</source>\n        <translation>Voci boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"77\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"104\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Boot entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Elenco delle voci di boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"133\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"415\"/>\n        <source>Driver</source>\n        <translation>Driver</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"136\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"160\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"163\"/>\n        <source>Driver entries</source>\n        <translation>Voci driver</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"139\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"166\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Driver entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Elenco delle voci del driver.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"195\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"418\"/>\n        <source>System Preparation</source>\n        <translation>Preparazione sistema</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"198\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"222\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"225\"/>\n        <source>SysPrep entries</source>\n        <translation>Voci SysPrep</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"201\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of SysPrep entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Elenco voci di SysPrep.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"257\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"421\"/>\n        <source>Platform Recovery</source>\n        <translation>Ripristino piattaforma</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"260\"/>\n        <source>PlatformRecovery entries</source>\n        <translation>Voci ripristino piataforma</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"263\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of PlatformRecovery entries (READONLY).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Elenco voci di ripristino piattaforma (SOLA LETTURA).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"284\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"287\"/>\n        <source>PlatformRecovery entries (READONLY)</source>\n        <translation>Voci ripristino piattaforma (SOLA LETTURA)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"346\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"349\"/>\n        <source>Add new entry</source>\n        <translation>Aggiungi nuova voce</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"352\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to add new boot entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fai clic qui per aggiungere una nuova voce di boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"377\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"380\"/>\n        <source>Duplicate entry</source>\n        <translation>Voce duplicata</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"383\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Duplicate entry&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Voce duplicata&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"408\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"411\"/>\n        <source>Remove entry</source>\n        <translation>Rimuovi voce</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"414\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to remove currently selected entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fai clic qui per rimuovere la voce attualmente selezionata.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"439\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"442\"/>\n        <source>Move entry up</source>\n        <translation>Sposta voce in su</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"445\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fai clic qui per spostare la voce attualmente selezionata in su.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"470\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"473\"/>\n        <source>Move entry down</source>\n        <translation>Sposta voce in giù</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"476\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fai clic qui per spostare la voce attualmente selezionata in giù.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"501\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"504\"/>\n        <source>Reorder entries</source>\n        <translation>Riordina voci</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"507\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click here to adjust the order of all entries based on their position on the list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fai clic qui per modificare l&apos;ordine di tutte le voci in base alla loro posizione nell&apos;elenco.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"599\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"608\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Global settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Impostazioni globali.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"602\"/>\n        <source>Global</source>\n        <translation>Globali</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"632\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"635\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"654\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"657\"/>\n        <source>Boot manager timeout</source>\n        <translation>Timeout gestore boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"638\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"660\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot manager timeout.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Timeout gestore boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"663\"/>\n        <source>s</source>\n        <translation>s</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"674\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"677\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"686\"/>\n        <source>Firmware details</source>\n        <translation>Dettagli firmware</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"680\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"689\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dettagli firmware.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"683\"/>\n        <source>Firmware</source>\n        <translation>Firmware</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"719\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"722\"/>\n        <source>Available firmware features</source>\n        <translation>Funzionalità firmware disponibili</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"725\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware features.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Funzionalità firmware disponibili.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"728\"/>\n        <source>Features</source>\n        <translation>Funzionalità</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"737\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"740\"/>\n        <source>Platform supports reporting of deferred capsule processing by creation of result variable</source>\n        <translation>La piattaforma supporta la segnalazione dell&apos;elaborazione differita della capsula mediante creazione di una variabile risultato</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"743\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports reporting of deferred capsule processing by creation of result variable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;La piattaforma supporta la segnalazione dell&apos;elaborazione differita della capsula mediante creazione di una variabile risultato.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"746\"/>\n        <source>Capsule Reporting</source>\n        <translation>Segnalazione capsula</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"756\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"759\"/>\n        <source>Firmware supports timestamp based revocation</source>\n        <translation>Il firmware supporta la revoca basata su data/ora</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"762\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware supports timestamp based revocation.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Il firmware supporta la revoca basata su data/ora.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"765\"/>\n        <source>Timestamp based revocation</source>\n        <translation>Revoca basata su data/ora</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"775\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"778\"/>\n        <source>Platform supports processing of Firmware Management Protocol update capsule</source>\n        <translation>La piattaforma supporta l&apos;elaborazione della capsula di aggiornamento del protocollo di gestione firmware</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"781\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of Firmware Management Protocol update capsule.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;La piattaforma supporta l&apos;elaborazione della capsula di aggiornamento del protocollo di gestione firmware.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"784\"/>\n        <source>FMP Capsule</source>\n        <translation>Capsula FMP</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"794\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"797\"/>\n        <source>Platform supports processing of file capsules</source>\n        <translation>La piattaforma supporta l&apos;elaborazione di capsule file</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"800\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of file capsules.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;La piattaforma supporta l&apos;elaborazione di capsule file.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"803\"/>\n        <source>File Capsule</source>\n        <translation>Capsula file</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"828\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"831\"/>\n        <source>Available firmware actions</source>\n        <translation>Azioni firmware disponibili</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware actions.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Azioni firmware disponibili.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"837\"/>\n        <source>Actions</source>\n        <translation>Azioni</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"846\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"849\"/>\n        <source>Stop at a firmware user interface on the next boot</source>\n        <translation>Al prossimo boot fermati nell&apos;interfaccia utente firmware</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Stop at a firmware user interface on the next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Al prossimo boot fermati nell&apos;interfaccia utente firmware.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"855\"/>\n        <source>Boot to firmware UI</source>\n        <translation>Boot nella UI firmware</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"862\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"865\"/>\n        <source>Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot</source>\n        <translation>Al prossimo boot attiva la raccolta della configurazione attuale e segnalazione dati aggiornati della tabella configurazione sistema EFI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Al prossimo boot attiva la raccolta della configurazione attuale e segnalazione dati aggiornati della tabella configurazione sistema EFI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"871\"/>\n        <source>Collect current config</source>\n        <translation>Raccogli configurazione attuale</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"878\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"881\"/>\n        <source>Indicate that Platform-defined recovery should commence upon reboot</source>\n        <translation>Indica che il ripristino della piattaforma definita deve iniziare al riavvio</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"884\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that Platform-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indica che il ripristino della piattaforma definita deve iniziare al riavvio.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"887\"/>\n        <source>Start Platform recovery</source>\n        <translation>Avvia ripristino piattaforma</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"894\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"897\"/>\n        <source>Indicate that OS-defined recovery should commence upon reboot</source>\n        <translation>Indica che il ripristino del sistema operativo definito deve iniziare al riavvio</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"900\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that OS-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indica che il ripristino del sistema operativo definito deve iniziare al riavvio.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"903\"/>\n        <source>Start OS recovery</source>\n        <translation>Avvia ripristino SO</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"932\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"935\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"944\"/>\n        <source>Secure boot settings</source>\n        <translation>Impostazioni secure boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"938\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"947\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Secure boot settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Impostazioni secure boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"941\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1025\"/>\n        <source>Secure Boot</source>\n        <translation>Secure boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"978\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"981\"/>\n        <source>Defines whether the system is currently operating in Audit Mode</source>\n        <translation>Definisce se il sistema sta attualmente funzionando in modalità di controllo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"984\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Audit Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Definisce se il sistema sta attualmente funzionando in modalità di controllo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"987\"/>\n        <source>Audit Mode</source>\n        <translation>Modalità di controllo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"997\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1000\"/>\n        <source>Defines whether the system is currently operating in Deployed Mode</source>\n        <translation>Definisce se il sistema sta attualmente funzionando in modalità distribuita</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1003\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Deployed Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Definisce se il sistema sta attualmente funzionando in modalità distribuita.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1006\"/>\n        <source>Deployed Mode</source>\n        <translation>Modalità distribuita</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1016\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1019\"/>\n        <source>Defines whether the platform firmware is operating with Secure Boot enabled</source>\n        <translation>Definisce se il firmware della piattaforma funziona con secure boot abilitato</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1022\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the platform firmware is operating with Secure Boot enabled.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Definisce se il firmware della piattaforma funziona con secure boot abilitato.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1035\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1038\"/>\n        <source>Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables</source>\n        <translation>Definisce se il sistema deve richiedere l&apos;autenticazione o meno per le richieste delle variabili dei criteri di secure boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1041\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Definisce se il sistema deve richiedere l&apos;autenticazione o meno per le richieste delle variabili dei criteri di secure boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1044\"/>\n        <source>Setup Mode</source>\n        <translation>Modalità configurazione</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1054\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1057\"/>\n        <source>Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys</source>\n        <translation>Definisce se le variabili dei criteri di avvio di sicurezza sono state modificate da chiunque non sia il fornitore della piattaforma o un detentore delle chiavi fornite dal fornitore</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Definisce se le variabili dei criteri di avvio di sicurezza sono state modificate da chiunque non sia il fornitore della piattaforma o un detentore delle chiavi fornite dal fornitore.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1063\"/>\n        <source>Vendor Keys</source>\n        <translation>Chiavi venditore</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1074\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1077\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1086\"/>\n        <source>Apple settings</source>\n        <translation>Impostazioni Apple</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1080\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apple settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Impostazioni Apple.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1083\"/>\n        <source>Apple</source>\n        <translation>Apple</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1113\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1116\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1129\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1132\"/>\n        <source>macOS boot arguments</source>\n        <translation>Argomenti boot macOS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1119\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;macOS boot arguments.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Argomenti boot macOS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1161\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1164\"/>\n        <source>Undo stack</source>\n        <translation>Annulla operazione stack</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1167\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo stack&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Annulla operazione stack&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1194\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Menu file.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1214\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Help menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Menu aiuto.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1255\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Exit the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Esci dal programma.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1272\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apply changes to the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Applica modifiche al sistema.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1289\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reloads EFI data from the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ricarica dati EFI dal sistema.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1306\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Show information about the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Visualizza informazioni sul programma.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1320\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Export current entries into JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Esporta le voci attuali in file JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1337\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Import EFI data from JSON dump.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Importa dati EFI da file JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1354\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dumps raw EFI data for debugging purposes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Salva dati EFI grezzi a scopo di debug.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1362\"/>\n        <source>&amp;Undo</source>\n        <translation>&amp;Annulla operazione</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1365\"/>\n        <source>Undo</source>\n        <translation>Annulla operazione</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1368\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Annulla operazione&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1371\"/>\n        <source>Ctrl+Z</source>\n        <translation>Ctrl+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1379\"/>\n        <source>&amp;Redo</source>\n        <translation>&amp;Ripeti operazione</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1382\"/>\n        <source>Redo</source>\n        <translation>Ripeti operazione</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1385\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Redo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ripeti operazione&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1388\"/>\n        <source>Ctrl+Shift+Z</source>\n        <translation>Ctrl+Maiusc+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1396\"/>\n        <source>Hot &amp;keys</source>\n        <translation>Tasti &amp;rapidi</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1399\"/>\n        <source>Hot Keys</source>\n        <translation>Tasti rapidi</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1402\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Tasti rapidi&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"593\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"596\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"605\"/>\n        <source>Global settings</source>\n        <translation>Impostazioni globali</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"641\"/>\n        <source>Timeout</source>\n        <translation>Timeout</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1188\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1191\"/>\n        <source>File</source>\n        <translation>File</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1197\"/>\n        <source>&amp;File</source>\n        <translation>&amp;File</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1208\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1211\"/>\n        <source>Help</source>\n        <translation>Aiuto</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1217\"/>\n        <source>&amp;Help</source>\n        <translation>&amp;Aiuto</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1225\"/>\n        <source>&amp;Edit</source>\n        <translation>&amp;Modifica</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1249\"/>\n        <source>&amp;Quit</source>\n        <translation>&amp;Esci</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1252\"/>\n        <source>Quit</source>\n        <translation>Esci</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1258\"/>\n        <source>Ctrl+Q</source>\n        <translation>Ctrl+Q</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1266\"/>\n        <source>&amp;Save</source>\n        <translation>&amp;Salva</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1269\"/>\n        <source>Save</source>\n        <translation>Salva</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1275\"/>\n        <source>Ctrl+S</source>\n        <translation>Ctrl+S</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1283\"/>\n        <source>&amp;Reload</source>\n        <translation>&amp;Ricarica</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1286\"/>\n        <source>Reload</source>\n        <translation>Ricarica</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1292\"/>\n        <source>Ctrl+R</source>\n        <translation>Ctrl+R</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1300\"/>\n        <source>About &amp;EFI Boot Editor</source>\n        <translation>Info su &amp;EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1303\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"29\"/>\n        <source>About EFI Boot Editor</source>\n        <translation>Info su EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1314\"/>\n        <source>&amp;Export</source>\n        <translation>&amp;Esporta</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1317\"/>\n        <source>Export</source>\n        <translation>Esporta</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1323\"/>\n        <source>Ctrl+E</source>\n        <translation>Ctrl+E</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1331\"/>\n        <source>&amp;Import</source>\n        <translation>&amp;Importa</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1334\"/>\n        <source>Import</source>\n        <translation>Importa</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1340\"/>\n        <source>Ctrl+I</source>\n        <translation>Ctrl+I</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1348\"/>\n        <source>&amp;Dump raw EFI data</source>\n        <translation>&amp;Salva dati EFI grezzi</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1351\"/>\n        <source>Dump raw EFI data</source>\n        <translation>Salva dati EFI grezzi</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"26\"/>\n        <source>Working…</source>\n        <translation>Elaborazione…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"92\"/>\n        <source>Undo %1</source>\n        <translation>Annulla operazione &apos;%1&apos;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"95\"/>\n        <source>Redo %1</source>\n        <translation>Ripeti operazione &apos;%1&apos;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"137\"/>\n        <source>Are you sure you want to reload the entries?&lt;br/&gt;ALL of your changes will be lost!</source>\n        <translation>Sei sicuro di voler ricaricare le voci?&lt;br/&gt;TUTTE le modifiche andranno perse!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"162\"/>\n        <source>Are you sure you want to reorder the boot entries?&lt;br/&gt;All indexes will be overwritten!</source>\n        <translation>Sei sicuro di voler riordinare le voci di boot?&lt;br/&gt;Tutti gli indici verranno sovrascritti!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"221\"/>\n        <source>Are you sure you want to save?&lt;br/&gt;Your EFI configuration will be overwritten!</source>\n        <translation>Sei sicuro di voler salvare?&lt;br/&gt;La configurazione EFI verrà sovrascritta!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <source>Open boot configuration dump</source>\n        <translation>Apri dump configurazione di boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>JSON documents (*.json)</source>\n        <translation>Documenti JSON (*.json)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <source>Save boot configuration dump</source>\n        <translation>Salva dump configurazione di boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>Save raw EFI dump</source>\n        <translation>Salva dump configurazione EFI grezza</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"45\"/>\n        <source>&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;Website&lt;/a&gt;&lt;/p&gt;&lt;p&gt;The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.&lt;/p&gt;&lt;p&gt;License: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL Version 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;On Linux uses &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; for EFI variables access.&lt;/p&gt;&lt;p&gt;Uses Tango Icons as fallback icons.&lt;/p&gt;</source>\n        <extracomment>About dialog details</extracomment>\n        <translation>&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;Website&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Il programma è fornito COSÌ COM&apos;È SENZA GARANZIE DI ALCUN TIPO, COMPRESA LA GARANZIA DI DESIGN, COMMERCIABILITÀ E IDONEITÀ PER UNO SCOPO PARTICOLARE.&lt;/p&gt;&lt;p&gt;Licenza: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL Versione 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Per l&apos;accesso alle variabili EFI In Linux usa &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Usa le icone di Tango come icone di riserva.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"330\"/>\n        <source>Reorder %1 entries</source>\n        <translation>Riordina &apos;%1&apos; voci</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"453\"/>\n        <source>Are you sure you want to quit?</source>\n        <translation>Sei sicuro di voler uscire?</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"123\"/>\n        <source>EFI support required</source>\n        <translation>È richiesto il supporto EFI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"31\"/>\n        <source>&lt;h1&gt;EFI Boot Editor&lt;/h1&gt;&lt;p&gt;Version &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Boot Editor for (U)EFI based systems.&lt;/p&gt;</source>\n        <extracomment>About dialog</extracomment>\n        <translation>&lt;h1&gt;EFI Boot Editor&lt;/h1&gt;&lt;p&gt;Versione &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Boot Editor per sistemi basati su (U)EFI.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1122\"/>\n        <source>Boot args</source>\n        <translation>Boot args</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditorCLI</name>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"13\"/>\n        <source>Boot Editor for (U)EFI based systems.</source>\n        <translation>Boot editor per sistemi basati su (U)EFI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <source>Export configuration.</source>\n        <translation>Esporta configurazione.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>FILE</source>\n        <translation>FILE</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <source>Dump raw EFI data.</source>\n        <translation>Dump dati EFI non elaborati.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>Import configuration from JSON (either from export or raw dump).</source>\n        <translation>Importa configurazione da JSON (da esportazione o dal dump non elaborato).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"19\"/>\n        <source>Force import, don&apos;t ask for confirmation.</source>\n        <translation>Forza importazione, non chiedere conferma.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"26\"/>\n        <source>EFI support required</source>\n        <translation>È richiesto il supporto EFI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"45\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation>Caricamento voci gestione boot EFI…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"47\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"57\"/>\n        <source>Exporting boot configuration…</source>\n        <translation>Esportazione configurazione boot…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"67\"/>\n        <source>Importing boot configuration…</source>\n        <translation>Importazione configurazione boot…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Loaded %0 %1 entries</source>\n        <translation>Caricate %0 %1 voci</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <source>Boot</source>\n        <translation>Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <source>Driver</source>\n        <translation>Driver</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <source>System Preparation</source>\n        <translation>Preparazione sistema</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Hot Key</source>\n        <translation>Tasto rapido</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"78\"/>\n        <source>Are you sure you want to save?\nYour EFI configuration will be overwritten!</source>\n        <translation>Sei sicuro di voler salvare?\nLa configurazione EFI attuale verrà sovrascritta!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"86\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation>Salvataggio voci gestione boot EFI…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"98\"/>\n        <source>ERROR: %0! %1</source>\n        <translation>ERRORE: %0! %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"114\"/>\n        <source>Finished</source>\n        <translation>Completato</translation>\n    </message>\n</context>\n<context>\n    <name>EFIKeySequenceEdit</name>\n    <message>\n        <location filename=\"../src/efikeysequenceedit.cpp\" line=\"109\"/>\n        <source>Press hot key</source>\n        <translation>Premi tasto rapido</translation>\n    </message>\n</context>\n<context>\n    <name>FilePathDialog</name>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"12\"/>\n        <source>File path editor</source>\n        <translation>Editor percorso file</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"47\"/>\n        <source>PCI</source>\n        <translation>PCI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"80\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"86\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"196\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"202\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"218\"/>\n        <source>Function</source>\n        <translation>Funzione</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"121\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"127\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"143\"/>\n        <source>Device</source>\n        <translation>Dispositivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"721\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"727\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"742\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"835\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"841\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"856\"/>\n        <source>HID</source>\n        <translation>HID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"761\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"767\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"782\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"896\"/>\n        <source>UID</source>\n        <translation>UID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1813\"/>\n        <source>USB</source>\n        <translation>USB</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1819\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Impostazioni USB.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1893\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1909\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3688\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3710\"/>\n        <source>Interface</source>\n        <translation>Interfaccia</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7442\"/>\n        <source>Vendor</source>\n        <translation>Produttore</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7445\"/>\n        <source>Vendor settings</source>\n        <translation>Impostazioni produttore</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7448\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Impostazioni produttore.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1778\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1793\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5824\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6348\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7117\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7546\"/>\n        <source>GUID</source>\n        <translation>GUID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5539\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7587\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7850\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7853\"/>\n        <source>Data format</source>\n        <translation>Formato dati</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5542\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7590\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7856\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Formato dati.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5546\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5869\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7860\"/>\n        <source>BASE64</source>\n        <translation>BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1168\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5551\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5874\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7865\"/>\n        <source>UTF-16</source>\n        <translation>UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1173\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5556\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7604\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7870\"/>\n        <source>UTF-8</source>\n        <translation>UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5561\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7875\"/>\n        <source>HEX</source>\n        <translation>HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5523\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5901\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7888\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7891\"/>\n        <source>Data</source>\n        <translation>Dati</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7894\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dati.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7565\"/>\n        <source>Vendor data</source>\n        <translation>Dati produttore</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7481\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7757\"/>\n        <source>Type</source>\n        <translation>Tipo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7478\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7500\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Tipo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7504\"/>\n        <source>HW</source>\n        <translation>HW</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7509\"/>\n        <source>MSG</source>\n        <translation>MSG</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7514\"/>\n        <source>MEDIA</source>\n        <translation>MEDIA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2292\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2298\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2313\"/>\n        <source>MAC</source>\n        <translation>MAC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2265\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;MAC settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Impostazioni MAC.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2374\"/>\n        <source>IPv4</source>\n        <translation>IPv4</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2380\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv4 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Impostazioni IPv4.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2569\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2591\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2925\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2931\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2947\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4110\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4116\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4132\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6616\"/>\n        <source>Protocol</source>\n        <translation>Protocollo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3003\"/>\n        <source>Static</source>\n        <translation>Statico</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2692\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Subnet mask.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Maschera sottorete.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2730\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5479\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5486\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5503\"/>\n        <source>IPv6</source>\n        <translation>IPv6</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2736\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv6 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Impostazioni IPv6.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3008\"/>\n        <source>Stateless auto-configuration</source>\n        <translation>Configurazione automatica stateless</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3013\"/>\n        <source>Stateful auto-configuration</source>\n        <translation>Configurazione automatica stateful</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3920\"/>\n        <source>SATA</source>\n        <translation>SATA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SATA settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Impostazioni SATA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1387\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1393\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1409\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1658\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1664\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1679\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3900\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4035\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4041\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4057\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4191\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4197\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4212\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4496\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4502\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4610\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4616\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4988\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5009\"/>\n        <source>LUN</source>\n        <translation>LUN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4885\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4901\"/>\n        <source>URI</source>\n        <translation>URI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6105\"/>\n        <source>Disk</source>\n        <translation>Disco</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6102\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Disco.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6123\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6126\"/>\n        <source>Choose disk</source>\n        <translation>Scegli disco</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6129\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Choose disk from discovered in the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Scegli il disco tra quelli rilevati nel sistema.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6133\"/>\n        <source>Custom</source>\n        <translation>Personalizzato</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6147\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6150\"/>\n        <source>Reload drives</source>\n        <translation>Ricarica unità</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reload system drives list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ricarica l&apos;elenco delle unità di sistema.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6343\"/>\n        <source>MBR</source>\n        <translation>MBR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6177\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6183\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6199\"/>\n        <source>Partition</source>\n        <translation>Partizione</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6720\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6741\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6797\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6812\"/>\n        <source>Name</source>\n        <translation>Nome</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7176\"/>\n        <source>BIOS Boot Specification</source>\n        <translation>Specifiche boot del BIOS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7405\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7411\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7427\"/>\n        <source>Description</source>\n        <translation>Descrizione</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7639\"/>\n        <source>End</source>\n        <translation>Fine</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7669\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7672\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7678\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7797\"/>\n        <source>Sub-Type</source>\n        <translation>Sottotipo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7675\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7697\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sottotipo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7701\"/>\n        <source>End This Instance</source>\n        <translation>Termina questa istanza</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7706\"/>\n        <source>End Entire</source>\n        <translation>Fine completa</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7718\"/>\n        <source>Unknown</source>\n        <translation>Sconosciuto</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"50\"/>\n        <source>The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.</source>\n        <translation>Il percorso dispositivo PCI definisce il percorso dell&apos;indirizzo dello spazio di configurazione PCI per un dispositivo PCI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"53\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Il percorso dispositivo PCI definisce il percorso dell&apos;indirizzo dello spazio di configurazione PCI per un dispositivo PCI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"77\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"99\"/>\n        <source>PCI Function Number.</source>\n        <translation>Numero funzione PCI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"83\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"105\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Function Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Numero funzione PCI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"118\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"140\"/>\n        <source>PCI Device Number.</source>\n        <translation>Numero dispositivo PCI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"124\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Device Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Numero dispositivo PCI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"163\"/>\n        <source>PCCARD</source>\n        <translation>PCCARD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"166\"/>\n        <source>PCCARD Settings.</source>\n        <translation>Impostazioni PCCARD.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCCARD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Impostazioni PCCARD.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"193\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"215\"/>\n        <source>Function Number (0 = First Function).</source>\n        <translation>Numero funzione (0 = prima funzione).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"199\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"221\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Function Number (0 = First Function).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Numero funzione (0 = prima funzione).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"238\"/>\n        <source>Memory Mapped</source>\n        <translation>Mappate in memoria</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"241\"/>\n        <source>Memory Mapped Settings.</source>\n        <translation>Impostazioni mappate in memoria.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Memory Mapped Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Impostazioni mappate in memoria.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"268\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"290\"/>\n        <source>The type of memory to allocate.</source>\n        <translation>Il tipo di memoria da allocare.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"271\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"293\"/>\n        <source>Memory Type</source>\n        <translation>Tipo memoria</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"274\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"296\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The type of memory to allocate.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Il tipo di memoria da allocare.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"300\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1584\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1738\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1753\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3145\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3160\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4416\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4437\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6868\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6883\"/>\n        <source>Reserved</source>\n        <translation>Riservata</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"305\"/>\n        <source>Loader Code</source>\n        <translation>Codice caricatore</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"310\"/>\n        <source>Loader Data</source>\n        <translation>Dati caricatore</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"315\"/>\n        <source>Boot Services Code</source>\n        <translation>Codice servizi boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"320\"/>\n        <source>Boot Services Data</source>\n        <translation>Dati servizi boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"325\"/>\n        <source>Runtime Services Code</source>\n        <translation>Codice servizi runtime</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"330\"/>\n        <source>Runtime Services Data</source>\n        <translation>Dati servizi runtime</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"335\"/>\n        <source>Conventional</source>\n        <translation>Convenzionale</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"340\"/>\n        <source>Unusable</source>\n        <translation>Inutilizzabile</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"345\"/>\n        <source>ACPI Reclaim</source>\n        <translation>Recupero ACPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"350\"/>\n        <source>ACPI Memory NVS</source>\n        <translation>Memoria ACPI NVS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"355\"/>\n        <source>Memory Mapped IO</source>\n        <translation>I/O mappato in memoria</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"360\"/>\n        <source>Memory Mapped IO Port Space</source>\n        <translation>Spazio porta IO mappata in memoria</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"365\"/>\n        <source>Pal Code</source>\n        <translation>Codice Pal</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"370\"/>\n        <source>Persistent</source>\n        <translation>Persistente</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"375\"/>\n        <source>Unaccepted</source>\n        <translation>Non accettato</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"383\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7013\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7034\"/>\n        <source>Starting Memory Address.</source>\n        <translation>Indirizzo iniziale memoria.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"386\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"407\"/>\n        <source>Start Address</source>\n        <translation>Indirizzo iniziale</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"389\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7019\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7040\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indirizzo iniziale memoria.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"423\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7053\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7074\"/>\n        <source>Ending Memory Address.</source>\n        <translation>Indirizzo finale memoria.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"426\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"432\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"447\"/>\n        <source>End Address</source>\n        <translation>Indirizzo finale</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"429\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7080\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ending Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indirizzo finale memoria.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"467\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"522\"/>\n        <source>Controller</source>\n        <translation>Controller</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"470\"/>\n        <source>Controller settings.</source>\n        <translation>Impostazioni controller.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"473\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Impostazioni controller.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"519\"/>\n        <source>Controller number.</source>\n        <translation>Numero controllor.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"525\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Numero controllor.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"542\"/>\n        <source>BMC</source>\n        <translation>BMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"545\"/>\n        <source>The Device Path for a Baseboard Management Controller (BMC) host interface.</source>\n        <translation>Il percorso dispositivo per l&apos;interfaccia host Baseboard Management Controller (BMC).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"548\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for a Baseboard Management Controller (BMC) host interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Il percorso dispositivo per l&apos;interfaccia host Baseboard Management Controller (BMC)..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"602\"/>\n        <source>The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.</source>\n        <translation>Il tipo di interfaccia host Baseboard Management Controller (BMC):\n0x00 - Sconosciuta.\n0x01 - KCS: stile controller tastiera.\n0x02 - SMIC: chip interfaccia gestione server.\n0x03 - BT: trasferimento a blocchi.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"579\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"589\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2332\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2354\"/>\n        <source>Interface Type</source>\n        <translation>Tipo interfaccia</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"582\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"612\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Il tipo di interfaccia host Baseboard Management Controller (BMC):\n0x00 - Sconosciuta.\n0x01 - KCS: stile controller tastiera.\n0x02 - SMIC: chip interfaccia gestione server.\n0x03 - BT: trasferimento a blocchi.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"625\"/>\n        <source>Keyboard Controller Style</source>\n        <translation>Stile controller tastiera</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"630\"/>\n        <source>Server Management Interface Chip</source>\n        <translation>Chip interfaccia gestione server</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"635\"/>\n        <source>Block Transfer</source>\n        <translation>Trasferimento a blocchi</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"643\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"664\"/>\n        <source>Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.</source>\n        <translation>Indirizzo di base (mappato in memoria o I/O) del BMC. Se il bit meno significativo del campo è 1, l&apos;indirizzo è nello spazio I/O; in caso contrario, l&apos;indirizzo viene mappato in memoria. Per i dettagli sull&apos;utilizzo fai riferimento alle specifiche dell&apos;interfaccia IPMI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"667\"/>\n        <source>Base Address</source>\n        <translation>Indirizzo base</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"670\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indirizzo di base (mappato in memoria o I/O) del BMC. Se il bit meno significativo del campo è 1, l&apos;indirizzo è nello spazio I/O; in caso contrario, l&apos;indirizzo viene mappato in memoria. per i dettagli sull&apos;utilizzo fai riferimento alle specifiche dell&apos;interfaccia IPMI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"688\"/>\n        <source>ACPI</source>\n        <translation>ACPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"805\"/>\n        <source>This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.</source>\n        <translation>Questo percorso dispositivo contiene gli ID dispositivo ACPI che rappresentano l&apos;ID hardware Plug and Play di un dispositivo e il corrispondente ID persistente univoco.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"808\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Questo percorso dispositivo contiene gli ID dispositivo ACPI che rappresentano l&apos;ID hardware Plug and Play di un dispositivo e il corrispondente ID persistente univoco.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"718\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"739\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"832\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"853\"/>\n        <source>Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.</source>\n        <translation>ID hardware PnP dei dispositivi archiviato in un ID numerico di tipo EISA compresso a 32 bit. Questo valore deve corrispondere all&apos;HID corrispondente nello spazio dei nomi ACPI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"724\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"745\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"838\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"859\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ID hardware PnP dei dispositivi archiviato in un ID numerico di tipo EISA compresso a 32 bit. Questo valore deve corrispondere all&apos;HID corrispondente nello spazio dei nomi ACPI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"779\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"872\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"893\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.</source>\n        <translation>ID univoco richiesto da ACPI se due dispositivi hanno lo stesso HID. Questo valore deve corrispondere anche alla coppia UID/HID corrispondente nello spazio dei nomi ACPI. È supportato solo il tipo di valore numerico UID a 32 bit; pertanto le stringhe non devono essere usate per l&apos;UID nello spazio dei nomi ACPI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"764\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"785\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"899\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ID univoco richiesto da ACPI se due dispositivi hanno lo stesso HID. Questo valore deve corrispondere anche alla coppia UID/HID corrispondente nello spazio dei nomi ACPI. È supportato solo il tipo di valore numerico UID a 32 bit; pertanto le stringhe non devono essere utilizzate per l&apos;UID nello spazio dei nomi ACPI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"802\"/>\n        <source>Expanded</source>\n        <translation>Espanso</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"912\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"933\"/>\n        <source>Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.</source>\n        <translation>ID hardware PnP compatibile con i dispositivi memorizzato in un ID numerico di tipo EISA compresso a 32 bit. Questo valore deve corrispondere ad almeno uno degli ID dispositivo compatibili restituiti dalla CID corrispondente nello spazio dei nomi ACPI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"915\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"921\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"936\"/>\n        <source>CID</source>\n        <translation>CID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"918\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"939\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ID hardware PnP compatibile con i dispositivi memorizzato in un ID numerico di tipo EISA compresso a 32 bit. Questo valore deve corrispondere ad almeno uno degli ID dispositivo compatibili restituiti dalla CID corrispondente nello spazio dei nomi ACPI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"952\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"974\"/>\n        <source>Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.</source>\n        <translation>ID hardware PnP dei dispositivi memorizzato come stringa. Questo valore deve corrispondere all&apos;HID corrispondente nello spazio dei nomi ACPI. Se la lunghezza di questa stringa è 0, viene usato il campo HID. Se la lunghezza di questa stringa è maggiore di 0, questo campo sostituisce il campo HID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"955\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"961\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"977\"/>\n        <source>HIDSTR</source>\n        <translation>HIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"958\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"980\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ID hardware PnP dispositivi memorizzato come stringa. Questo valore deve corrispondere all&apos;HID corrispondente nello spazio dei nomi ACPI. Se la lunghezza di questa stringa è 0, viene usato il campo HID. Se la lunghezza di questa stringa è maggiore di 0, questo campo sostituisce il campo HID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"987\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1009\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.</source>\n        <translation>ID univoco richiesto da ACPI se due dispositivi hanno lo stesso HID. Questo valore deve corrispondere anche alla coppia UID/HID corrispondente nello spazio dei nomi ACPI. Questo valore viene memorizzato come una stringa. Se la lunghezza di questa stringa è 0, viene usato il campo UID. Se la lunghezza di questa stringa è maggiore di 0, questo campo sostituisce il campo UID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"990\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"996\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1012\"/>\n        <source>UIDSTR</source>\n        <translation>UIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"993\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1015\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ID univoco richiesto da ACPI se due dispositivi hanno lo stesso HID. Questo valore deve corrispondere anche alla coppia UID/HID corrispondente nello spazio dei nomi ACPI. Questo valore viene memorizzato come una stringa. Se la lunghezza di questa stringa è 0, viene usato il campo UID. Se la lunghezza di questa stringa è maggiore di 0, questo campo sostituisce il campo UID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1044\"/>\n        <source>Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.</source>\n        <translation>ID hardware PnP compatibile con i dispositivi memorizzato come stringa. Questo valore deve corrispondere ad almeno uno degli ID dispositivo compatibili restituiti dalla CID corrispondente nello spazio dei nomi ACPI. Se la lunghezza di questa stringa è 0, viene usato il campo CID. Se la lunghezza di questa stringa è maggiore di 0, questo campo sostituisce il campo CID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1025\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1031\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1047\"/>\n        <source>CIDSTR</source>\n        <translation>CIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1028\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1050\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ID hardware PnP compatibile con i dispositivi memorizzato come stringa. Questo valore deve corrispondere ad almeno uno degli ID dispositivo compatibili restituiti dalla CID corrispondente nello spazio dei nomi ACPI. Se la lunghezza di questa stringa è 0, viene usato il campo CID. Se la lunghezza di questa stringa è maggiore di 0, questo campo sostituisce il campo CID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1061\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1094\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1100\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1115\"/>\n        <source>ADR</source>\n        <translation>ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1064\"/>\n        <source>The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.</source>\n        <translation>Il percorso dispositivo ADR viene usato per contenere gli attributi del dispositivo video destinazione per supportare il protocollo grafico destinazione.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1067\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Il percorso dispositivo ADR viene usato per contenere gli attributi del dispositivo video destianzione per supportare il protocollo grafico destinazione.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1091\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1112\"/>\n        <source>ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required</source>\n        <translation>Valore ADR. Per i dispositivi di uscita video il valore di questo campo deriva dalla specifica ACPI 3.0 della Tabella B-2. È obbligatorio almeno un valore ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1097\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1118\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Valore ADR. Per i dispositivi di uscita video il valore di questo campo deriva dalla specifica ACPI 3.0 della Tabella B-2. È obbligatorio almeno un valore ADR&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1131\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1192\"/>\n        <source>This device path may optionally contain more than one ADR entry.</source>\n        <translation>Questo percorso dispositivo può facoltativamente contenere più di una voce ADR.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1195\"/>\n        <source>Additional ADR</source>\n        <translation>ADR aggiuntivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1198\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path may optionally contain more than one ADR entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Questo percorso dispositivo può facoltativamente contenere più di una voce ADR.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1153\"/>\n        <source>Additional ADR format.</source>\n        <translation>Formato ADR aggiuntivo.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1156\"/>\n        <source>Additional ADR format</source>\n        <translation>Formato ADR aggiuntivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1159\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Additional ADR format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Formato ADR aggiuntivo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1209\"/>\n        <source>NVDIMM</source>\n        <translation>NVDIMM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1212\"/>\n        <source>This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.</source>\n        <translation>Questo percorso dispositivo descrive un dispositivo NVDIMM che usa la specifica ACPI 6.0 definita NFIT Device Handle come identificatore.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Questo percorso dispositivo descrive un dispositivo NVDIMM usando la specifica ACPI 6.0 definita NFIT Device Handle come identificatore.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1260\"/>\n        <source>NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.</source>\n        <translation>Handle dispositivo NFIT: identificatore fisico univoco. Per la definizione specifica dei campi utilizzati per questo handle vedi la sezione Dispositivi definiti ACPI e Oggetti specifici dispositivo, sottocapitolo Dispositivi NVDIMM.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1242\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1248\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1263\"/>\n        <source>NFIT Device Handle</source>\n        <translation>Handle dispositivo NFIT</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1245\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Handle dispositivo NFIT: identificatore fisico univoco. Per la definizione specifica dei campi utilizzati per questo handle vedi la sezione Dispositivi definiti ACPI e Oggetti specifici del dispositivo, sottocapitolo Dispositivi NVDIMM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1284\"/>\n        <source>ATAPI</source>\n        <translation>ATAPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1287\"/>\n        <source>ATAPI Settings.</source>\n        <translation>Impostazioni ATAPI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Impostazioni ATAPI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1336\"/>\n        <source>Set to zero for primary or one for secondary.</source>\n        <translation>Imposta a zero per il primario o a uno per il secondario.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1317\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1323\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1339\"/>\n        <source>Primary</source>\n        <translation>Primario</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1320\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1342\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for primary or one for secondary.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Imposta a zero per il primario o a uno per il secondario.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1349\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1371\"/>\n        <source>Set to zero for master or one for slave mode.</source>\n        <translation>Imposta a zero per la modalità master o a uno per la modalità slave.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1374\"/>\n        <source>Slave</source>\n        <translation>Slave</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1377\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for master or one for slave mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Imposta a zero per la modalità master o a uno per la modalità slave.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1384\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1406\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4054\"/>\n        <source>Logical Unit Number.</source>\n        <translation>Numero unità logica.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1390\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1412\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4038\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Numero unità logica.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1429\"/>\n        <source>SCSI</source>\n        <translation>SCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1432\"/>\n        <source>SCSI Settings.</source>\n        <translation>Impostazioni SCSI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1435\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Impostazioni SCSI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1481\"/>\n        <source>Target ID on the SCSI bus (PUN).</source>\n        <translation>ID destinazione bus SCSI (PUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1962\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1984\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4969\"/>\n        <source>Target ID</source>\n        <translation>ID destinazione</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1465\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1487\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the SCSI bus (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ID destinazione bus SCSI (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4985\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5006\"/>\n        <source>Logical Unit Number (LUN).</source>\n        <translation>Numero unità logica (LUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5012\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Numero unità logica (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1545\"/>\n        <source>Fibre Channel</source>\n        <translation>Canale fibra ottica</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1548\"/>\n        <source>Fibre Channel Settings</source>\n        <translation>Impostazioni canale fibra ottica</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1551\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Impostazioni canale fibra ottica&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1596\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1750\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4434\"/>\n        <source>Reserved.</source>\n        <translation>Riservato.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1581\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1602\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1756\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3142\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4419\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Riservato.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1615\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1636\"/>\n        <source>Fibre Channel World Wide Name.</source>\n        <translation>Nome mondiale canale fibra ottica.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1624\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1639\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4456\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4477\"/>\n        <source>World Wide Name</source>\n        <translation>Nome mondiale</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1621\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1642\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel World Wide Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Nome mondiale canale fibra ottica.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1676\"/>\n        <source>Fibre Channel Logical Unit Number.</source>\n        <translation>Numero unità logica canale fibra ottica.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1661\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1682\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Numero unità logica canale fibra ottica.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1699\"/>\n        <source>Firewire</source>\n        <translation>Firewire</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1702\"/>\n        <source>Firewire Settings.</source>\n        <translation>Impostazioni FireWire.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1705\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firewire Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Impostazioni FireWire.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1790\"/>\n        <source>1394 Global Unique ID (GUID)</source>\n        <translation>ID univoco globale 1394 (GUID)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1796\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 Global Unique ID (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ID univoco globale 1394 (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1816\"/>\n        <source>USB settings.</source>\n        <translation>Impostazioni USB.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1865\"/>\n        <source>USB Parent Port Number.</source>\n        <translation>Numero porta USB principale.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1852\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1868\"/>\n        <source>Parent Port</source>\n        <translation>Porta principale</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1871\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Parent Port Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Numero porta USB principale.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1906\"/>\n        <source>USB Interface Number.</source>\n        <translation>Numero interfaccia USB.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1912\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Numero interfaccia USB.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1929\"/>\n        <source>I2O</source>\n        <translation>I2O</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1932\"/>\n        <source>I2O Settings</source>\n        <translation>Impostazioni I2O</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1935\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;I2O Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Impostazioni I2O&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1981\"/>\n        <source>Target ID (TID) for a device.</source>\n        <translation>ID destinazione (TID) per un dispositivo.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1965\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1987\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID (TID) for a device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ID destinazione (TID) per un dispositivo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2004\"/>\n        <source>InfiniBand</source>\n        <translation>InfiniBand</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2007\"/>\n        <source>InfiniBand Settings.</source>\n        <translation>Impostazioni InfiniBand.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2010\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;InfiniBand Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Impostazioni InfiniBand.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2034\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2067\"/>\n        <source>Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.</source>\n        <translation>Flag per identificare/gestire gli elementi del percorso dispositivo InfiniBand:\nBit 0 - IOC/servizio (0b = IOC, 1b = Servizio).\nBit 1 - Estendi ambiente di boot.\nBit 2 - Protocollo console.\nBit 3 - Protocollo archiviazione.\nBit 4 - Protocollo rete.\nTutti gli altri bit sono riservati.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2043\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2055\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2076\"/>\n        <source>Resource Flags</source>\n        <translation>Flag risorse</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2046\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2079\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flag per identificare/gestire gli elementi del percorso dispositivo InfiniBand:\nBit 0 - IOC/servizio (0b = IOC, 1b = Servizio).\nBit 1 - Estendi l&apos;ambiente boot.\nBit 2 - Protocollo console.\nBit 3 - Protocollo archiviazione.\nBit 4 - Protocollo rete.\nTutti gli altri bit sono riservati.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2098\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2119\"/>\n        <source>128-bit Global Identifier for remote fabric port</source>\n        <translation>Identificatore globale a 128 bit per la porta fabric remoto</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2101\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2122\"/>\n        <source>PORT GID</source>\n        <translation>GID PORTA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2104\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2125\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;128-bit Global Identifier for remote fabric port&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Identificatore globale a 128 bit per la porta fabric remoto&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2135\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2156\"/>\n        <source>64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)</source>\n        <translation>Identificatore univoco a 64 bit per IOC remoto o processo server. Interpretazione del campo specificato dai flag risorsa (bit 0)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2138\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2144\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2159\"/>\n        <source>IOC GUID/Service ID</source>\n        <translation>GUID IOC/ID servizio</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2141\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2162\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Identificatore univoco a 64 bit per IOC remoto o processo server. Interpretazione del campo specificato dai flag risorsa (bit 0)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2175\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2196\"/>\n        <source>64-bit persistent ID of remote IOC port.</source>\n        <translation>ID persistente a 64 bit della porta IOC remota.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2184\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2199\"/>\n        <source>Target Port ID</source>\n        <translation>ID porta destinazione</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2181\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote IOC port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ID persistente a 64 bit porta IOC remota.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2236\"/>\n        <source>64-bit persistent ID of remote device.</source>\n        <translation>ID persistente a 64 bit dispositivo remoto.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2239\"/>\n        <source>Device ID</source>\n        <translation>ID dispositivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ID persistente a 64 bit dispositivo remoto.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2259\"/>\n        <source>MAC Address</source>\n        <translation>Indirizzo MAC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2262\"/>\n        <source>MAC settings.</source>\n        <translation>Impostazioni MAC.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2289\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2310\"/>\n        <source>The MAC address for a network interface padded with 0s.</source>\n        <translation>L&apos;indirizzo MAC per un&apos;interfaccia di rete riempito con 0.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2295\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2316\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The MAC address for a network interface padded with 0s.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;L&apos;indirizzo MAC per un&apos;interfaccia di rete riempito con 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2329\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2351\"/>\n        <source>Network interface type (i.e., 802.3, FDDI). See RFC 3232.</source>\n        <translation>Tipo di interfaccia di rete (ad esempio, 802.3, FDDI). Vedi RFC 3232.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2357\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network interface type (i.e., 802.3, FDDI). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Tipo di interfaccia di rete (ad esempio, 802.3, FDDI). Vedi RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2377\"/>\n        <source>IPv4 settings.</source>\n        <translation>Impostazioni IPv4.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2425\"/>\n        <source>The local IPv4 address.</source>\n        <translation>L&apos;indirizzo IPv4 locale.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2407\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2763\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2784\"/>\n        <source>Local IP Address</source>\n        <translation>Indirizzo IP locale</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2431\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;L&apos;indirizzo IPv4 locale.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2465\"/>\n        <source>The remote IPv4 address.</source>\n        <translation>L&apos;indirizzo IPv4 remoto.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2447\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2824\"/>\n        <source>Remote IP Address</source>\n        <translation>Indirizzo IP remoto</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2471\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;L&apos;indirizzo IPv4 remoto.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2862\"/>\n        <source>The local port number.</source>\n        <translation>Il numero di porta locale.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2487\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2865\"/>\n        <source>Local Port</source>\n        <translation>Porta locale</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2490\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Il numero di porta locale.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2547\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2903\"/>\n        <source>The remote port number.</source>\n        <translation>Il numero porta remota.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2550\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2906\"/>\n        <source>Remote Port</source>\n        <translation>Porta remota</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2553\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2909\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Il numero porta remota.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2566\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2588\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2922\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2944\"/>\n        <source>The network protocol (i.e., UDP, TCP). See RFC 3232.</source>\n        <translation>Il protocollo di rete (ad esempio, UDP, TCP). Vedi RFC 3232.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2928\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2950\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The network protocol (i.e., UDP, TCP). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Il protocollo di rete (ad esempio, UDP, TCP). Vedi RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2631\"/>\n        <source>0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.</source>\n        <translation>0x00: l&apos;indirizzo IP sorgente è stato assegnato tramite DHCP.\n0x01: l&apos;indirizzo IP sorgentee è associato staticamente.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2635\"/>\n        <source>Static IP Address</source>\n        <translation>Indirizzo IP statico</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00: l&apos;indirizzo IP sorgente è stato assegnato tramite DHCP.\n0x01: l&apos;indirizzo IP sorgente è associato staticamente.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2667\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3083\"/>\n        <source>The Gateway IP Address.</source>\n        <translation>L&apos;indirizzo IP del gateway.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3071\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3086\"/>\n        <source>Gateway IP Address</source>\n        <translation>Indirizzo IP del gateway</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2673\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Gateway IP Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;L&apos;indirizzo IP del gateway.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2686\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2707\"/>\n        <source>Subnet mask.</source>\n        <translation>Maschera di sottorete.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2689\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2695\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2710\"/>\n        <source>Subnet Mask</source>\n        <translation>Maschera di sottorete</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2733\"/>\n        <source>IPv6 settings.</source>\n        <translation>Impostazioni IPv6.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2760\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2781\"/>\n        <source>The local IPv6 address.</source>\n        <translation>L&apos;indirizzo IPv6 locale.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2787\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;L&apos;indirizzo IPv6 locale.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2821\"/>\n        <source>The remote IPv6 address.</source>\n        <translation>L&apos;indirizzo IPv6 remoto.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;L&apos;indirizzo IPv6 remoto.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2963\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2989\"/>\n        <source>0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.</source>\n        <translation>0x00: l&apos;indirizzo IP locale è stato configurato manualmente.\n0x01: l&apos;indirizzo IP locale viene assegnato tramite la configurazione automatica stateless IPv6.\n0x02: l&apos;indirizzo IP locale viene assegnato tramite la configurazione con stato IPv6.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2976\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2994\"/>\n        <source>IP Address Origin</source>\n        <translation>Origine indirizzo IP</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2971\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2997\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00: l&apos;indirizzo IP locale è stato configurato manualmente.\n0x01: l&apos;indirizzo IP locale viene assegnato tramite la configurazione automatica stateless IPv6.\n0x02: l&apos;indirizzo IP locale viene assegnato tramite la configurazione con stato IPv6.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3021\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3043\"/>\n        <source>The Prefix Length.</source>\n        <translation>La lunghezza del prefisso.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3024\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3030\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3046\"/>\n        <source>Prefix Length</source>\n        <translation>Lunghezza prefisso</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3027\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3049\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Prefix Length.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;La lunghezza del prefisso.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3106\"/>\n        <source>UART</source>\n        <translation>UART</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3109\"/>\n        <source>UART Settings.</source>\n        <translation>Impostazioni UART.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3112\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Impostazioni UART.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3176\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3197\"/>\n        <source>The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.</source>\n        <translation>L&apos;impostazione della velocità di trasmissione per il dispositivo stile UART. Un valore pari a 0 significa che verrà usata la velocità di trasmissione predefinita del dispositivo.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3179\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3185\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3200\"/>\n        <source>Baud Rate</source>\n        <translation>Velocità trasmissione</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3182\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3203\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;L&apos;impostazione della velocità di trasmissione per il dispositivo stile UART. Un valore pari a 0 significa che verrà usata la velocità di trasmissione predefinita del dispositivo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3216\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3238\"/>\n        <source>The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.</source>\n        <translation>Il numero di bit dati per il dispositivo stile UART. Un valore pari a 0 significa che verrà usato il numero di bit dati predefinito del dispositivo.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3219\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3225\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3241\"/>\n        <source>Data Bits</source>\n        <translation>Bit dati</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3222\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Il numero di bit dati per il dispositivo stile UART. Un valore pari a 0 significa che verrà usato il numero di bit dati predefinito del dispositivo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3257\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3291\"/>\n        <source>The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.</source>\n        <translation>L&apos;impostazione parità per il dispositivo in stile UART:\n0x00: parità predefinita.\n0x01 - nessuna parità.\n0x02 - parità pari.\n0x03 - parità dispari.\n0x04 - parità mark.\n0x05 - parità space.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3266\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3300\"/>\n        <source>Parity</source>\n        <translation>Parità</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3303\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;L&apos;impostazione parità per il dispositivo in stile UART:\n0x00: parità predefinita.\n0x01 - nessuna parità.\n0x02 - parità pari.\n0x03 - parità dispari.\n0x04 - parità mark.\n0x05 - parità space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3313\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3394\"/>\n        <source>Default</source>\n        <translation>Predefinito</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3318\"/>\n        <source>No</source>\n        <translation>No</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3323\"/>\n        <source>Even</source>\n        <translation>Dispari</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3328\"/>\n        <source>Odd</source>\n        <translation>Pari</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3333\"/>\n        <source>Mark</source>\n        <translation>Mark</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3338\"/>\n        <source>Space</source>\n        <translation>Space</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3346\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3376\"/>\n        <source>The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.</source>\n        <translation>Il numero di bit di stop per il dispositivo stile UART:\n0x00: bit di stop predefiniti.\n0x01 - 1 bit di stop.\n0x02 - 1,5 Bit di stop.\n0x03 - 2 bit di stop.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3353\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3363\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3383\"/>\n        <source>Stop Bits</source>\n        <translation>Bit di stop</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3356\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Il numero di bit di stop per il dispositivo stile UART:\n0x00: bit di stop predefiniti.\n0x01 - 1 bit di stop.\n0x02 - 1,5 Bit di stop.\n0x03 - 2 bit di stop.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3399\"/>\n        <source>1</source>\n        <translation>1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3404\"/>\n        <source>1.5</source>\n        <translation>1.5</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3409\"/>\n        <source>2</source>\n        <translation>2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3421\"/>\n        <source>USB Class</source>\n        <translation>Classe USB</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3424\"/>\n        <source>USB Class Settings.</source>\n        <translation>Impostazioni classe USB.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3427\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Class Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Impostazioni classe USB.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3451\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3472\"/>\n        <source>Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.</source>\n        <translation>ID venditore assegnato da USB-IF. Un valore 0xFFFF corrisponderà a qualsiasi ID fornitore.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3454\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3460\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3475\"/>\n        <source>Vendor ID</source>\n        <translation>ID venditore</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3457\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3478\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ID venditore assegnato da USB-IF. Un valore 0xFFFF corrisponderà a qualsiasi ID venditore.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3491\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3512\"/>\n        <source>Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.</source>\n        <translation>ID prodotto assegnato da USB-IF. Un valore 0xFFFF corrisponderà a qualsiasi ID prodotto.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3515\"/>\n        <source>Product ID</source>\n        <translation>ID prodotto</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3518\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ID prodotto assegnato da USB-IF. Un valore 0xFFFF corrisponderà a qualsiasi ID prodotto.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3552\"/>\n        <source>The class code assigned by the USB-IF. A value of 0xFF will match any class code.</source>\n        <translation>Il codice classe assegnato da USB-IF. Un valore 0xFF corrisponderà a qualsiasi codice classe.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3540\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3555\"/>\n        <source>Device Class</source>\n        <translation>Classe dispositivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3537\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3558\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The class code assigned by the USB-IF. A value of 0xFF will match any class code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Il codice classe assegnato da USB-IF. Un valore 0xFF corrisponderà a qualsiasi codice classe.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3592\"/>\n        <source>The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.</source>\n        <translation>Il codice sottoclasse assegnato da USB-IF. Un valore 0xFF corrisponderà a qualsiasi codice sottoclasse.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3574\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3595\"/>\n        <source>Device Subclass</source>\n        <translation>Sottoclasse dispositivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Il codice sottoclasse assegnato da USB-IF. Un valore 0xFF corrisponderà a qualsiasi codice sottoclasse.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3632\"/>\n        <source>The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.</source>\n        <translation>Il codice protocollo assegnato da USB-IF. Un valore 0xFF corrisponderà a qualsiasi codice protocollo.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3635\"/>\n        <source>Device Protocol</source>\n        <translation>Protocollo dispositivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3617\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Il codice protocollo assegnato da USB-IF. Un valore 0xFF corrisponderà a qualsiasi codice protocollo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3655\"/>\n        <source>USB WWID</source>\n        <translation>WWID USB</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3658\"/>\n        <source>This device path describes a USB device using its serial number.</source>\n        <translation>Questo percorso dispositivo descrive un dispositivo USB usando il suo numero di serie.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3661\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a USB device using its serial number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Questo percorso dispositivo descrive un dispositivo USB usando il suo numero di serie.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3685\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3707\"/>\n        <source>USB interface Number.</source>\n        <translation>Numero interfaccia USB.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Numero interfaccia USB.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3747\"/>\n        <source>USB vendor id of the device.</source>\n        <translation>ID venditore dispositivo USB.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3750\"/>\n        <source>Device Vendor Id</source>\n        <translation>ID venditore dispositivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3753\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB vendor id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ID venditore dispositivo USB.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3787\"/>\n        <source>USB product id of the device.</source>\n        <translation>ID prodotto dispositivo USB.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3790\"/>\n        <source>Device Product Id</source>\n        <translation>ID prodotto dispositivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3793\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB product id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ID prodotto USB dispositivo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3828\"/>\n        <source>Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).</source>\n        <translation>Ultimi 64 o meno caratteri UTF-16 del numero di serie USB. La lunghezza della stringa è determinata dal campo Lunghezza meno l&apos;offset del campo Numero di serie (10).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3815\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3831\"/>\n        <source>Serial Number</source>\n        <translation>Numero di serie</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3812\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ultimi 64 o meno caratteri UTF-16 del numero di serie USB. La lunghezza della stringa è determinata dal campo Lunghezza meno l&apos;offset del campo Numero di serie (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3845\"/>\n        <source>Device Logical Unit</source>\n        <translation>Unità logica dispositivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3848\"/>\n        <source>Device Logical Unit Settings.</source>\n        <translation>Impostazioni unità logica dispositivo.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3851\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device Logical Unit Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Impostazioni unità logica dispositivo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3897\"/>\n        <source>Logical Unit Number for the interface.</source>\n        <translation>Numero unità logica interfaccia.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3903\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number for the interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Numero unità logica interfaccia.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3923\"/>\n        <source>SATA settings.</source>\n        <translation>Impostazioni SATA.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3950\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3972\"/>\n        <source>The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.</source>\n        <translation>Il numero di porta HBA che facilita la connessione al dispositivo o un moltiplicatore di porte. Il valore 0xFFFF è riservato.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3953\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3975\"/>\n        <source>HBA Port</source>\n        <translation>Porta HBA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3956\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3978\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Il numero di porta HBA che facilita la connessione al dispositivo o un moltiplicatore di porte. Il valore 0xFFFF è riservato.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4013\"/>\n        <source>The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.</source>\n        <translation>Il numero di porta del moltiplicatore di porte che facilita la connessione al dispositivo. Se il dispositivo è collegato direttamente all&apos;HBA deve essere impostato su 0xFFFF.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4000\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4016\"/>\n        <source>Port Multiplier Port</source>\n        <translation>Porta moltiplicatore porte</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3997\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4019\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Il numero porta del moltiplicatore di porte che facilita la connessione al dispositivo. Se il dispositivo è collegato direttamente all&apos;HBA deve essere impostato su 0xFFFF.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4077\"/>\n        <source>iSCSI</source>\n        <translation>iSCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4080\"/>\n        <source>iSCSI Settings.</source>\n        <translation>Impostazioni iSCSI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4083\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Impostazioni iSCSI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4129\"/>\n        <source>Network Protocol (0 = TCP, 1+ = reserved).</source>\n        <translation>Protocollo di rete (0 = TCP, 1+ = riservato).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4113\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network Protocol (0 = TCP, 1+ = reserved).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Protocollo di rete (0 = TCP, 1+ = riservato).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4148\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4169\"/>\n        <source>iSCSI Login Options.</source>\n        <translation>Opzioni accesso iSCSI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4151\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4172\"/>\n        <source>Options</source>\n        <translation>Opzioni</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4154\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4175\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Login Options.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Opzioni accesso iSCSI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4188\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4209\"/>\n        <source>8 byte array containing the iSCSI Logical Unit Number.</source>\n        <translation>Array da 8 byte contenente il numero unità logica iSCSI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4194\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing the iSCSI Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Array da 8 byte contenente il numero unità logica iSCSI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4228\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4250\"/>\n        <source>iSCSI Target Portal group tag the initiator intends to establish a session with.</source>\n        <translation>Tag gruppo portale destinazione iSCSI con cui l&apos;iniziatore intende stabilire una sessione.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4231\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4253\"/>\n        <source>Target Portal Group</source>\n        <translation>Gruppo portale destinazione</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4234\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4256\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Target Portal group tag the initiator intends to establish a session with.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iTag gruppo portale destinazione SCSI con cui l&apos;iniziatore intende stabilire una sessione.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4291\"/>\n        <source>iSCSI NodeTarget Name.</source>\n        <translation>Nome destinazione nodo iSCSI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4272\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4294\"/>\n        <source>Target Name</source>\n        <translation>Nome destinazione</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4275\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4297\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI NodeTarget Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Nome destinazione nodo iSCSI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4308\"/>\n        <source>VLAN</source>\n        <translation>VLAN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4311\"/>\n        <source>VLAN Settings.</source>\n        <translation>Impostazioni VLAN.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4314\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Impostazioni VLAN.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4360\"/>\n        <source>VLAN identifier (0-4094).</source>\n        <translation>Identificatore VLAN (0-4094).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4341\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4347\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4363\"/>\n        <source>Vlan ID</source>\n        <translation>ID VLAN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4344\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4366\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN identifier (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Identificatore VLAN (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4383\"/>\n        <source>Fibre Channel Ex</source>\n        <translation>Canale fibra ottica Ex</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4386\"/>\n        <source>The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation>Il percorso dispositivo fibra ottioca Ex chiarisce la definizione del campo numero unità logica per conformarsi alla specifica T-10 SCSI modello architettura 4.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4389\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Il percorso dispositivo fibra ottica Ex chiarisce la definizione del campo numero unità logica per conformarsi alla specifica T-10 SCSI archiettura modello 4.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4474\"/>\n        <source>8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).</source>\n        <translation>Array di 8 byte contenente il nome porta dispositivo finale fibra ottica (noto anche come nome mondiale).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4480\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Array da 8 byte contenente il nome porta dispositivo finale fibra ottica (noto anche come nome mondiale).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4514\"/>\n        <source>8 byte array containing Fibre Channel Logical Unit Number.</source>\n        <translation>Array di 8 byte contenente il numero unità logica fibra ottica.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4499\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4520\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Array di 8 byte contenente il numero unità logica fibra ottica.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4537\"/>\n        <source>SAS Extended Messaging</source>\n        <translation>Messaggistica estesa SAS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4540\"/>\n        <source>The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation>Il percorso dispositivo SAS Ex chiarisce la definizione del campo numero unità logica per conformarsi alla specifica T-10 SCSI architettura modello 4.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4543\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Il percorso dispositivo SAS Ex chiarisce la definizione del campo numero unità logica per conformarsi alla specifica T-10 SCSI architettura modello 4.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4567\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4588\"/>\n        <source>8-byte array of the SAS Address for Serial Attached SCSI Target Port.</source>\n        <translation>Matrice di 8 byte dell&apos;indirizzo SAS per la porta destinazione SCSI collegata in serie.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4570\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4576\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4591\"/>\n        <source>SAS Address</source>\n        <translation>Indirizzo SAS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4573\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4594\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Address for Serial Attached SCSI Target Port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Matrice 8 byte indirizzo SAS per la porta destinazione SCSI collegata in serie.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4628\"/>\n        <source>8-byte array of the SAS Logical Unit Number.</source>\n        <translation>Matrice 8 byte numero unità logica SAS.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4613\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4634\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Matrice 8 byte numero unità logica SAS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4647\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4668\"/>\n        <source>More Information about the device and its interconnect.</source>\n        <translation>Ulteriori informazioni sul dispositivo e sulla sua interconnessione.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4650\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4656\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4671\"/>\n        <source>Device and Topology Info</source>\n        <translation>Informazioni sul dispositivo e sulla topologia</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4653\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4674\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;More Information about the device and its interconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ulteriori informazioni sul dispositivo e sulla sua interconnessione.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4687\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4709\"/>\n        <source>Relative Target Port (RTP).</source>\n        <translation>Porta destinazione relativa (RTP).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4690\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4696\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4712\"/>\n        <source>Relative Target Port</source>\n        <translation>Porta destinazione relativa</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4715\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Relative Target Port (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Porta destinazione relativa (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4732\"/>\n        <source>NVM Express NS</source>\n        <translation>NS NVM Exspress</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4735\"/>\n        <source>NVM Express Namespace Settings.</source>\n        <translation>Impostazioni spazio nomi NVM Express.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4738\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM Express Namespace Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Impostazioni spazio nomi NVM Express.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4783\"/>\n        <source>Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.</source>\n        <translation>Identificatore spazio nomi (NSID). I valori 0 e 0xFFFFFFFF non sono validi.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4765\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4771\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4786\"/>\n        <source>NSID</source>\n        <translation>NSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4768\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4789\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Identificatore spazio nomi (NSID). I valori 0 e 0xFFFFFFFF non sono validi.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4802\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4823\"/>\n        <source>This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.</source>\n        <translation>Questo campo contiene l&apos;identificatore univoco esteso IEEE (EUI-64). I dispositivi senza un valore EUI-64 devono inizializzare questo campo con un valore pari a 0.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4805\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4811\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4826\"/>\n        <source>EUI-64</source>\n        <translation>EUI-64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4808\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4829\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Questo campo contiene l&apos;identificatore univoco esteso IEEE (EUI-64). I dispositivi senza un valore EUI-64 devono inizializzare questo campo con un valore pari a 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4849\"/>\n        <source>Refer to RFC 3986 for details on the URI contents.</source>\n        <translation>Per i dettagli sul contenuto dell&apos;URI fai riferimento a RFC 3986 .</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Refer to RFC 3986 for details on the URI contents.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Per i dettagli sul contenuto dell&apos;URI fai riferimento a RFC 3986 .&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4876\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4898\"/>\n        <source>Instance of the URI pursuant to RFC 3986.</source>\n        <translation>Istanza URI secondo RFC 3986.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4882\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Instance of the URI pursuant to RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Istanza URI secondo RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4915\"/>\n        <source>UFS</source>\n        <translation>UFS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4918\"/>\n        <source>UFS Settings.</source>\n        <translation>Impostazioni UFS.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Impostazioni UFS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4966\"/>\n        <source>Target ID on the UFS interface (PUN).</source>\n        <translation>ID destinazione interfaccia UFS (PUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4972\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the UFS interface (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ID destinazione interfaccia UFS (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5029\"/>\n        <source>SD</source>\n        <translation>SD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5032\"/>\n        <source>SD Settings.</source>\n        <translation>Impostazioni SD.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5035\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Impostazioni SD.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5081\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5299\"/>\n        <source>Slot Number</source>\n        <translation>Numero slot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5084\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5280\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5286\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5302\"/>\n        <source>Slot</source>\n        <translation>Slot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5087\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5283\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5305\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Slot Number&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Numero slot&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5104\"/>\n        <source>Bluetooth</source>\n        <translation>Bluetooth</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5107\"/>\n        <source>EFI Bluetooth Settings.</source>\n        <translation>Impostazioni Bluetooth EFI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5110\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI Bluetooth Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Impostazioni Bluetooth EFI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5155\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5373\"/>\n        <source>48-bit Bluetooth device address.</source>\n        <translation>Indirizzo dispositivo Bluetooth a 48 bit.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5143\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5158\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5361\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5376\"/>\n        <source>Device Address</source>\n        <translation>Indirizzo dispositivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5161\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5379\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-bit Bluetooth device address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indirizzo dispositivo Bluetooth a 48 bit.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5178\"/>\n        <source>Wi-Fi</source>\n        <translation>Wi-Fi</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5181\"/>\n        <source>Wi-Fi Settings.</source>\n        <translation>Impostazioni Wi-Fi.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5184\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wi-Fi Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Impostazioni Wi-Fi.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5208\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5230\"/>\n        <source>SSID in octet string.</source>\n        <translation>SSID in stringa a ottetti.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5211\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5217\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5233\"/>\n        <source>SSID</source>\n        <translation>SSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5214\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5236\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID in octet string.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID in stringa a ottetti.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5247\"/>\n        <source>eMMC</source>\n        <translation>eMMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5250\"/>\n        <source>Embedded Multi-Media Card Settings.</source>\n        <translation>Impostazioni eMMC.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5253\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Embedded Multi-Media Card Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Impostazioni eMMC.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5322\"/>\n        <source>BluetoothLE</source>\n        <translation>BluetoothLE</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5325\"/>\n        <source>EFI BluetoothLE Settings.</source>\n        <translation>Impostazioni EFI BluetoothLE.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5328\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI BluetoothLE Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Impostazioni EFI BluetoothLE.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5416\"/>\n        <source>0x00 - Public Device Address.\n0x01 - Random Device Address.</source>\n        <translation>0x00: - indirizzo dispositivo pubblico.\n0x01 - indirizzo dispositivo casuale.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5396\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5403\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5420\"/>\n        <source>Address Type</source>\n        <translation>Tipo di indirizzo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5399\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5423\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Public Device Address.\n0x01 - Random Device Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - indirizzo dispositivo pubblico.\n0x01 - indirizzo dispositivo casuale.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5428\"/>\n        <source>Public</source>\n        <translation>Pubblico</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5433\"/>\n        <source>Random</source>\n        <translation>Casuale</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5445\"/>\n        <source>DNS</source>\n        <translation>DNS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5448\"/>\n        <source>DNS Settings.</source>\n        <translation>Impostazioni DNS.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5451\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DNS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Impostazioni DNS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5499\"/>\n        <source>0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.</source>\n        <translation>0x00: l&apos;indirizzo del server DNS è un indirizzo IPv4.\n0x01: l&apos;indirizzo del server DNS è un indirizzo IPv6.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5482\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5506\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00: l&apos;indirizzo del server DNS è unindirizzo IPv4.\n0x01: l&apos;indirizzo del server DNS è unindirizzo IPv6.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5514\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5575\"/>\n        <source>One or more instances of the DNS server address in EFI_IP_ADDRESS.</source>\n        <translation>Una o più istanze dell&apos;indirizzo server DNS in EFI_IP_ADDRESS.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5520\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5581\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;One or more instances of the DNS server address in EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Una o più istanze dell&apos;indirizzo server DNS in EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5536\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7584\"/>\n        <source>Data format.</source>\n        <translation>Formato dati.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5592\"/>\n        <source>NVDIMM NS</source>\n        <translation>NS NVDIMM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5595\"/>\n        <source>This device path describes a bootable NVDIMM namespace that is defined by a namespace label.</source>\n        <translation>Questo percorso dispositivo descrive uno spazio nomi NVDIMM bootabile definito da un&apos;etichetta dello spazio nomi.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVDIMM namespace that is defined by a namespace label.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Questo percorso dispositivo descrive uno spazio nomi NVDIMM bootabile definito da un&apos;etichetta dello spazio nomi.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5622\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5643\"/>\n        <source>Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.</source>\n        <translation>Identificatore univoco etichetta spazio nomi UUID. Per i dettagli su questo campo, vedi la descrizione dell&apos;UUID nella sezione Protocollo etichetta NVDIMM - Definizioni etichetta.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5646\"/>\n        <source>UUID</source>\n        <translation>UUID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5628\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5649\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Identificatore univoco etichetta spazio nomi UUID. Per i dettagli su questo campo, vedi la descrizione dell&apos;UUID nella sezione Protocollo etichetta NVDIMM - Definizioni etichetta.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5663\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5698\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5706\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5724\"/>\n        <source>REST Service</source>\n        <translation>Servizio REST</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5666\"/>\n        <source>REST Service Settings.</source>\n        <translation>Impostazioni servizio REST.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5669\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;REST Service Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Impostazioni servizio REST.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5719\"/>\n        <source>0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.</source>\n        <translation>0x01 - servizio REST Redfish.\n0x02:- servizio REST OData.\n0xFF - servizio REST specifico del venditore.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5701\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5727\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - servizio REST Redfish.\n0x02:- servizio REST OData.\n0xFF - servizio REST specifico del venditore..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5733\"/>\n        <source>Redfish</source>\n        <translation>Redfish</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5738\"/>\n        <source>OData</source>\n        <translation>OData</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5743\"/>\n        <source>Vendor specific</source>\n        <translation>Specifico del venditore</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5775\"/>\n        <source>0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.</source>\n        <translation>0x01 - servizio REST in-band.\n0x02 - servizio REST out-of-.band.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5755\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5779\"/>\n        <source>Access Mode</source>\n        <translation>Modalità di accesso</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5782\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - servizio REST in-band.\n0x02 - servizio REST out-of-.band..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5787\"/>\n        <source>In-Band</source>\n        <translation>In-Band</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5792\"/>\n        <source>Out-of-band</source>\n        <translation>Out-of-band</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5821\"/>\n        <source>GUID of vendor specific REST service.</source>\n        <translation>GUID servizio REST specifico del venditore.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID of vendor specific REST service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID servizio REST specifico del venditore.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5898\"/>\n        <source>Vendor-defined data.</source>\n        <translation>Dati definiti dal venditore.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dati definiti dal venditore.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5915\"/>\n        <source>NVMe-oF NS</source>\n        <translation>NS NVMe-oF</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5918\"/>\n        <source>This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.</source>\n        <translation>Questo percorso dispositivo descrive uno spazio nomi NVMe su fibra bootabile definito da uno spazio nomi e da un&apos;identità NQN del sottosistema univoci.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Questo percorso dispositivo descrive uno spazio nomi NVMe su fibra bootabile definito da uno spazio nomi e da un&apos;identità NQN del sottosistema univoci..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5967\"/>\n        <source>Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.</source>\n        <translation>Tipo di identificatore dello spazio nomi (NIDT), per valori di tipo univoci a livello globale definiti nel campo NIDT CNS 03h (1h, 2h o 3h) dalla specifica di base NVM Express.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5970\"/>\n        <source>NIDT</source>\n        <translation>NIDT</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5973\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Tipo di identificatore dello spazio nomi (NIDT), per valori di tipo univoci a livello globale definiti nel campo NIDT CNS 03h (1h, 2h o 3h) dalla specifica di base NVM Express..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5986\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6007\"/>\n        <source>Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.</source>\n        <translation>Identificatore nome spazio (NID), un valore univoco globale definito nell&apos;elenco dei descrittori identificazione dello spazio nomi (CNS 03h) dalla specifica di base NVM Express in formato big endian.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5989\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5995\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6010\"/>\n        <source>NID</source>\n        <translation>NID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5992\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6013\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Identificatore nome spazio (NID), un valore univoco globale definito nell&apos;elenco dei descrittori identificazione dello spazio nomi (CNS 03h) dalla specifica di base NVM Express in formato big endian.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6023\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6045\"/>\n        <source>Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.</source>\n        <translation>Identificatore univoco sottosistema NVM archiviato come stringa UTF-8 di n byte in conformità con il nome qualificato NVMe nella specifica di base NVM Express. Il sottosistema NQN viene usato a fini di identificazione e autenticazione. Lunghezza massima di 224 byte.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6026\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6048\"/>\n        <source>Subsystem NQN</source>\n        <translation>Sottosistema NQN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6029\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6051\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Identificatore univoco sottosistema NVM archiviato come stringa UTF-8 di n byte in conformità con il nome qualificato NVMe nella specifica di base NVM Express. Il sottosistema NQN viene usato a fini di identificazione e autenticazione. Lunghezza massima di 224 byte..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6066\"/>\n        <source>Hard Drive</source>\n        <translation>Disco fisso</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6069\"/>\n        <source>The Hard Drive Media Device Path is used to represent a partition on a hard drive.</source>\n        <translation>Il percorso dispositivo multimediale del disco fisso viene usato per rappresentare una partizione nel disco fisso.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6072\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Hard Drive Media Device Path is used to represent a partition on a hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Il percorso dispositivo multimediale del disco fisso viene usato per rappresentare una partizione nel disco fisso..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6174\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6196\"/>\n        <source>Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].</source>\n        <translation>Descrive la voce in una tabella partizioni, iniziando con la voce 1. La partizione numero zero rappresenta l&apos;intero dispositivo. I numeri partizione validi per una partizione MBR sono [1, 4]. I numeri partizione validi per una partizione GPT sono [1, NumeroVociPartizione].</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6180\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Descrive la voce in una tabella partizioni, iniziando con la voce 1. La partizione numero zero rappresenta l&apos;intero dispositivo. I numeri partizione validi per una partizione MBR sono [1, 4]. I numeri partizione validi per una partizione GPT sono [1, NumeroVociPartizione].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6236\"/>\n        <source>Starting LBA of the partition on the hard drive.</source>\n        <translation>Inizio LBA partizione nel disco fisso.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6466\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6487\"/>\n        <source>Partition Start</source>\n        <translation>Inizio partizione</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting LBA of the partition on the hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Inizio LBA partizione nel disco fisso..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6255\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6276\"/>\n        <source>Size of the partition in units of Logical Blocks.</source>\n        <translation>Dimensione partizione in unità blocchi logici.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6258\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6264\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6279\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6527\"/>\n        <source>Partition Size</source>\n        <translation>Dimensione partizione</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6261\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6282\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Logical Blocks.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dimensione partizione in unità blocchi logici..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6295\"/>\n        <source>Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation>Firma univoca per questa partizione:\nSe SignatureType è 0, questo campo deve essere inizializzato con 16 zeri.\nSe SignatureType è 1, la firma MBR viene archiviata nei primi 4 byte di questo campo. Gli altri 12 byte vengono inizializzati con zero.\nSe SignatureType è 2, questo campo contiene una firma a 16 byte.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6301\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6310\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6367\"/>\n        <source>Partition Signature</source>\n        <translation>Firma partizione</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6304\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firma univoca per questa partizione:\nSe SignatureType è 0, questo campo deve essere inizializzato con 16 zeri.\nSe SignatureType è 1, la firma MBR viene archiviata nei primi 4 byte di questo campo. Gli altri 12 byte vengono inizializzati con zero.\nSe SignatureType è 2, questo campo contiene una firma a 16 byte.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6322\"/>\n        <source>PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.</source>\n        <translation>Firma tipo partizione disco (riservati valori non usati):\n            0x00 - nessuna firma disco.\n            0x01 - firma a 32bit dall&apos;indirizzo 0x1b8 del tipo 0x01 MBR.\n            0x02 - firma GUID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6328\"/>\n        <source>Signature Type</source>\n        <translation>Tipo firma</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6331\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firma tipo partizione disco (riservati valori non usati):\n            0x00 - nessuna firma disco.\n            0x01 - firma a 32bit dall&apos;indirizzo 0x1b8 del tipo 0x01 MBR.\n            0x02 - firma GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6338\"/>\n        <source>None</source>\n        <translation>Nessuna</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6361\"/>\n        <source>Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation>Firma univoca per questa partizione:\n            Se SignatureType è 0, questo campo deve essere inizializzato con 16 zeri.\n            Se SignatureType è 1, la firma MBR viene archiviata nei primi 4 byte di questo campo. Gli altri 12 byte vengono inizializzati con zero.\n            Se SignatureType è 2, questo campo contiene una firma a 16 byte.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6370\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firma univoca per questa partizione:\n            Se SignatureType è 0, questo campo deve essere inizializzato con 16 zeri.\n            Se SignatureType è 1, la firma MBR viene archiviata nei primi 4 byte di questo campo. Gli altri 12 byte vengono inizializzati con zero.\n            Se SignatureType è 2, questo campo contiene una firma a 16 byte.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6392\"/>\n        <source>CD-ROM</source>\n        <translation>CD-ROM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6395\"/>\n        <source>The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.</source>\n        <translation>Il percorso dispositivo multimediale CD-ROM viene usato per definire una partizione di sistema esistente in un CD-ROM.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6398\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Il percorso dispositivo multimediale CD-ROM viene usato per definire una partizione di sistema esistente in un CD-ROM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6444\"/>\n        <source>Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.</source>\n        <translation>Numero di voce di boot dal catalogo di boot. La voce iniziale/predefinita è definita con zero.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6425\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6431\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6447\"/>\n        <source>Boot Entry</source>\n        <translation>Voce boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6450\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Numero voce di boot dal catalogo di boot. La voce iniziale/predefinita è definita con zero..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6463\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6484\"/>\n        <source>Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.</source>\n        <translation>RBA iniziale della partizione sul supporto. I CD-ROM usano l&apos;indirizzamento logico relativo dei blocchi.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6469\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6490\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RBA iniziale della partizione sul supporto. I CD-ROM usano l&apos;indirizzamento logico relativo dei blocchi.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6524\"/>\n        <source>Size of the partition in units of Blocks, also called Sectors.</source>\n        <translation>Dimensione partizione unità in blocchi, detti anche settori.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6530\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Blocks, also called Sectors.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dimensione partizione unità in blocchi, detti anche settori.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6547\"/>\n        <source>File Path</source>\n        <translation>Percorso file</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6550\"/>\n        <source>File Path settings.</source>\n        <translation>Impostazioni percorso file.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6553\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File Path settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Impostazioni percorso file.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6599\"/>\n        <source>Path including directory and file names.</source>\n        <translation>Percorso che include cartella e nomi file.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6586\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6602\"/>\n        <source>Path Name</source>\n        <translation>Nome percorso</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6583\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6605\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Path including directory and file names.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Percorso che include cartella e nomi file.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6619\"/>\n        <source>The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.</source>\n        <translation>Il percorso dispositivo del protocollo multimediale viene usato per indicare il protocollo usato in un percorso dispositivo nella posizione del percorso specificato.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6622\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Il percorso dispositivo del protocollo multimediale viene usato per indicare il protocollo usato in un percorso dispositivo nella posizione del percorso specificato..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6667\"/>\n        <source>The ID of the protocol.</source>\n        <translation>L&apos;ID del protocollo.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6673\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ID of the protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;L&apos;ID del protocollo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6687\"/>\n        <source>Firmware File</source>\n        <translation>File firmware</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6690\"/>\n        <source>Describes a firmware file in a firmware volume.</source>\n        <translation>Descrive un file firmware in un volume firmware.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6693\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware file in a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Descrive un file firmware in un volume firmware.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6717\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6738\"/>\n        <source>Firmware file name GUID.</source>\n        <translation>GUID nome file firmware.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6723\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6744\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware file name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID nome file firmware..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6758\"/>\n        <source>Firmware Volume</source>\n        <translation>Volume firmware</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6761\"/>\n        <source>Describes a firmware volume.</source>\n        <translation>Descrive un volume firmware.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6764\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Descrive un volume firmware.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6809\"/>\n        <source>Firmware volume name GUID.</source>\n        <translation>GUID nome volume firmware.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware volume name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID nome volume firmware.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6829\"/>\n        <source>Relative Offset Range</source>\n        <translation>Intervallo offset relativo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6832\"/>\n        <source>This device path node specifies a range of offsets relative to the first byte available on the device.</source>\n        <translation>Questo nodo percorso dispositivo specifica un intervallo offset relativo al primo byte disponibile nel dispositivo.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6835\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path node specifies a range of offsets relative to the first byte available on the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Questo nodo percorso dispositivo specifica un intervallo offset relativo al primo byte disponibile nel dispositivo..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6880\"/>\n        <source>Reserved for future use.</source>\n        <translation>Riservato per uso futuro.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6886\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved for future use.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Riservato per uso futuro.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6899\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6920\"/>\n        <source>Offset of the first byte, relative to the parent device node.</source>\n        <translation>Offset primo byte, relativo al nodo dispositivo pincipale.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6902\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6908\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6923\"/>\n        <source>Starting Offset</source>\n        <translation>Offset iniziale</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6905\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the first byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset primo byte, relativo al nodo dispositivo pincipale..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6939\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6960\"/>\n        <source>Offset of the last byte, relative to the parent device node.</source>\n        <translation>Offset dell&apos;ultimo byte, relativo al nodo dispositivo principale.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6942\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6963\"/>\n        <source>Ending Offset</source>\n        <translation>Offset finale</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6966\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the last byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset dell&apos;ultimo byte, relativo al nodo dispositivo principale..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6983\"/>\n        <source>RAM Disk</source>\n        <translation>Disco RAM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6986\"/>\n        <source>RAM Disk Settings.</source>\n        <translation>Impostazioni disco RAM.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6989\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Impostazioni disco RAM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7016\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7037\"/>\n        <source>Starting Address</source>\n        <translation>Indirizzo iniziale</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7056\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7077\"/>\n        <source>Ending Address</source>\n        <translation>Indirizzo finale</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7093\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7114\"/>\n        <source>GUID that defines the type of the RAM Disk.</source>\n        <translation>GUID che definisce il tipo di disco RAM.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7120\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID that defines the type of the RAM Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID che definisce il tipo di disco RAM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7130\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7152\"/>\n        <source>RAM Disk instance number, if supported.</source>\n        <translation>Numero istanza disco RAM, se supportata.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7133\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7155\"/>\n        <source>Disk Instance</source>\n        <translation>Istanza disco</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7158\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk instance number, if supported.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Numero istanza disco RAM, se supportata..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7179\"/>\n        <source>This Device Path is used to describe the booting of non-EFI-aware operating systems.</source>\n        <translation>Questo percorso dispositivo viene usato per descrivere il boot di sistemi operativi non compatibili con EFI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7182\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path is used to describe the booting of non-EFI-aware operating systems.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Questo percorso dispositivo viene usato per descrivere il boot di sistemi operativi non compatibili con EFI..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7206\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7249\"/>\n        <source>An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.</source>\n        <translation>Numero identificativo che descrive di che tipo di dispositivo si tratta:\n  0x00 - riservato.\n  0x01 - floppy.\n  0x02 - disco fisso.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - dispositivo USB.\n  0x06 - rete integrata.\n  0x07..0x7F - riservato.\n  0x80 - dispositivo BEV.\n  0x81..0xFE - riservato.\n  0xFF - sconosciuto.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7220\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7263\"/>\n        <source>Device Type</source>\n        <translation>Tipo dispositivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7223\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Numero identificativo che descrive di che tipo di dispositivo si tratta:\n  0x00 - riservato.\n  0x01 - floppy.\n  0x02 - disco fisso.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - dispositivo USB.\n  0x06 - rete integrata.\n  0x07..0x7F - riservato.\n  0x80 - dispositivo BEV.\n  0x81..0xFE - riservato.\n  0xFF - sconosciuto.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7290\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7347\"/>\n        <source>Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero</source>\n        <translation>Flag di stato come definiti dalle specifiche di boiot del BIOS:\n|  Bit  |     Campo     | Valore | Descrizione\n|========|===============|=======|=============\n|  3..0  | Vecchia posizione  | 0..15 | L&apos;indice di questa voce nella tabella nell&apos;ultimo boot. Per aggiornare la priorità IPL o BCV se viene eseguito il rilevamento del singolo dispositivo.\n|--------|-------------- |-------|-------------\n|  7..4  |  (riservato)   |   0   | Riservato per uso futuro, deve essere zero.\n|--------|-------------- |-------|-------------\n|   8    |    Abilitato    | 0..1  | 0 = la voce verrà ignorata per il boot (IPL); la voce non verrà chiamata per la connessione di boot (BCV).\n|        |               |       | 1 = verrà tentato l&apos;accesso per il boot (IPL); la voce verrà chiamata per la connessione di boot (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Fallito     | 0..1  | 0 = Non è stato tentato il boot oppure non è noto se si è verificato un errore di boot (IPL); voce collegata con successo (BCV).\n|        |               |       | 1 = tntativo di boot non riuscito (IPL); tentativo di connessione non riuscito (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media presente | 0..3  | 0 = nessun supporto avviabile presente nel dispositivo.\n|        |               |       | 1 = impossibile determinare se è presente un supporto di avvio.\n|        |               |       | 2 = il supporto è presente e sembra avviabile.\n|        |               |       | 3 = riservato per uso futuro.\n|--------|---------------|-------|-------------\n| 15..12 |  (Riservato)   |   0   | Riservato per uso futuro, deve essere zero</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7311\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7368\"/>\n        <source>Status Flag</source>\n        <translation>Flag stato</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7371\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flag di stato come definiti dalle specifiche di boiot del BIOS:\n|  Bit  |     Campo     | Valore | Descrizione\n|========|===============|=======|=============\n|  3..0  | Vecchia posizione  | 0..15 | L&apos;indice di questa voce nella tabella nell&apos;ultimo boot. Per aggiornare la priorità IPL o BCV se viene eseguito il rilevamento del singolo dispositivo.\n|--------|-------------- |-------|-------------\n|  7..4  |  (riservato)   |   0   | Riservato per uso futuro, deve essere zero.\n|--------|-------------- |-------|-------------\n|   8    |    Abilitato    | 0..1  | 0 = la voce verrà ignorata per il boot (IPL); la voce non verrà chiamata per la connessione di boot (BCV).\n|        |               |       | 1 = verrà tentato l&apos;accesso per il boot (IPL); la voce verrà chiamata per la connessione di boot (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Fallito     | 0..1  | 0 = Non è stato tentato il boot oppure non è noto se si è verificato un errore di boot (IPL); voce collegata con successo (BCV).\n|        |               |       | 1 = tntativo di boot non riuscito (IPL); tentativo di connessione non riuscito (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media presente | 0..3  | 0 = nessun supporto avviabile presente nel dispositivo.\n|        |               |       | 1 = impossibile determinare se è presente un supporto di avvio.\n|        |               |       | 2 = il supporto è presente e sembra avviabile.\n|        |               |       | 3 = riservato per uso futuro.\n|--------|---------------|-------|-------------\n| 15..12 |  (Riservato)   |   0   | Riservato per uso futuro, deve essere zero&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7402\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7424\"/>\n        <source>String that describes the boot device to a user.</source>\n        <translation>Stringa che descrive il dispositivo di boot di un utente.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7408\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7430\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;String that describes the boot device to a user.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Stringa che descrive il dispositivo di boot di un utente.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7543\"/>\n        <source>Vendor-assigned GUID that defines the data that follows.</source>\n        <translation>GUID assegnata dal venditore che definisce i dati che seguono.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7549\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-assigned GUID that defines the data that follows.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID assegnata dal venditore che definisce i dati che seguono.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7562\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7622\"/>\n        <source>Vendor-defined variable size data.</source>\n        <translation>Dati di dimensione variabile definiti dal venditore.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7568\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7628\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined variable size data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dati di dimensione variabile definiti dal venditore.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7642\"/>\n        <source>Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.</source>\n        <translation>A seconda del sottotipo, questo nodo percorso dispositivo viene usato per indicare la fine dell&apos;istanza del percorso dispositivo o della struttura del percorso dispositivo.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7645\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;A seconda del sottotipo, questo nodo percorso dispositivo viene usato per indicare la fine dell&apos;istanza del percorso dispositivo o della struttura del percorso dispositivo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7721\"/>\n        <source>Unknown file path specifier settings</source>\n        <translation>Impostazioni identificatore percorso file sconosciuto</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7724\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown file path specifier settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Impostazioni identificatore percorso file sconosciuto.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7748\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7772\"/>\n        <source>Unknown Type</source>\n        <translation>Tipo sconosciuto</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7754\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7775\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Tipo sconosciuto.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7812\"/>\n        <source>Unknown Sub-Type</source>\n        <translation>Sottotipo sconosciuto</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sottotipo sconosciuto.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7828\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7831\"/>\n        <source>Unknown data</source>\n        <translation>Dati sconosciuti</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dati sconosciuti.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/filepathdialog.cpp\" line=\"1569\"/>\n        <source>Couldn&apos;t change data format!</source>\n        <translation>Impossibile modificare il formato dati!</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeyListModel</name>\n    <message>\n        <location filename=\"../src/hotkeylistmodel.cpp\" line=\"100\"/>\n        <source>boot option</source>\n        <translation>opzione boot</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Boot option</source>\n        <translation>Opzione boot</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Hot key</source>\n        <translation>Tasto rapido</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Vendor data</source>\n        <translation>Dati produttore</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeysDialog</name>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"20\"/>\n        <source>Hot Keys editor</source>\n        <translation>Editor tasti rapidi</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"41\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"44\"/>\n        <source>Hot Keys</source>\n        <translation>Tasti rapidi</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"47\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Tasti rapidi&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"125\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"128\"/>\n        <source>Index filter</source>\n        <translation>Filtro indice</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"131\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Index filter&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Filtro indice&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"163\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"166\"/>\n        <source>Remove hot key</source>\n        <translation>Rimuovi tasto rapido</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Rimuovi tasto rapido&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"191\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"194\"/>\n        <source>Add hot key</source>\n        <translation>Aggiungi tasto rapido</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"197\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Aggiungi tasto rapido&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <location filename=\"../include/commands.h\" line=\"21\"/>\n        <location filename=\"../include/commands.h\" line=\"66\"/>\n        <source>Change %1 to &quot;%2&quot;</source>\n        <translation>Modifica &apos;%1&apos; in &apos;%2&apos;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"35\"/>\n        <source>Insert %1 entry &quot;%2&quot; at position %3</source>\n        <translation>Inserisci %1 voce &apos;%2&apos; alla posizione &apos;%3&apos;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"50\"/>\n        <source>Remove %1 entry &quot;%2&quot; from position %3</source>\n        <translation>Rimuovi %1 voce &quot;%2&quot; dalla posizione %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"73\"/>\n        <location filename=\"../src/commands.cpp\" line=\"116\"/>\n        <source>Move %1 entry &quot;%2&quot; from position %3 to %4</source>\n        <translation>Sposta %1 voce &apos;%2&apos; dalla posizione &apos;%3&apos; alla &apos;%4&apos;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <location filename=\"../include/commands.h\" line=\"157\"/>\n        <location filename=\"../include/commands.h\" line=\"198\"/>\n        <source>Change %1 entry &quot;%2&quot; %3 to &quot;%4&quot;</source>\n        <translation>Modifica la voce %1 &apos;%2&apos; &apos;%3&apos; in &apos;%4&apos;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <source>Optional data</source>\n        <translation>Dati opzionali</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"227\"/>\n        <source>Insert %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation>Inserisci %1 voce &apos;%2&apos; percorso file alla posizione &apos;%3&apos;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"242\"/>\n        <source>Remove %1 entry &quot;%2&quot; file path from position %3</source>\n        <translation>Rimuovi voce %1 percorso file &quot;%2&quot; dalla posizione %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"257\"/>\n        <source>Set %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation>Imposta percorso file &quot;%2&quot; voce %1 alla posizione %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <source>Insert %1 entry at position %2</source>\n        <translation>Inserisci voce %1 nella posizione %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>Key</source>\n        <translation>Tasto</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <source>Remove %1 entry from position %2</source>\n        <translation>Rimuovi voce %1 dalla posizione %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <location filename=\"../include/commands.h\" line=\"362\"/>\n        <location filename=\"../include/commands.h\" line=\"403\"/>\n        <source>Change %1 entry at position %2 %3 to &quot;%4&quot;</source>\n        <translation>Modifica voce %1 nella posizione %2 %3 in &quot;%4&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>keys</source>\n        <translation>tasti</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"293\"/>\n        <location filename=\"../src/commands.cpp\" line=\"333\"/>\n        <source>Move %1 entry &quot;%2&quot; file path from position %3 to %4</source>\n        <translation>Sposta percorso del file voce %1 &apos;%2&apos; dalla posizione &apos;%3&apos; alla &apos;%4&apos;</translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/efibooteditor_ja.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"ja\" sourcelanguage=\"en_US\">\n<context>\n    <name>BootEntryForm</name>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"169\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"172\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"182\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"185\"/>\n        <source>Description</source>\n        <translation>説明</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"198\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"201\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"204\"/>\n        <source>Path</source>\n        <translation>パス</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"415\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"418\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"478\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"481\"/>\n        <source>Optional data</source>\n        <translation>エンコード方式</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"421\"/>\n        <source>Optional</source>\n        <translation>エンコード</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"434\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"437\"/>\n        <source>Optional data format</source>\n        <translation>エンコード方式</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"6\"/>\n        <source>Boot entry form</source>\n        <translation>ブートエントリ設定</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"24\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"27\"/>\n        <source>Error</source>\n        <translation>エラー</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"40\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"43\"/>\n        <source>Error note</source>\n        <translation>エラー通知</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"46\"/>\n        <source>This entry placeholder is shown here to indicate it&apos;s referenced in boot order. It won&apos;t be modified on save, just left as is.</source>\n        <translation>このエントリはブート順で参照されていることを示すためのプレースホルダーです。保存しても変更されず、そのままになります。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"147\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"150\"/>\n        <source>Hot Keys</source>\n        <translation>ホットキー</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ホットキー&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"188\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry description.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;エントリの説明。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"222\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"225\"/>\n        <source>Device path</source>\n        <translation>デバイスのパス</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;デバイスのパス。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"280\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"283\"/>\n        <source>Move file path up</source>\n        <translation>パスを上へ移動</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"286\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;パスを上へ移動。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"305\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"308\"/>\n        <source>Move file path down</source>\n        <translation>パスを下へ移動</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"311\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;パスを下へ移動。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"330\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"333\"/>\n        <source>Remove file path</source>\n        <translation>パスを削除</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"336\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;パスを削除。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"355\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"358\"/>\n        <source>Edit file path</source>\n        <translation>パスを編集</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"361\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Edit file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;パスを編集。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"380\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"383\"/>\n        <source>Add file path</source>\n        <translation>パスを追加</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;パスを追加。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;エンコード方式。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"444\"/>\n        <source>BASE64</source>\n        <translation>BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"449\"/>\n        <source>UTF-16</source>\n        <translation>UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"454\"/>\n        <source>UTF-8</source>\n        <translation>UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"459\"/>\n        <source>HEX</source>\n        <translation>HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"484\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry optional data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;エントリのオプションデータ。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"497\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"500\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"503\"/>\n        <source>Attributes</source>\n        <translation>属性</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"623\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry category.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;エントリのカテゴリ。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"122\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;エントリのインデックス。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"540\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Is entry considered for automatic boot?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;エントリは自動ブートの対象になりますか?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"569\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hidden.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;非表示。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"585\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Force reconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;強制再接続。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"534\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"537\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"543\"/>\n        <source>Active</source>\n        <translation>アクティブ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"579\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"582\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"588\"/>\n        <source>Force reconnect</source>\n        <translation>強制再接続</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"563\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"566\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"572\"/>\n        <source>Hidden</source>\n        <translation>非表示</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"598\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"601\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"604\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"617\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"620\"/>\n        <source>Category</source>\n        <translation>カテゴリ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"627\"/>\n        <source>Boot</source>\n        <translation>ブート</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"632\"/>\n        <source>App</source>\n        <translation>アプリ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"68\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"71\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"74\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"116\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"119\"/>\n        <source>Index</source>\n        <translation>インデックス</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentryform.cpp\" line=\"117\"/>\n        <source>Couldn&apos;t change optional data format!</source>\n        <translation>オプションのデータ形式を変更できませんでした!</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryListModel</name>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"88\"/>\n        <source>Set Next boot to &quot;%1&quot;</source>\n        <translation>次のブートを &quot;%1&quot; に設定</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"184\"/>\n        <source>index</source>\n        <translation>インデックス</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"200\"/>\n        <source>description</source>\n        <translation>説明</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"237\"/>\n        <source>optional data</source>\n        <translation>オプション データ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"253\"/>\n        <source>attributes</source>\n        <translation>属性</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"269\"/>\n        <source>next boot</source>\n        <translation>次のブート</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryWidget</name>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"12\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"221\"/>\n        <source>Boot entry</source>\n        <translation>ブートエントリ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"36\"/>\n        <source>Next boot</source>\n        <translation>次のブート</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"39\"/>\n        <source>Run at next boot</source>\n        <translation>次のブート時に実行</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"42\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;When chosen, entry will run at next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;選択すると、エントリは次のブート時に実行されます。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"140\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"143\"/>\n        <source>Current boot</source>\n        <translation>現在のブート</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This entry is currently booted.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;このエントリは現在のブートです。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"181\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ブートエントリのインデックス。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"218\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry description, human readable name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ブート エントリの説明、人間が判読できる名前。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"67\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"70\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"76\"/>\n        <source>Device path</source>\n        <translation>デバイスのパス</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"73\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ブートデバイスのパス。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"113\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data, arguments passed to boot executable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ブート実行ファイルに渡されるオプションのデータ、引数。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"178\"/>\n        <source>Boot entry index</source>\n        <translation>ブートエントリのインデックス</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"184\"/>\n        <source>Index</source>\n        <translation>インデックス</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"212\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"215\"/>\n        <source>Boot entry description</source>\n        <translation>ブートエントリの説明</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"107\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"110\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"116\"/>\n        <source>Optional data</source>\n        <translation>オプション データ</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootData</name>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"111\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"813\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1027\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1361\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1472\"/>\n        <source>%1: not found</source>\n        <translation>%1 : 見つかりません</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"120\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"821\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1387\"/>\n        <source>%1: failed deserialization</source>\n        <translation>%1 : デシリアライズに失敗しました</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Error loading entries</source>\n        <translation>エントリの読み込みエラー</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Failed to load some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>一部のEFIブートマネージャーエントリの読み込みに失敗しました :\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Error saving entries</source>\n        <translation>エントリの保存エラー</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Entry %1(%2): duplicated index!</source>\n        <translation>エントリ %1(%2) : 重複したインデックス!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"389\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"419\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"458\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"479\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"487\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"516\"/>\n        <source>Error saving %1</source>\n        <translation>保存エラー %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"407\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"470\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"504\"/>\n        <source>Error removing %1</source>\n        <translation>削除エラー %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Error importing boot configuration</source>\n        <translation>ブート構成のインポートエラー</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <source>Couldn&apos;t open selected file (%1).</source>\n        <translation>選択したファイルを開けませんでした (%1)。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <source>Parser failed: %1</source>\n        <translation>解析失敗 : %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <source>Invalid _Type: %1</source>\n        <translation>無効な _Type : %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <source>Error exporting boot configuration</source>\n        <translation>ブート構成のエクスポートエラー</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <source>Couldn&apos;t open selected file (%1): %2.</source>\n        <translation>選択したファイルを開けませんでした (%1) : %2.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <source>Couldn&apos;t write into file (%1): %2.</source>\n        <translation>ファイルに書き込めませんでした (%1) : %2.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Error dumping raw EFI data</source>\n        <translation>RAW EFIデータのダンプエラー</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Failed to dump some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>一部のEFIブートマネージャエントリのダンプに失敗しました :\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"905\"/>\n        <source>Timeout</source>\n        <translation>タイムアウト</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"921\"/>\n        <source>Apple boot-args</source>\n        <translation>Apple ブート引数</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"937\"/>\n        <source>Firmware actions</source>\n        <translation>ファームウェア操作</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"73\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation>EFIブートマネージャーのエントリの読み込み…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"89\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"787\"/>\n        <source>Searching EFI Boot Manager entries…</source>\n        <translation>EFIブートマネージャーのエントリの検索…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"116\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"292\"/>\n        <source>Processing EFI Boot Manager entries (%1)…</source>\n        <translation>EFIブートマネージャーのエントリの処理 (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"308\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation>EFIブートマネージャーのエントリの保存…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"333\"/>\n        <source>Searching old EFI Boot Manager entries…</source>\n        <translation>古いEFIブートマネージャーのエントリの検索…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"374\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"416\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"447\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"476\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"484\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"491\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"513\"/>\n        <source>Saving EFI Boot Manager entries (%1)…</source>\n        <translation>EFIブートマネージャーのエントリの保存 (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"467\"/>\n        <source>Removing old EFI Boot Manager entries (%1)…</source>\n        <translation>古いEFIブートマネージャーのエントリの削除 (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"404\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"501\"/>\n        <source>Removing EFI Boot Manager entries (%1)…</source>\n        <translation>EFIブートマネージャーのエントリの削除 (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"94\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"338\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"792\"/>\n        <source>Couldn&apos;t load EFI Boot Manager variables</source>\n        <translation>EFIブートマネージャー変数を読み込めませんでした</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"100\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"799\"/>\n        <source>Couldn&apos;t find any EFI Boot Manager variables</source>\n        <translation>EFIブートマネージャー変数が見つかりませんでした</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"529\"/>\n        <source>Importing boot configuration…</source>\n        <translation>ブート構成のインポート…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"565\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"770\"/>\n        <source>Exporting boot configuration…</source>\n        <translation>ブート構成のエクスポート…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"587\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"809\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"875\"/>\n        <source>Exporting EFI Boot Manager entries (%1)…</source>\n        <translation>EFIブートマネージャーのエントリのエクスポート (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1013\"/>\n        <source>Importing boot configuration from JSON…</source>\n        <translation>JSONからブート構成をインポート…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1032\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1366\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1477\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1531\"/>\n        <source>Importing EFI Boot Manager entries (%1)…</source>\n        <translation>EFIブートマネージャーエントリのインポート (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1035\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1376\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>%1: %2 expected</source>\n        <translation>%1 : %2 が必要です</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1043\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1048\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1053\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <source>number</source>\n        <translation>番号</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1058\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1063\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1068\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1073\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1078\"/>\n        <source>bool</source>\n        <translation>bool</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1109\"/>\n        <source>%1: unknown boot manager capability</source>\n        <translation>%1 : 不明なブートマネージャー機能</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1122\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1166\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1212\"/>\n        <source>array</source>\n        <translation>配列</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1333\"/>\n        <source>string</source>\n        <translation>文字列</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1156\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1192\"/>\n        <source>%1: unknown os indication</source>\n        <translation>%1 : 不明なOS表示</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1083\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1235\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1264\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1290\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1309\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1328\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>object</source>\n        <translation>オブジェクト</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <source>hexadecimal number</source>\n        <translation>16進数</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1270\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1315\"/>\n        <source>%1: failed parsing</source>\n        <translation>%1 : 解析に失敗</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Failed to import some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>一部のEFIブートマネージャーエントリのインポートに失敗 :\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1347\"/>\n        <source>Importing boot configuration from raw dump…</source>\n        <translation>RAWダンプからブート構成をインポート…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1379\"/>\n        <source>object(raw_data: string, efi_attributes: number)</source>\n        <extracomment>Expected JSON structure, thrown as error description. raw_data and efi_attributes are field names in JSON file</extracomment>\n        <translation>オブジェクト(RAWデータ : 文字列, efi_属性 : 番号)</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"15\"/>\n        <source>Boot</source>\n        <translation>ブート</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"16\"/>\n        <source>Driver</source>\n        <translation>ドライバ</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"17\"/>\n        <source>System Preparation</source>\n        <translation>システムの準備</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"18\"/>\n        <source>Platform Recovery</source>\n        <translation>プラットフォームの回復</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditor</name>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"18\"/>\n        <source>EFI Boot Editor</source>\n        <translation>EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"71\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"412\"/>\n        <source>Boot</source>\n        <translation>ブート</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"74\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"98\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"101\"/>\n        <source>Boot entries</source>\n        <translation>ブートエントリ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"77\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"104\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Boot entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ブートエントリの一覧。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"133\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"415\"/>\n        <source>Driver</source>\n        <translation>ドライバ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"136\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"160\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"163\"/>\n        <source>Driver entries</source>\n        <translation>ドライバエントリ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"139\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"166\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Driver entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ドライバエントリの一覧。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"195\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"418\"/>\n        <source>System Preparation</source>\n        <translation>システムの準備</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"198\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"222\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"225\"/>\n        <source>SysPrep entries</source>\n        <translation>SysPrepエントリ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"201\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of SysPrep entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SysPrepエントリの一覧。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"257\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"421\"/>\n        <source>Platform Recovery</source>\n        <translation>プラットフォームの回復</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"260\"/>\n        <source>PlatformRecovery entries</source>\n        <translation>プラットフォームの回復エントリ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"263\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of PlatformRecovery entries (READONLY).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;プラットフォームの回復エントリの一覧 (読み取り専用)。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"284\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"287\"/>\n        <source>PlatformRecovery entries (READONLY)</source>\n        <translation>プラットフォームの回復エントリ (読み取り専用)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"346\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"349\"/>\n        <source>Add new entry</source>\n        <translation>新しいエントリの追加</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"352\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to add new boot entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;新しいブート エントリを追加するには、これをクリック。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"377\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"380\"/>\n        <source>Duplicate entry</source>\n        <translation>エントリを複製</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"383\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Duplicate entry&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;エントリを複製&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"408\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"411\"/>\n        <source>Remove entry</source>\n        <translation>エントリを削除</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"414\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to remove currently selected entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;現在選択されているエントリを削除するには、これをクリック。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"439\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"442\"/>\n        <source>Move entry up</source>\n        <translation>エントリを上へ移動</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"445\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;現在選択されているエントリを上に移動するには、ここをクリック。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"470\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"473\"/>\n        <source>Move entry down</source>\n        <translation>エントリを下へ移動</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"476\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;現在選択されているエントリを下に移動するには、ここをクリック。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"501\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"504\"/>\n        <source>Reorder entries</source>\n        <translation>エントリを並べ替え</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"507\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click here to adjust the order of all entries based on their position on the list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;リスト上の位置に基づいてすべてのエントリの順序を調整するには、ここをクリック。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"599\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"608\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Global settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;全般設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"602\"/>\n        <source>Global</source>\n        <translation>全般</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"632\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"635\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"654\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"657\"/>\n        <source>Boot manager timeout</source>\n        <translation>ブートマネージャーのタイムアウト</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"638\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"660\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot manager timeout.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ブートマネージャーのタイムアウト。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"663\"/>\n        <source>s</source>\n        <translation>秒</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"674\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"677\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"686\"/>\n        <source>Firmware details</source>\n        <translation>ファームウェアの詳細</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"680\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"689\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ファームウェアの詳細。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"683\"/>\n        <source>Firmware</source>\n        <translation>ファームウェア</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"719\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"722\"/>\n        <source>Available firmware features</source>\n        <translation>利用可能なファームウェア機能</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"725\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware features.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;利用可能なファームウェア機能。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"728\"/>\n        <source>Features</source>\n        <translation>機能</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"737\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"740\"/>\n        <source>Platform supports reporting of deferred capsule processing by creation of result variable</source>\n        <translation>プラットフォームは、遅延カプセル処理の結果を示す変数の作成による報告に対応しています</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"743\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports reporting of deferred capsule processing by creation of result variable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;プラットフォームは、遅延カプセル処理の結果を示す変数の作成による報告に対応しています。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"746\"/>\n        <source>Capsule Reporting</source>\n        <translation>カプセル報告</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"756\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"759\"/>\n        <source>Firmware supports timestamp based revocation</source>\n        <translation>ファームウェアは、タイムスタンプに基づく失効に対応しています</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"762\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware supports timestamp based revocation.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ファームウェアは、タイムスタンプに基づく失効に対応しています。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"765\"/>\n        <source>Timestamp based revocation</source>\n        <translation>タイムスタンプに基づく失効</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"775\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"778\"/>\n        <source>Platform supports processing of Firmware Management Protocol update capsule</source>\n        <translation>プラットフォームは、ファームウェア管理プロトコルのアップデートカプセルの処理に対応しています</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"781\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of Firmware Management Protocol update capsule.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;プラットフォームは、ファームウェア管理プロトコルのアップデートカプセルの処理に対応しています。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"784\"/>\n        <source>FMP Capsule</source>\n        <translation>FMP カプセル</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"794\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"797\"/>\n        <source>Platform supports processing of file capsules</source>\n        <translation>プラットフォームは、ファイルカプセルの処理に対応しています</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"800\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of file capsules.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;プラットフォームは、ファイルカプセルの処理に対応しています。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"803\"/>\n        <source>File Capsule</source>\n        <translation>ファイルカプセル</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"828\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"831\"/>\n        <source>Available firmware actions</source>\n        <translation>利用可能なファームウェア操作</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware actions.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;利用可能なファームウェア操作。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"837\"/>\n        <source>Actions</source>\n        <translation>操作</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"846\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"849\"/>\n        <source>Stop at a firmware user interface on the next boot</source>\n        <translation>次回の起動時にファームウェアのユーザーインターフェースで停止</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Stop at a firmware user interface on the next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;次回の起動時にファームウェアのユーザーインターフェースで停止。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"855\"/>\n        <source>Boot to firmware UI</source>\n        <translation>ファームウェアUIをブート</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"862\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"865\"/>\n        <source>Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot</source>\n        <translation>現在の構成を収集し、次回の起動時に更新されたデータをEFIシステム構成テーブルに報告するトリガー</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;現在の構成を収集し、次回の起動時に更新されたデータをEFIシステム構成テーブルに報告するトリガー。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"871\"/>\n        <source>Collect current config</source>\n        <translation>現在の構成を取得</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"878\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"881\"/>\n        <source>Indicate that Platform-defined recovery should commence upon reboot</source>\n        <translation>再起動時にプラットフォーム定義の回復を開始するように指定します</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"884\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that Platform-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;再起動時にプラットフォーム定義の回復を開始するように指定します。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"887\"/>\n        <source>Start Platform recovery</source>\n        <translation>プラットフォームの回復を開始</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"894\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"897\"/>\n        <source>Indicate that OS-defined recovery should commence upon reboot</source>\n        <translation>再起動時にOS定義のリカバリを開始するように指示する</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"900\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that OS-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;再起動時にOS定義のリカバリを開始するように指示する。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"903\"/>\n        <source>Start OS recovery</source>\n        <translation>OS の回復を開始</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"932\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"935\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"944\"/>\n        <source>Secure boot settings</source>\n        <translation>セキュアブートの設定</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"938\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"947\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Secure boot settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;セキュアブートの設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"941\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1025\"/>\n        <source>Secure Boot</source>\n        <translation>セキュアブート</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"978\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"981\"/>\n        <source>Defines whether the system is currently operating in Audit Mode</source>\n        <translation>システムが現在監査モードで動作しているかどうかを定義します</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"984\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Audit Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;システムが現在監査モードで動作しているかどうかを定義します。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"987\"/>\n        <source>Audit Mode</source>\n        <translation>監査モード</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"997\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1000\"/>\n        <source>Defines whether the system is currently operating in Deployed Mode</source>\n        <translation>システムが現在デプロイモードで動作しているかどうかを定義します</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1003\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Deployed Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;システムが現在デプロイモードで動作しているかどうかを定義します。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1006\"/>\n        <source>Deployed Mode</source>\n        <translation>デプロイモード</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1016\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1019\"/>\n        <source>Defines whether the platform firmware is operating with Secure Boot enabled</source>\n        <translation>プラットフォームファームウェアがセキュアブートを有効にして動作しているかどうかを定義します</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1022\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the platform firmware is operating with Secure Boot enabled.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;プラットフォームファームウェアがセキュアブートを有効にして動作しているかどうかを定義します。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1035\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1038\"/>\n        <source>Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables</source>\n        <translation>セキュアブートポリシー変数への要求時にシステムが認証を必要とするかどうかを定義します</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1041\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;セキュアブートポリシー変数への要求時にシステムが認証を必要とするかどうかを定義します。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1044\"/>\n        <source>Setup Mode</source>\n        <translation>セットアップモード</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1054\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1057\"/>\n        <source>Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys</source>\n        <translation>セキュリティブートポリシー変数がプラットフォームベンダーまたはベンダー提供のキーの所有者以外の誰かによって変更されたかどうかを定義します</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;セキュリティブートポリシー変数がプラットフォームベンダーまたはベンダー提供のキーの所有者以外の誰かによって変更されたかどうかを定義します。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1063\"/>\n        <source>Vendor Keys</source>\n        <translation>ベンダーキー</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1074\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1077\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1086\"/>\n        <source>Apple settings</source>\n        <translation>Apple の設定</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1080\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apple settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apple の設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1083\"/>\n        <source>Apple</source>\n        <translation>Apple</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1113\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1116\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1129\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1132\"/>\n        <source>macOS boot arguments</source>\n        <translation>macOS ブート引数</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1119\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;macOS boot arguments.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;macOS ブート引数。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1161\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1164\"/>\n        <source>Undo stack</source>\n        <translation>元に戻すスタック</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1167\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo stack&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;元に戻すスタック&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1194\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ファイルメニュー。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1214\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Help menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ヘルプメニュー。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1255\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Exit the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;プログラムを終了。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1272\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apply changes to the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;システムに変更を適用。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1289\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reloads EFI data from the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;システムから EFI データを再読み込み。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1306\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Show information about the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;プログラムに関する情報を表示。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1320\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Export current entries into JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;現在のエントリを JSON にエクスポート。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1337\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Import EFI data from JSON dump.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;JSON ダンプから EFI データをインポート。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1354\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dumps raw EFI data for debugging purposes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;デバッグの目的でRAW EFI データをダンプ。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1362\"/>\n        <source>&amp;Undo</source>\n        <translation>取り消し(&amp;U)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1365\"/>\n        <source>Undo</source>\n        <translation>取り消し</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1368\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;取り消し&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1371\"/>\n        <source>Ctrl+Z</source>\n        <translation>Ctrl+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1379\"/>\n        <source>&amp;Redo</source>\n        <translation>やり直し(&amp;R)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1382\"/>\n        <source>Redo</source>\n        <translation>やり直し</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1385\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Redo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;やり直し&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1388\"/>\n        <source>Ctrl+Shift+Z</source>\n        <translation>Ctrl+Shift+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1396\"/>\n        <source>Hot &amp;keys</source>\n        <translation>ホットキー(&amp;K)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1399\"/>\n        <source>Hot Keys</source>\n        <translation>ホットキー</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1402\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ホットキー&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"593\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"596\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"605\"/>\n        <source>Global settings</source>\n        <translation>全般設定</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"641\"/>\n        <source>Timeout</source>\n        <translation>タイムアウト</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1122\"/>\n        <source>Boot args</source>\n        <translation>ブート引数</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1188\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1191\"/>\n        <source>File</source>\n        <translation>ファイル</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1197\"/>\n        <source>&amp;File</source>\n        <translation>ファイル(&amp;F)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1208\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1211\"/>\n        <source>Help</source>\n        <translation>ヘルプ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1217\"/>\n        <source>&amp;Help</source>\n        <translation>ヘルプ(&amp;H)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1225\"/>\n        <source>&amp;Edit</source>\n        <translation>編集(&amp;E)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1249\"/>\n        <source>&amp;Quit</source>\n        <translation>終了(&amp;Q)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1252\"/>\n        <source>Quit</source>\n        <translation>終了</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1258\"/>\n        <source>Ctrl+Q</source>\n        <translation>Ctrl+Q</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1266\"/>\n        <source>&amp;Save</source>\n        <translation>保存(&amp;S)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1269\"/>\n        <source>Save</source>\n        <translation>保存</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1275\"/>\n        <source>Ctrl+S</source>\n        <translation>Ctrl+S</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1283\"/>\n        <source>&amp;Reload</source>\n        <translation>再読み込み(&amp;R)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1286\"/>\n        <source>Reload</source>\n        <translation>再読み込み</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1292\"/>\n        <source>Ctrl+R</source>\n        <translation>Ctrl+R</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1300\"/>\n        <source>About &amp;EFI Boot Editor</source>\n        <translation>EFI Boot Editor について(&amp;E)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1303\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"29\"/>\n        <source>About EFI Boot Editor</source>\n        <translation>EFI Boot Editor について</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1314\"/>\n        <source>&amp;Export</source>\n        <translation>エクスポート(&amp;E)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1317\"/>\n        <source>Export</source>\n        <translation>エクスポート</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1323\"/>\n        <source>Ctrl+E</source>\n        <translation>Ctrl+E</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1331\"/>\n        <source>&amp;Import</source>\n        <translation>インポート(&amp;I)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1334\"/>\n        <source>Import</source>\n        <translation>インポート</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1340\"/>\n        <source>Ctrl+I</source>\n        <translation>Ctrl+I</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1348\"/>\n        <source>&amp;Dump raw EFI data</source>\n        <translation>RAW EFIデータをダンプ(&amp;D)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1351\"/>\n        <source>Dump raw EFI data</source>\n        <translation>RAW EFIデータをダンプ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"26\"/>\n        <source>Working…</source>\n        <translation>処理中…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"92\"/>\n        <source>Undo %1</source>\n        <translation>取り消し %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"95\"/>\n        <source>Redo %1</source>\n        <translation>やり直し %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"137\"/>\n        <source>Are you sure you want to reload the entries?&lt;br/&gt;ALL of your changes will be lost!</source>\n        <translation>エントリを再読み込みしますか?&lt;br/&gt;すべての変更が失われます!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"162\"/>\n        <source>Are you sure you want to reorder the boot entries?&lt;br/&gt;All indexes will be overwritten!</source>\n        <translation>ブートエントリの順序を変更しますか?&lt;br/&gt;すべてのインデックスが上書きされます!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"221\"/>\n        <source>Are you sure you want to save?&lt;br/&gt;Your EFI configuration will be overwritten!</source>\n        <translation>本当に保存しますか?&lt;br/&gt;EFI 構成が上書きされます!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <source>Open boot configuration dump</source>\n        <translation>ブート構成ダンプを開く</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>JSON documents (*.json)</source>\n        <translation>JSON ドキュメント (*.json)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <source>Save boot configuration dump</source>\n        <translation>ブート構成ダンプを保存</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>Save raw EFI dump</source>\n        <translation>RAW EFIダンプを保存</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"31\"/>\n        <source>&lt;h1&gt;EFI Boot Editor&lt;/h1&gt;&lt;p&gt;Version &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Boot Editor for (U)EFI based systems.&lt;/p&gt;</source>\n        <extracomment>About dialog</extracomment>\n        <translation>&lt;h1&gt;EFI Boot Editor&lt;/h1&gt;&lt;p&gt;Version &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;(U)EFI ベースシステムのブートエディタ。&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"45\"/>\n        <source>&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;Website&lt;/a&gt;&lt;/p&gt;&lt;p&gt;The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.&lt;/p&gt;&lt;p&gt;License: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL Version 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;On Linux uses &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; for EFI variables access.&lt;/p&gt;&lt;p&gt;Uses Tango Icons as fallback icons.&lt;/p&gt;</source>\n        <extracomment>About dialog details</extracomment>\n        <translation>&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;Website&lt;/a&gt;&lt;/p&gt;&lt;p&gt;このプログラムは現状のまま提供され、デザイン、商品性、特定目的への適合性に対する保証を含め、いかなる種類の保証も行われません。&lt;/p&gt;&lt;p&gt;ライセンス : &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL Version 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Linux では、EFI 変数アクセスに &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; を使用します。&lt;/p&gt;&lt;p&gt;フォールバック アイコンとして Tango アイコンを使用します。&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"330\"/>\n        <source>Reorder %1 entries</source>\n        <translation>%1 エントリを並べ替え</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"453\"/>\n        <source>Are you sure you want to quit?</source>\n        <translation>本当に終了しますか?</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"123\"/>\n        <source>EFI support required</source>\n        <translation>EFIサポートが必要</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditorCLI</name>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"13\"/>\n        <source>Boot Editor for (U)EFI based systems.</source>\n        <translation>(U)EFI ベースシステムのブートエディタ。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <source>Export configuration.</source>\n        <translation>構成のエクスポート。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>FILE</source>\n        <translation>FILE</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <source>Dump raw EFI data.</source>\n        <translation>RAW EFI データをダンプ。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>Import configuration from JSON (either from export or raw dump).</source>\n        <translation>JSONから構成をインポート (エクスポートまたはRAWダンプから)。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"19\"/>\n        <source>Force import, don&apos;t ask for confirmation.</source>\n        <translation>強制的にインポートし、確認を求めません。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"26\"/>\n        <source>EFI support required</source>\n        <translation>EFIサポートが必要</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"45\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation>EFI ブート マネージャーのエントリを読み込んでいます…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"47\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"57\"/>\n        <source>Exporting boot configuration…</source>\n        <translation>ブート構成をエクスポートしています…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"67\"/>\n        <source>Importing boot configuration…</source>\n        <translation>ブート構成をインポートしています…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Loaded %0 %1 entries</source>\n        <translation>%0 %1 エントリを読み込みました</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <source>Boot</source>\n        <translation>ブート</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <source>Driver</source>\n        <translation>ドライバ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <source>System Preparation</source>\n        <translation>システムの準備</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Hot Key</source>\n        <translation>ホットキー</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"78\"/>\n        <source>Are you sure you want to save?\nYour EFI configuration will be overwritten!</source>\n        <translation>本当に保存しますか?\nEFI 構成が上書きされます!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"86\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation>EFI ブート マネージャーのエントリを保存しています…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"98\"/>\n        <source>ERROR: %0! %1</source>\n        <translation>エラー : %0! %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"114\"/>\n        <source>Finished</source>\n        <translation>完了</translation>\n    </message>\n</context>\n<context>\n    <name>EFIKeySequenceEdit</name>\n    <message>\n        <location filename=\"../src/efikeysequenceedit.cpp\" line=\"109\"/>\n        <source>Press hot key</source>\n        <translation>ホットキーを押す</translation>\n    </message>\n</context>\n<context>\n    <name>FilePathDialog</name>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"12\"/>\n        <source>File path editor</source>\n        <translation>ファイルパス エディタ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"47\"/>\n        <source>PCI</source>\n        <translation>PCI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"80\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"86\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"196\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"202\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"218\"/>\n        <source>Function</source>\n        <translation>機能</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"121\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"127\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"143\"/>\n        <source>Device</source>\n        <translation>デバイス</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"721\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"727\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"742\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"835\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"841\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"856\"/>\n        <source>HID</source>\n        <translation>HID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"761\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"767\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"782\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"896\"/>\n        <source>UID</source>\n        <translation>UID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1813\"/>\n        <source>USB</source>\n        <translation>USB</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1819\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB の設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1893\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1909\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3688\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3710\"/>\n        <source>Interface</source>\n        <translation>インタフェース</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7442\"/>\n        <source>Vendor</source>\n        <translation>ベンダー</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7445\"/>\n        <source>Vendor settings</source>\n        <translation>ベンダー設定</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7448\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ベンダー設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1778\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1793\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5824\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6348\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7117\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7546\"/>\n        <source>GUID</source>\n        <translation>GUID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5539\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7587\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7850\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7853\"/>\n        <source>Data format</source>\n        <translation>データ形式</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5542\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7590\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7856\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;データ形式。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5546\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5869\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7860\"/>\n        <source>BASE64</source>\n        <translation>BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1168\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5551\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5874\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7865\"/>\n        <source>UTF-16</source>\n        <translation>UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1173\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5556\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7604\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7870\"/>\n        <source>UTF-8</source>\n        <translation>UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5561\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7875\"/>\n        <source>HEX</source>\n        <translation>HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5523\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5901\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7888\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7891\"/>\n        <source>Data</source>\n        <translation>データ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7894\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;データ。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7565\"/>\n        <source>Vendor data</source>\n        <translation>ベンダー データ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7481\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7757\"/>\n        <source>Type</source>\n        <translation>種類</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7478\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7500\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;種類。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7504\"/>\n        <source>HW</source>\n        <translation>HW</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7509\"/>\n        <source>MSG</source>\n        <translation>MSG</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7514\"/>\n        <source>MEDIA</source>\n        <translation>MEDIA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2292\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2298\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2313\"/>\n        <source>MAC</source>\n        <translation>MAC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2265\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;MAC settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;MAC 設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2374\"/>\n        <source>IPv4</source>\n        <translation>IPv4</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2380\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv4 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv4 設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2569\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2591\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2925\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2931\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2947\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4110\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4116\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4132\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6616\"/>\n        <source>Protocol</source>\n        <translation>プロトコル</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3003\"/>\n        <source>Static</source>\n        <translation>静的</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2692\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Subnet mask.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;サブネットマスク。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2730\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5479\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5486\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5503\"/>\n        <source>IPv6</source>\n        <translation>IPv6</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2736\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv6 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv6 設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3008\"/>\n        <source>Stateless auto-configuration</source>\n        <translation>ステートレス自動構成</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3013\"/>\n        <source>Stateful auto-configuration</source>\n        <translation>ステートフル自動構成</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3920\"/>\n        <source>SATA</source>\n        <translation>SATA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SATA settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SATA 設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1387\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1393\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1409\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1658\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1664\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1679\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3900\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4035\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4041\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4057\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4191\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4197\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4212\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4496\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4502\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4610\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4616\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4988\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5009\"/>\n        <source>LUN</source>\n        <translation>LUN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4885\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4901\"/>\n        <source>URI</source>\n        <translation>URI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6105\"/>\n        <source>Disk</source>\n        <translation>ディスク</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6102\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ディスク。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6123\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6126\"/>\n        <source>Choose disk</source>\n        <translation>ディスクの選択</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6129\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Choose disk from discovered in the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;システムで検出されたディスクを選択。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6133\"/>\n        <source>Custom</source>\n        <translation>カスタム</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6147\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6150\"/>\n        <source>Reload drives</source>\n        <translation>ドライブの再読み込み</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reload system drives list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;システム ドライブ リストを再読み込み。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6343\"/>\n        <source>MBR</source>\n        <translation>MBR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6177\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6183\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6199\"/>\n        <source>Partition</source>\n        <translation>パーティション</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6720\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6741\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6797\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6812\"/>\n        <source>Name</source>\n        <translation>名前</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7176\"/>\n        <source>BIOS Boot Specification</source>\n        <translation>BIOS ブート仕様</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7405\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7411\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7427\"/>\n        <source>Description</source>\n        <translation>説明</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7639\"/>\n        <source>End</source>\n        <translation>終了</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7669\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7672\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7678\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7797\"/>\n        <source>Sub-Type</source>\n        <translation>サブタイプ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7675\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7697\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;サブタイプ。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7701\"/>\n        <source>End This Instance</source>\n        <translation>このインスタンスを終了</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7706\"/>\n        <source>End Entire</source>\n        <translation>全体終了</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7718\"/>\n        <source>Unknown</source>\n        <translation>不明</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"50\"/>\n        <source>The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.</source>\n        <translation>PCI のデバイス パスは、PCI デバイスの PCI 構成空間アドレスへのパスを定義します。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"53\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI のデバイス パスは、PCI デバイスの PCI 構成空間アドレスへのパスを定義します。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"77\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"99\"/>\n        <source>PCI Function Number.</source>\n        <translation>PCI 機能番号。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"83\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"105\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Function Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI 機能番号。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"118\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"140\"/>\n        <source>PCI Device Number.</source>\n        <translation>PCI デバイス番号。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"124\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Device Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI デバイス番号。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"163\"/>\n        <source>PCCARD</source>\n        <translation>PCCARD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"166\"/>\n        <source>PCCARD Settings.</source>\n        <translation>PCCARD 設定。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCCARD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCCARD 設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"193\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"215\"/>\n        <source>Function Number (0 = First Function).</source>\n        <translation>機能番号 (0 = 最初の機能).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"199\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"221\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Function Number (0 = First Function).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;機能番号 (0 = 最初の機能)。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"238\"/>\n        <source>Memory Mapped</source>\n        <translation>メモリマップ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"241\"/>\n        <source>Memory Mapped Settings.</source>\n        <translation>メモリマップ設定。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Memory Mapped Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;メモリマップ設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"268\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"290\"/>\n        <source>The type of memory to allocate.</source>\n        <translation>割り当てるメモリのタイプ。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"271\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"293\"/>\n        <source>Memory Type</source>\n        <translation>メモリのタイプ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"274\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"296\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The type of memory to allocate.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;割り当てるメモリのタイプ。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"300\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1584\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1738\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1753\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3145\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3160\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4416\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4437\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6868\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6883\"/>\n        <source>Reserved</source>\n        <translation>予約済み</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"305\"/>\n        <source>Loader Code</source>\n        <translation>ローダーコード</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"310\"/>\n        <source>Loader Data</source>\n        <translation>ローダーデータ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"315\"/>\n        <source>Boot Services Code</source>\n        <translation>ブートサービスコード</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"320\"/>\n        <source>Boot Services Data</source>\n        <translation>ブートサービスデータ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"325\"/>\n        <source>Runtime Services Code</source>\n        <translation>ランタイムサービスコード</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"330\"/>\n        <source>Runtime Services Data</source>\n        <translation>ランタイムサービスデータ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"335\"/>\n        <source>Conventional</source>\n        <translation>従来</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"340\"/>\n        <source>Unusable</source>\n        <translation>使用不可</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"345\"/>\n        <source>ACPI Reclaim</source>\n        <translation>ACPI 再利用</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"350\"/>\n        <source>ACPI Memory NVS</source>\n        <translation>ACPI メモリ NVS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"355\"/>\n        <source>Memory Mapped IO</source>\n        <translation>メモリマップ IO</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"360\"/>\n        <source>Memory Mapped IO Port Space</source>\n        <translation>メモリマップ IO ポート空間</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"365\"/>\n        <source>Pal Code</source>\n        <translation>PAL コード</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"370\"/>\n        <source>Persistent</source>\n        <translation>永続</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"375\"/>\n        <source>Unaccepted</source>\n        <translation>未承認</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"383\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7013\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7034\"/>\n        <source>Starting Memory Address.</source>\n        <translation>開始メモリ アドレス。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"386\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"407\"/>\n        <source>Start Address</source>\n        <translation>開始アドレス</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"389\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7019\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7040\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;開始メモリ アドレス。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"423\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7053\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7074\"/>\n        <source>Ending Memory Address.</source>\n        <translation>終了メモリアドレス。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"426\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"432\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"447\"/>\n        <source>End Address</source>\n        <translation>終了アドレス</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"429\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7080\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ending Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;終了メモリアドレス。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"467\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"522\"/>\n        <source>Controller</source>\n        <translation>コントローラ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"470\"/>\n        <source>Controller settings.</source>\n        <translation>コントローラ設定。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"473\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;コントローラ設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"519\"/>\n        <source>Controller number.</source>\n        <translation>コントローラ番号。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"525\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;コントローラ番号。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"542\"/>\n        <source>BMC</source>\n        <translation>BMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"545\"/>\n        <source>The Device Path for a Baseboard Management Controller (BMC) host interface.</source>\n        <translation>ベースボード管理コントローラ (BMC) ホスト インターフェイスのデバイス パス。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"548\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for a Baseboard Management Controller (BMC) host interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ベースボード管理コントローラ (BMC) ホスト インターフェイスのデバイス パス。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"602\"/>\n        <source>The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.</source>\n        <translation>ベースボード管理コントローラ(BMC)ホストインターフェースタイプ :\n0x00 - 不明。\n0x01 - KCS : キーボード コントローラー スタイル。\n0x02 - SMIC : サーバー管理インターフェイス チップ。\n0x03 - BT : ブロック転送。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"579\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"589\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2332\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2354\"/>\n        <source>Interface Type</source>\n        <translation>インターフェースタイプ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"582\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"612\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ベースボード管理コントローラ(BMC)ホストインターフェースタイプ :\n0x00 - 不明。\n0x01 - KCS : キーボード コントローラー スタイル。\n0x02 - SMIC : サーバー管理インターフェイス チップ。\n0x03 - BT : ブロック転送。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"625\"/>\n        <source>Keyboard Controller Style</source>\n        <translation>キーボード コントローラー スタイル</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"630\"/>\n        <source>Server Management Interface Chip</source>\n        <translation>サーバー管理インターフェイス チップ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"635\"/>\n        <source>Block Transfer</source>\n        <translation>ブロック転送</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"643\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"664\"/>\n        <source>Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.</source>\n        <translation>BMCのベースアドレス（メモリマップまたはI/O）。フィールドの最下位ビットが1の場合、アドレスはI/O空間にあります。それ以外の場合、アドレスはメモリマップです。使用方法の詳細については、IPMIインターフェース仕様を参照してください。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"667\"/>\n        <source>Base Address</source>\n        <translation>ベースアドレス</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"670\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;BMCのベースアドレス（メモリマップまたはI/O）。フィールドの最下位ビットが1の場合、アドレスはI/O空間にあります。それ以外の場合、アドレスはメモリマップです。使用方法の詳細については、IPMIインターフェース仕様を参照してください。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"688\"/>\n        <source>ACPI</source>\n        <translation>ACPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"805\"/>\n        <source>This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.</source>\n        <translation>このデバイス パスには、デバイスのプラグ アンド プレイ ハードウェア ID とそれに対応する一意の永続 ID を表す ACPI デバイス ID が含まれています。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"808\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;このデバイス パスには、デバイスのプラグ アンド プレイ ハードウェア ID とそれに対応する一意の永続 ID を表す ACPI デバイス ID が含まれています。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"718\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"739\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"832\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"853\"/>\n        <source>Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.</source>\n        <translation>デバイスのPnPハードウェアIDは、数値形式の32ビット圧縮EISAタイプIDで保存されます。この値は、ACPI名前空間内の対応するHIDと一致する必要があります。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"724\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"745\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"838\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"859\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;デバイスのPnPハードウェアIDは、数値形式の32ビット圧縮EISAタイプIDで保存されます。この値は、ACPI名前空間内の対応するHIDと一致する必要があります。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"779\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"872\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"893\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.</source>\n        <translation>2つのデバイスが同じHIDを持つ場合にACPIで必要な一意のIDです。この値は、ACPI名前空間内の対応するUID/HIDペアとも一致する必要があります。UIDは32ビット数値型のみサポートされるため、ACPI名前空間では文字列をUIDとして使用することはできません。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"764\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"785\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"899\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;2つのデバイスが同じHIDを持つ場合にACPIで必要な一意のIDです。この値は、ACPI名前空間内の対応するUID/HIDペアとも一致する必要があります。UIDは32ビット数値型のみサポートされるため、ACPI名前空間では文字列をUIDとして使用することはできません。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"802\"/>\n        <source>Expanded</source>\n        <translation>拡張</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"912\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"933\"/>\n        <source>Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.</source>\n        <translation>デバイスの互換性のあるPnPハードウェアIDは、数値の32ビット圧縮EISAタイプIDに格納されています。この値は、ACPI名前空間内の対応するCIDによって返される互換性のあるデバイスIDの少なくとも1つと一致する必要があります。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"915\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"921\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"936\"/>\n        <source>CID</source>\n        <translation>CID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"918\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"939\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;デバイスの互換性のあるPnPハードウェアIDは、数値の32ビット圧縮EISAタイプIDに格納されています。この値は、ACPI名前空間内の対応するCIDによって返される互換性のあるデバイスIDの少なくとも1つと一致する必要があります。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"952\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"974\"/>\n        <source>Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.</source>\n        <translation>デバイスのPnPハードウェアIDが文字列として保存されます。この値は、ACPI名前空間内の対応するHIDと一致する必要があります。この文字列の長さが0の場合、HIDフィールドが使用されます。この文字列の長さが0より大きい場合、このフィールドがHIDフィールドよりも優先されます。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"955\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"961\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"977\"/>\n        <source>HIDSTR</source>\n        <translation>HIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"958\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"980\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;デバイスのPnPハードウェアIDが文字列として保存されます。この値は、ACPI名前空間内の対応するHIDと一致する必要があります。この文字列の長さが0の場合、HIDフィールドが使用されます。この文字列の長さが0より大きい場合、このフィールドがHIDフィールドよりも優先されます。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"987\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1009\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.</source>\n        <translation>2つのデバイスが同じHIDを持つ場合にACPIで必要な一意のIDです。この値は、ACPI名前空間内の対応するUID/HIDペアとも一致する必要があります。この値は文字列として保存されます。この文字列の長さが0の場合、UIDフィールドが使用されます。この文字列の長さが0より大きい場合、このフィールドがUIDフィールドよりも優先されます。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"990\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"996\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1012\"/>\n        <source>UIDSTR</source>\n        <translation>UIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"993\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1015\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;2つのデバイスが同じHIDを持つ場合にACPIで必要な一意のIDです。この値は、ACPI名前空間内の対応するUID/HIDペアとも一致する必要があります。この値は文字列として保存されます。この文字列の長さが0の場合、UIDフィールドが使用されます。この文字列の長さが0より大きい場合、このフィールドがUIDフィールドよりも優先されます。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1044\"/>\n        <source>Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.</source>\n        <translation>デバイスの互換性のあるPnPハードウェアIDが文字列として保存されます。この値は、ACPI名前空間内の対応するCIDによって返される互換性のあるデバイスIDの少なくとも1つと一致する必要があります。この文字列の長さが0の場合、CIDフィールドが使用されます。この文字列の長さが0より大きい場合、このフィールドがCIDフィールドよりも優先されます。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1025\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1031\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1047\"/>\n        <source>CIDSTR</source>\n        <translation>CIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1028\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1050\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;デバイスの互換性のあるPnPハードウェアIDが文字列として保存されます。この値は、ACPI名前空間内の対応するCIDによって返される互換性のあるデバイスIDの少なくとも1つと一致する必要があります。この文字列の長さが0の場合、CIDフィールドが使用されます。この文字列の長さが0より大きい場合、このフィールドがCIDフィールドよりも優先されます。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1061\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1094\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1100\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1115\"/>\n        <source>ADR</source>\n        <translation>ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1064\"/>\n        <source>The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.</source>\n        <translation>ADR デバイス パスは、グラフィックス出力プロトコルをサポートするためのビデオ出力デバイス属性を格納するために使用されます。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1067\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR デバイス パスは、グラフィックス出力プロトコルをサポートするためのビデオ出力デバイス属性を格納するために使用されます。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1091\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1112\"/>\n        <source>ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required</source>\n        <translation>ADR値。ビデオ出力デバイスの場合、このフィールドの値は表B-2 ACPI 3.0仕様から取得されます。少なくとも1つのADR値が必要です</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1097\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1118\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR値。ビデオ出力デバイスの場合、このフィールドの値は表B-2 ACPI 3.0仕様から取得されます。少なくとも1つのADR値が必要です&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1131\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1192\"/>\n        <source>This device path may optionally contain more than one ADR entry.</source>\n        <translation>このデバイス パスには、オプションで複数の ADR エントリを含めることができます。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1195\"/>\n        <source>Additional ADR</source>\n        <translation>追加の ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1198\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path may optionally contain more than one ADR entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;このデバイス パスには、オプションで複数の ADR エントリを含めることができます。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1153\"/>\n        <source>Additional ADR format.</source>\n        <translation>追加の ADR 形式。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1156\"/>\n        <source>Additional ADR format</source>\n        <translation>追加の ADR 形式</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1159\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Additional ADR format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;追加の ADR 形式。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1209\"/>\n        <source>NVDIMM</source>\n        <translation>NVDIMM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1212\"/>\n        <source>This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.</source>\n        <translation>このデバイス パスは、ACPI 6.0 仕様で定義された NFIT デバイス ハンドルを識別子として使用して NVDIMM デバイスを記述します。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;このデバイス パスは、ACPI 6.0 仕様で定義された NFIT デバイス ハンドルを識別子として使用して NVDIMM デバイスを記述します。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1260\"/>\n        <source>NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.</source>\n        <translation>NFITデバイスハンドル - 一意の物理識別子。このハンドルに使用されるフィールドの具体的な定義については、「ACPI定義デバイスおよびデバイス固有オブジェクト」セクションの「NVDIMMデバイス」サブチャプターを参照してください。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1242\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1248\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1263\"/>\n        <source>NFIT Device Handle</source>\n        <translation>NFIT デバイスハンドル</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1245\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFITデバイスハンドル - 一意の物理識別子。このハンドルに使用されるフィールドの具体的な定義については、「ACPI定義デバイスおよびデバイス固有オブジェクト」セクションの「NVDIMMデバイス」サブチャプターを参照してください。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1284\"/>\n        <source>ATAPI</source>\n        <translation>ATAPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1287\"/>\n        <source>ATAPI Settings.</source>\n        <translation>ATAPI 設定。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI 設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1336\"/>\n        <source>Set to zero for primary or one for secondary.</source>\n        <translation>プライマリの場合は 0 に設定し、セカンダリの場合は 1 に設定します。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1317\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1323\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1339\"/>\n        <source>Primary</source>\n        <translation>プライマリ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1320\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1342\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for primary or one for secondary.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;プライマリの場合は 0 に設定し、セカンダリの場合は 1 に設定します。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1349\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1371\"/>\n        <source>Set to zero for master or one for slave mode.</source>\n        <translation>マスター モードの場合は 0 に設定し、スレーブ モードの場合は 1 に設定します。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1374\"/>\n        <source>Slave</source>\n        <translation>スレーブ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1377\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for master or one for slave mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;マスター モードの場合は 0 に設定し、スレーブ モードの場合は 1 に設定します。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1384\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1406\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4054\"/>\n        <source>Logical Unit Number.</source>\n        <translation>論理ユニット番号。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1390\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1412\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4038\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;論理ユニット番号。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1429\"/>\n        <source>SCSI</source>\n        <translation>SCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1432\"/>\n        <source>SCSI Settings.</source>\n        <translation>SCSI 設定。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1435\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI 設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1481\"/>\n        <source>Target ID on the SCSI bus (PUN).</source>\n        <translation>SCSI バス上のターゲット ID (PUN)。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1962\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1984\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4969\"/>\n        <source>Target ID</source>\n        <translation>ターゲット ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1465\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1487\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the SCSI bus (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI バス上のターゲット ID (PUN)。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4985\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5006\"/>\n        <source>Logical Unit Number (LUN).</source>\n        <translation>論理ユニット番号 (LUN)。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5012\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;論理ユニット番号 (LUN)。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1545\"/>\n        <source>Fibre Channel</source>\n        <translation>ファイバーチャネル</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1548\"/>\n        <source>Fibre Channel Settings</source>\n        <translation>ファイバーチャネル設定</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1551\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ファイバーチャネル設定&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1596\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1750\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4434\"/>\n        <source>Reserved.</source>\n        <translation>予約済み。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1581\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1602\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1756\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3142\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4419\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;予約済み。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1615\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1636\"/>\n        <source>Fibre Channel World Wide Name.</source>\n        <translation>ファイバー チャネルのワールド ワイド ネーム。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1624\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1639\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4456\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4477\"/>\n        <source>World Wide Name</source>\n        <translation>ワールド ワイド ネーム</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1621\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1642\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel World Wide Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ファイバー チャネルのワールド ワイド ネーム。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1676\"/>\n        <source>Fibre Channel Logical Unit Number.</source>\n        <translation>ファイバー チャネル論理ユニット番号。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1661\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1682\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ファイバー チャネル論理ユニット番号。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1699\"/>\n        <source>Firewire</source>\n        <translation>ファイアワイヤー</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1702\"/>\n        <source>Firewire Settings.</source>\n        <translation>ファイアワイヤー設定。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1705\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firewire Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ファイアワイヤー設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1790\"/>\n        <source>1394 Global Unique ID (GUID)</source>\n        <translation>1394 グローバルユニークID (GUID)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1796\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 Global Unique ID (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 グローバルユニークID (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1816\"/>\n        <source>USB settings.</source>\n        <translation>USB 設定。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1865\"/>\n        <source>USB Parent Port Number.</source>\n        <translation>USB 親ポート番号。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1852\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1868\"/>\n        <source>Parent Port</source>\n        <translation>親ポート</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1871\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Parent Port Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB 親ポート番号。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1906\"/>\n        <source>USB Interface Number.</source>\n        <translation>USB インターフェース番号。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1912\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB インターフェース番号。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1929\"/>\n        <source>I2O</source>\n        <translation>I2O</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1932\"/>\n        <source>I2O Settings</source>\n        <translation>I2O 設定</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1935\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;I2O Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;I2O 設定&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1981\"/>\n        <source>Target ID (TID) for a device.</source>\n        <translation>デバイスのターゲット ID (TID)。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1965\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1987\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID (TID) for a device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;デバイスのターゲット ID (TID)。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2004\"/>\n        <source>InfiniBand</source>\n        <translation>InfiniBand</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2007\"/>\n        <source>InfiniBand Settings.</source>\n        <translation>InfiniBand 設定。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2010\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;InfiniBand Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;InfiniBand 設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2034\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2067\"/>\n        <source>Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.</source>\n        <translation>InfiniBand デバイス パス要素の識別/管理に役立つフラグ :\nBit 0 - IOC/サービス (0b = IOC, 1b = サービス)。\nBit 1 - 拡張ブート環境。\nBit 2 - コンソール プロトコル。\nBit 3 - ストレージ プロトコル。\nBit 4 - ネットワーク プロトコル。\nその他のビットはすべて予約済みです。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2043\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2055\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2076\"/>\n        <source>Resource Flags</source>\n        <translation>リソースフラグ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2046\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2079\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;InfiniBand デバイス パス要素の識別/管理に役立つフラグ :\nBit 0 - IOC/サービス (0b = IOC, 1b = サービス)。\nBit 1 - 拡張ブート環境。\nBit 2 - コンソール プロトコル。\nBit 3 - ストレージ プロトコル。\nBit 4 - ネットワーク プロトコル。\nその他のビットはすべて予約済みです。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2098\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2119\"/>\n        <source>128-bit Global Identifier for remote fabric port</source>\n        <translation>リモート ファブリック ポートの 128 ビット グローバル識別子</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2101\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2122\"/>\n        <source>PORT GID</source>\n        <translation>PORT GID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2104\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2125\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;128-bit Global Identifier for remote fabric port&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;リモート ファブリック ポートの 128 ビット グローバル識別子&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2135\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2156\"/>\n        <source>64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)</source>\n        <translation>リモートIOCまたはサーバープロセスに対する64ビットの一意の識別子。リソースフラグ(ビット0)で指定されたフィールドの解釈</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2138\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2144\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2159\"/>\n        <source>IOC GUID/Service ID</source>\n        <translation>IOC GUID/サービス ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2141\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2162\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;リモートIOCまたはサーバープロセスに対する64ビットの一意の識別子。リソースフラグ(ビット0)で指定されたフィールドの解釈&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2175\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2196\"/>\n        <source>64-bit persistent ID of remote IOC port.</source>\n        <translation>リモート IOC ポートの 64 ビットの永続 ID。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2184\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2199\"/>\n        <source>Target Port ID</source>\n        <translation>ターゲット ポート ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2181\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote IOC port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;リモート IOC ポートの 64 ビットの永続 ID。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2236\"/>\n        <source>64-bit persistent ID of remote device.</source>\n        <translation>リモート デバイスの 64 ビットの永続 ID。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2239\"/>\n        <source>Device ID</source>\n        <translation>デバイス ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;リモート デバイスの 64 ビットの永続 ID。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2259\"/>\n        <source>MAC Address</source>\n        <translation>MAC アドレス</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2262\"/>\n        <source>MAC settings.</source>\n        <translation>MAC 設定。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2289\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2310\"/>\n        <source>The MAC address for a network interface padded with 0s.</source>\n        <translation>0 が埋め込まれたネットワーク インターフェイスの MAC アドレス。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2295\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2316\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The MAC address for a network interface padded with 0s.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0 が埋め込まれたネットワーク インターフェイスの MAC アドレス。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2329\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2351\"/>\n        <source>Network interface type (i.e., 802.3, FDDI). See RFC 3232.</source>\n        <translation>ネットワークインターフェースの種類(802.3、FDDIなど）。RFC 3232を参照してください。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2357\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network interface type (i.e., 802.3, FDDI). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ネットワークインターフェースの種類(802.3、FDDIなど）。RFC 3232を参照してください。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2377\"/>\n        <source>IPv4 settings.</source>\n        <translation>IPv4 設定。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2425\"/>\n        <source>The local IPv4 address.</source>\n        <translation>ローカル IPv4 アドレス。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2407\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2763\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2784\"/>\n        <source>Local IP Address</source>\n        <translation>ローカル IP アドレス</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2431\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ローカル IPv4 アドレス。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2465\"/>\n        <source>The remote IPv4 address.</source>\n        <translation>リモート IPv4 アドレス。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2447\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2824\"/>\n        <source>Remote IP Address</source>\n        <translation>リモート IP アドレス</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2471\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;リモート IPv4 アドレス。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2862\"/>\n        <source>The local port number.</source>\n        <translation>ローカルポート番号。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2487\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2865\"/>\n        <source>Local Port</source>\n        <translation>ローカルポート</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2490\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ローカルポート番号。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2547\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2903\"/>\n        <source>The remote port number.</source>\n        <translation>リモート ポート番号。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2550\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2906\"/>\n        <source>Remote Port</source>\n        <translation>リモート ポート</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2553\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2909\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;リモート ポート番号。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2566\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2588\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2922\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2944\"/>\n        <source>The network protocol (i.e., UDP, TCP). See RFC 3232.</source>\n        <translation>ネットワークプロトコル(UDP、TCPなど）。RFC 3232を参照してください。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2928\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2950\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The network protocol (i.e., UDP, TCP). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ネットワークプロトコル(UDP、TCPなど）。RFC 3232を参照してください。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2631\"/>\n        <source>0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.</source>\n        <translation>0x00 - 送信元 IP アドレスは DHCP を通じて割り当てられました。\n0x01 - 送信元 IP アドレスは静的にバインドされます。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2635\"/>\n        <source>Static IP Address</source>\n        <translation>静的 IP アドレス</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - 送信元 IP アドレスは DHCP を通じて割り当てられました。\n0x01 - 送信元 IP アドレスは静的にバインドされます。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2667\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3083\"/>\n        <source>The Gateway IP Address.</source>\n        <translation>ゲートウェイ IP アドレス。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3071\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3086\"/>\n        <source>Gateway IP Address</source>\n        <translation>ゲートウェイ IP アドレス</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2673\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Gateway IP Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ゲートウェイ IP アドレス。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2686\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2707\"/>\n        <source>Subnet mask.</source>\n        <translation>サブネットマスク。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2689\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2695\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2710\"/>\n        <source>Subnet Mask</source>\n        <translation>サブネットマスク</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2733\"/>\n        <source>IPv6 settings.</source>\n        <translation>IPv6 設定。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2760\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2781\"/>\n        <source>The local IPv6 address.</source>\n        <translation>ローカル IPv6 アドレス。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2787\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ローカル IPv6 アドレス。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2821\"/>\n        <source>The remote IPv6 address.</source>\n        <translation>リモート IPv6 アドレス。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;リモート IPv6 アドレス。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2963\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2989\"/>\n        <source>0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.</source>\n        <translation>0x00 - ローカル IP アドレスは手動で構成されました。\n0x01 - ローカル IP アドレスは、IPv6 ステートレス自動構成を通じて割り当てられます。\n0x02 - ローカル IP アドレスは、IPv6 ステートフル構成を通じて割り当てられます。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2976\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2994\"/>\n        <source>IP Address Origin</source>\n        <translation>IP アドレスの取得元</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2971\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2997\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - ローカル IP アドレスは手動で構成されました。\n0x01 - ローカル IP アドレスは、IPv6 ステートレス自動構成を通じて割り当てられます。\n0x02 - ローカル IP アドレスは、IPv6 ステートフル構成を通じて割り当てられます。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3021\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3043\"/>\n        <source>The Prefix Length.</source>\n        <translation>プレフィックス長。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3024\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3030\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3046\"/>\n        <source>Prefix Length</source>\n        <translation>プレフィックス長</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3027\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3049\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Prefix Length.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;プレフィックス長。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3106\"/>\n        <source>UART</source>\n        <translation>UART</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3109\"/>\n        <source>UART Settings.</source>\n        <translation>UART 設定。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3112\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART 設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3176\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3197\"/>\n        <source>The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.</source>\n        <translation>UART 形式のデバイスのボーレート設定。値が 0 の場合、デバイスのデフォルトのボーレートが使用されます。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3179\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3185\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3200\"/>\n        <source>Baud Rate</source>\n        <translation>ボーレート</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3182\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3203\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART 形式のデバイスのボーレート設定。値が 0 の場合、デバイスのデフォルトのボーレートが使用されます。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3216\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3238\"/>\n        <source>The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.</source>\n        <translation>UART 形式のデバイスのデータビット数。値が 0 の場合、デバイスのデフォルトのデータビット数が使用されることを意味します。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3219\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3225\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3241\"/>\n        <source>Data Bits</source>\n        <translation>データビット</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3222\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART 形式のデバイスのデータビット数。値が 0 の場合、デバイスのデフォルトのデータビット数が使用されることを意味します。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3257\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3291\"/>\n        <source>The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.</source>\n        <translation>UART スタイルデバイスのパリティ設定 :\n0x00 - 既定のパリティ。\n0x01 - パリティなし。\n0x02 - 偶数パリティ。\n0x03 - 奇数パリティ。\n0x04 - マークパリティ。\n0x05 - スペースパリティ。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3266\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3300\"/>\n        <source>Parity</source>\n        <translation>パリティ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3303\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART スタイルデバイスのパリティ設定 :\n0x00 - 既定のパリティ。\n0x01 - パリティなし。\n0x02 - 偶数パリティ。\n0x03 - 奇数パリティ。\n0x04 - マークパリティ。\n0x05 - スペースパリティ。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3313\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3394\"/>\n        <source>Default</source>\n        <translation>既定</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3318\"/>\n        <source>No</source>\n        <translation>なし</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3323\"/>\n        <source>Even</source>\n        <translation>偶数</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3328\"/>\n        <source>Odd</source>\n        <translation>奇数</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3333\"/>\n        <source>Mark</source>\n        <translation>マーク</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3338\"/>\n        <source>Space</source>\n        <translation>スペース</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3346\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3376\"/>\n        <source>The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.</source>\n        <translation>UART 型デバイスのストップビット数 :\n0x00 - 既定のストップビット数。\n0x01 - 1 ストップビット。\n0x02 - 1.5 ストップビット。\n0x03 - 2 ストップビット。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3353\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3363\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3383\"/>\n        <source>Stop Bits</source>\n        <translation>ストップビット</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3356\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART 型デバイスのストップビット数 :\n0x00 - 既定のストップビット数。\n0x01 - 1 ストップビット。\n0x02 - 1.5 ストップビット。\n0x03 - 2 ストップビット。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3399\"/>\n        <source>1</source>\n        <translation>1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3404\"/>\n        <source>1.5</source>\n        <translation>1.5</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3409\"/>\n        <source>2</source>\n        <translation>2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3421\"/>\n        <source>USB Class</source>\n        <translation>USB Class</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3424\"/>\n        <source>USB Class Settings.</source>\n        <translation>USB Class 設定。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3427\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Class Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Class 設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3451\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3472\"/>\n        <source>Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.</source>\n        <translation>USB-IFによって割り当てられたベンダーID。0xFFFFの値はどのベンダーIDにも一致します。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3454\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3460\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3475\"/>\n        <source>Vendor ID</source>\n        <translation>ベンダー ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3457\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3478\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB-IFによって割り当てられたベンダーID。0xFFFFの値はどのベンダーIDにも一致します。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3491\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3512\"/>\n        <source>Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.</source>\n        <translation>USB-IFによって割り当てられた製品ID。値0xFFFFはどの製品IDにも一致します。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3515\"/>\n        <source>Product ID</source>\n        <translation>プロダクト ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3518\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB-IFによって割り当てられた製品ID。値0xFFFFはどの製品IDにも一致します。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3552\"/>\n        <source>The class code assigned by the USB-IF. A value of 0xFF will match any class code.</source>\n        <translation>USB-IFによって割り当てられたクラスコード。値0xFFはどのクラスコードにも一致します。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3540\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3555\"/>\n        <source>Device Class</source>\n        <translation>デバイス クラス</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3537\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3558\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The class code assigned by the USB-IF. A value of 0xFF will match any class code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB-IFによって割り当てられたクラスコード。値0xFFはどのクラスコードにも一致します。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3592\"/>\n        <source>The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.</source>\n        <translation>USB-IFによって割り当てられたサブクラスコード。値0xFFは、どのサブクラスコードにも一致します。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3574\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3595\"/>\n        <source>Device Subclass</source>\n        <translation>デバイス サブクラス</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB-IFによって割り当てられたサブクラスコード。値0xFFは、どのサブクラスコードにも一致します。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3632\"/>\n        <source>The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.</source>\n        <translation>USB-IFによって割り当てられたプロトコルコード。値0xFFはどのプロトコルコードにも一致します。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3635\"/>\n        <source>Device Protocol</source>\n        <translation>デバイス プロトコル</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3617\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB-IFによって割り当てられたプロトコルコード。値0xFFはどのプロトコルコードにも一致します。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3655\"/>\n        <source>USB WWID</source>\n        <translation>USB WWID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3658\"/>\n        <source>This device path describes a USB device using its serial number.</source>\n        <translation>このデバイス パスは、シリアル番号を使用して USB デバイスを記述します。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3661\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a USB device using its serial number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;このデバイス パスは、シリアル番号を使用して USB デバイスを記述します。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3685\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3707\"/>\n        <source>USB interface Number.</source>\n        <translation>USB インターフェース番号。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB インターフェース番号。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3747\"/>\n        <source>USB vendor id of the device.</source>\n        <translation>デバイスの USB ベンダー ID。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3750\"/>\n        <source>Device Vendor Id</source>\n        <translation>デバイスベンダー ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3753\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB vendor id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;デバイスの USB ベンダー ID。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3787\"/>\n        <source>USB product id of the device.</source>\n        <translation>デバイスの USB 製品 ID。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3790\"/>\n        <source>Device Product Id</source>\n        <translation>デバイス 製品 ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3793\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB product id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;デバイスの USB 製品 ID。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3828\"/>\n        <source>Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).</source>\n        <translation>USBシリアル番号の最後の64文字以下のUTF-16文字。文字列の長さは、長さフィールドからシリアル番号フィールドのオフセット（10）を差し引いた値によって決まります。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3815\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3831\"/>\n        <source>Serial Number</source>\n        <translation>シリアル番号</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3812\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USBシリアル番号の最後の64文字以下のUTF-16文字。文字列の長さは、長さフィールドからシリアル番号フィールドのオフセット（10）を差し引いた値によって決まります。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3845\"/>\n        <source>Device Logical Unit</source>\n        <translation>デバイス論理ユニット</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3848\"/>\n        <source>Device Logical Unit Settings.</source>\n        <translation>デバイスの論理ユニット設定。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3851\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device Logical Unit Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;デバイスの論理ユニット設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3897\"/>\n        <source>Logical Unit Number for the interface.</source>\n        <translation>インターフェースの論理ユニット番号。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3903\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number for the interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;インターフェースの論理ユニット番号。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3923\"/>\n        <source>SATA settings.</source>\n        <translation>SATA 設定。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3950\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3972\"/>\n        <source>The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.</source>\n        <translation>デバイスまたはポートマルチプライヤへの接続を容易にするHBAポート番号。値0xFFFFは予約されています。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3953\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3975\"/>\n        <source>HBA Port</source>\n        <translation>HBA ポート</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3956\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3978\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;デバイスまたはポートマルチプライヤへの接続を容易にするHBAポート番号。値0xFFFFは予約されています。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4013\"/>\n        <source>The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.</source>\n        <translation>デバイスへの接続を容易にするポートマルチプライヤポート番号。デバイスがHBAに直接接続されている場合は、0xFFFFに設定する必要があります。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4000\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4016\"/>\n        <source>Port Multiplier Port</source>\n        <translation>ポートマルチプライヤポート</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3997\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4019\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;デバイスへの接続を容易にするポートマルチプライヤポート番号。デバイスがHBAに直接接続されている場合は、0xFFFFに設定する必要があります。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4077\"/>\n        <source>iSCSI</source>\n        <translation>iSCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4080\"/>\n        <source>iSCSI Settings.</source>\n        <translation>iSCSI 設定。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4083\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI 設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4129\"/>\n        <source>Network Protocol (0 = TCP, 1+ = reserved).</source>\n        <translation>ネットワーク プロトコル (0 = TCP, 1+ = 予約済)。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4113\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network Protocol (0 = TCP, 1+ = reserved).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ネットワーク プロトコル (0 = TCP, 1+ = 予約済)。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4148\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4169\"/>\n        <source>iSCSI Login Options.</source>\n        <translation>iSCSI ログイン オプション。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4151\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4172\"/>\n        <source>Options</source>\n        <translation>オプション</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4154\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4175\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Login Options.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI ログイン オプション。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4188\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4209\"/>\n        <source>8 byte array containing the iSCSI Logical Unit Number.</source>\n        <translation>iSCSI 論理ユニット番号を含む 8 バイトの配列。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4194\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing the iSCSI Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI 論理ユニット番号を含む 8 バイトの配列。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4228\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4250\"/>\n        <source>iSCSI Target Portal group tag the initiator intends to establish a session with.</source>\n        <translation>イニシエーターがセッションを確立しようとしている iSCSI ターゲット ポータル グループ タグ。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4231\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4253\"/>\n        <source>Target Portal Group</source>\n        <translation>ターゲット ポータル グループ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4234\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4256\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Target Portal group tag the initiator intends to establish a session with.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iイニシエーターがセッションを確立しようとしている iSCSI ターゲット ポータル グループ タグ。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4291\"/>\n        <source>iSCSI NodeTarget Name.</source>\n        <translation>iSCSI ノードターゲット名。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4272\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4294\"/>\n        <source>Target Name</source>\n        <translation>ターゲット名</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4275\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4297\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI NodeTarget Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI ノードターゲット名。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4308\"/>\n        <source>VLAN</source>\n        <translation>VLAN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4311\"/>\n        <source>VLAN Settings.</source>\n        <translation>VLAN 設定。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4314\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN 設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4360\"/>\n        <source>VLAN identifier (0-4094).</source>\n        <translation>VLAN 識別子 (0-4094)。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4341\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4347\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4363\"/>\n        <source>Vlan ID</source>\n        <translation>Vlan ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4344\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4366\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN identifier (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN 識別子 (0-4094)。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4383\"/>\n        <source>Fibre Channel Ex</source>\n        <translation>ファイバーチャネルEx</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4386\"/>\n        <source>The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation>ファイバー チャネル Ex デバイス パスは、T-10 SCSI アーキテクチャ モデル 4 仕様に準拠するために論理ユニット番号フィールドの定義を明確にします。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4389\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ファイバー チャネル Ex デバイス パスは、T-10 SCSI アーキテクチャ モデル 4 仕様に準拠するために論理ユニット番号フィールドの定義を明確にします。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4474\"/>\n        <source>8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).</source>\n        <translation>ファイバー チャネル エンド デバイス ポート名 (別名、ワールド ワイド ネーム) を含む 8 バイトの配列。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4480\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ファイバー チャネル エンド デバイス ポート名 (別名、ワールド ワイド ネーム) を含む 8 バイトの配列。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4514\"/>\n        <source>8 byte array containing Fibre Channel Logical Unit Number.</source>\n        <translation>ファイバー チャネル論理ユニット番号を含む 8 バイトの配列。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4499\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4520\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ファイバー チャネル論理ユニット番号を含む 8 バイトの配列。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4537\"/>\n        <source>SAS Extended Messaging</source>\n        <translation>SAS 拡張メッセージング</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4540\"/>\n        <source>The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation>SAS Ex デバイス パスは、T-10 SCSI アーキテクチャ モデル 4 仕様に準拠するために論理ユニット番号フィールドの定義を明確にします。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4543\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SAS Ex デバイス パスは、T-10 SCSI アーキテクチャ モデル 4 仕様に準拠するために論理ユニット番号フィールドの定義を明確にします。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4567\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4588\"/>\n        <source>8-byte array of the SAS Address for Serial Attached SCSI Target Port.</source>\n        <translation>シリアル接続 SCSI ターゲット ポートの SAS アドレスの 8 バイト配列。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4570\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4576\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4591\"/>\n        <source>SAS Address</source>\n        <translation>SAS アドレス</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4573\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4594\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Address for Serial Attached SCSI Target Port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;シリアル接続 SCSI ターゲット ポートの SAS アドレスの 8 バイト配列。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4628\"/>\n        <source>8-byte array of the SAS Logical Unit Number.</source>\n        <translation>SAS 論理ユニット番号の 8 バイト配列。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4613\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4634\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SAS 論理ユニット番号の 8 バイト配列。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4647\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4668\"/>\n        <source>More Information about the device and its interconnect.</source>\n        <translation>デバイスとその相互接続に関する詳細情報。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4650\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4656\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4671\"/>\n        <source>Device and Topology Info</source>\n        <translation>デバイスとトポロジ情報</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4653\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4674\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;More Information about the device and its interconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;デバイスとその相互接続に関する詳細情報。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4687\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4709\"/>\n        <source>Relative Target Port (RTP).</source>\n        <translation>相対ターゲット ポート (RTP)。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4690\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4696\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4712\"/>\n        <source>Relative Target Port</source>\n        <translation>相対ターゲット ポート</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4715\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Relative Target Port (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;相対ターゲット ポート (RTP)。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4732\"/>\n        <source>NVM Express NS</source>\n        <translation>NVM Express NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4735\"/>\n        <source>NVM Express Namespace Settings.</source>\n        <translation>NVM Express 名前空間の設定。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4738\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM Express Namespace Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM Express 名前空間の設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4783\"/>\n        <source>Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.</source>\n        <translation>名前空間識別子(NSID)。0および0xFFFFFFFFの値は無効です。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4765\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4771\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4786\"/>\n        <source>NSID</source>\n        <translation>NSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4768\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4789\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;名前空間識別子(NSID)。0および0xFFFFFFFFの値は無効です。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4802\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4823\"/>\n        <source>This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.</source>\n        <translation>このフィールドにはIEEE拡張固有識別子（EUI-64）が含まれます。EUI-64値を持たないデバイスは、このフィールドを0で初期化する必要があります。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4805\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4811\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4826\"/>\n        <source>EUI-64</source>\n        <translation>EUI-64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4808\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4829\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;このフィールドにはIEEE拡張固有識別子（EUI-64）が含まれます。EUI-64値を持たないデバイスは、このフィールドを0で初期化する必要があります。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4849\"/>\n        <source>Refer to RFC 3986 for details on the URI contents.</source>\n        <translation>URI の内容の詳細については、RFC 3986 を参照してください。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Refer to RFC 3986 for details on the URI contents.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;URI の内容の詳細については、RFC 3986 を参照してください。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4876\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4898\"/>\n        <source>Instance of the URI pursuant to RFC 3986.</source>\n        <translation>RFC 3986 に準拠した URI のインスタンス。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4882\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Instance of the URI pursuant to RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RFC 3986 に準拠した URI のインスタンス。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4915\"/>\n        <source>UFS</source>\n        <translation>UFS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4918\"/>\n        <source>UFS Settings.</source>\n        <translation>UFS 設定。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS 設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4966\"/>\n        <source>Target ID on the UFS interface (PUN).</source>\n        <translation>UFS インターフェイス上のターゲット ID (PUN)。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4972\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the UFS interface (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS インターフェイス上のターゲット ID (PUN)。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5029\"/>\n        <source>SD</source>\n        <translation>SD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5032\"/>\n        <source>SD Settings.</source>\n        <translation>SD 設定。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5035\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SD 設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5081\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5299\"/>\n        <source>Slot Number</source>\n        <translation>スロット番号</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5084\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5280\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5286\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5302\"/>\n        <source>Slot</source>\n        <translation>スロット</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5087\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5283\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5305\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Slot Number&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;スロット番号&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5104\"/>\n        <source>Bluetooth</source>\n        <translation>Bluetooth</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5107\"/>\n        <source>EFI Bluetooth Settings.</source>\n        <translation>EFI Bluetooth 設定。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5110\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI Bluetooth Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI Bluetooth 設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5155\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5373\"/>\n        <source>48-bit Bluetooth device address.</source>\n        <translation>48-bit Bluetooth デバイス アドレス。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5143\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5158\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5361\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5376\"/>\n        <source>Device Address</source>\n        <translation>デバイス アドレス</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5161\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5379\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-bit Bluetooth device address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-bit Bluetooth デバイス アドレス。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5178\"/>\n        <source>Wi-Fi</source>\n        <translation>Wi-Fi</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5181\"/>\n        <source>Wi-Fi Settings.</source>\n        <translation>Wi-Fi 設定。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5184\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wi-Fi Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wi-Fi 設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5208\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5230\"/>\n        <source>SSID in octet string.</source>\n        <translation>オクテット文字列の SSID。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5211\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5217\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5233\"/>\n        <source>SSID</source>\n        <translation>SSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5214\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5236\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID in octet string.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;オクテット文字列の SSID。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5247\"/>\n        <source>eMMC</source>\n        <translation>eMMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5250\"/>\n        <source>Embedded Multi-Media Card Settings.</source>\n        <translation>Embedded Multi-Media Card 設定。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5253\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Embedded Multi-Media Card Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Embedded Multi-Media Card 設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5322\"/>\n        <source>BluetoothLE</source>\n        <translation>BluetoothLE</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5325\"/>\n        <source>EFI BluetoothLE Settings.</source>\n        <translation>EFI BluetoothLE 設定。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5328\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI BluetoothLE Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI BluetoothLE 設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5416\"/>\n        <source>0x00 - Public Device Address.\n0x01 - Random Device Address.</source>\n        <translation>0x00 - パブリックデバイスアドレス。\n0x01 - ランダムデバイスアドレス。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5396\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5403\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5420\"/>\n        <source>Address Type</source>\n        <translation>アドレスの種類</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5399\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5423\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Public Device Address.\n0x01 - Random Device Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - パブリックデバイスアドレス。\n0x01 - ランダムデバイスアドレス。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5428\"/>\n        <source>Public</source>\n        <translation>パブリック</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5433\"/>\n        <source>Random</source>\n        <translation>ランダム</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5445\"/>\n        <source>DNS</source>\n        <translation>DNS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5448\"/>\n        <source>DNS Settings.</source>\n        <translation>DNS 設定。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5451\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DNS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DNS 設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5499\"/>\n        <source>0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.</source>\n        <translation>0x00 - DNS サーバーのアドレスは IPv4 アドレスです。\n0x01 - DNSサーバーのアドレスはIPv6アドレスです。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5482\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5506\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - DNS サーバーのアドレスは IPv4 アドレスです。\n0x01 - DNSサーバーのアドレスはIPv6アドレスです。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5514\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5575\"/>\n        <source>One or more instances of the DNS server address in EFI_IP_ADDRESS.</source>\n        <translation>EFI_IP_ADDRESS 内の DNS サーバー アドレスの 1 つ以上のインスタンス。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5520\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5581\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;One or more instances of the DNS server address in EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI_IP_ADDRESS 内の DNS サーバー アドレスの 1 つ以上のインスタンス。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5536\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7584\"/>\n        <source>Data format.</source>\n        <translation>データ形式。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5592\"/>\n        <source>NVDIMM NS</source>\n        <translation>NVDIMM NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5595\"/>\n        <source>This device path describes a bootable NVDIMM namespace that is defined by a namespace label.</source>\n        <translation>このデバイス パスは、名前空間ラベルによって定義される起動可能な NVDIMM 名前空間を記述します。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVDIMM namespace that is defined by a namespace label.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;このデバイス パスは、名前空間ラベルによって定義される起動可能な NVDIMM 名前空間を記述します。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5622\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5643\"/>\n        <source>Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.</source>\n        <translation>名前空間の一意のラベル識別子UUID。このフィールドの詳細については、「NVDIMMラベルプロトコル - ラベル定義」セクションのUUIDの説明を参照してください。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5646\"/>\n        <source>UUID</source>\n        <translation>UUID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5628\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5649\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;名前空間の一意のラベル識別子UUID。このフィールドの詳細については、「NVDIMMラベルプロトコル - ラベル定義」セクションのUUIDの説明を参照してください。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5663\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5698\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5706\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5724\"/>\n        <source>REST Service</source>\n        <translation>REST サービス</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5666\"/>\n        <source>REST Service Settings.</source>\n        <translation>REST サービス設定。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5669\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;REST Service Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;REST サービス設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5719\"/>\n        <source>0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.</source>\n        <translation>0x01 - Redfish REST サービス。\n0x02 - OData REST Service.\n0xFF - ベンダー固有の REST サービス。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5701\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5727\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Redfish REST サービス。\n0x02 - OData REST サービス。\n0xFF - ベンダー固有の REST サービス。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5733\"/>\n        <source>Redfish</source>\n        <translation>Redfish</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5738\"/>\n        <source>OData</source>\n        <translation>OData</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5743\"/>\n        <source>Vendor specific</source>\n        <translation>ベンダー固有</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5775\"/>\n        <source>0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.</source>\n        <translation>0x01 - In-Band REST サービス。\n0x02 - Out-of-band REST サービス。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5755\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5779\"/>\n        <source>Access Mode</source>\n        <translation>アクセスモード</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5782\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - In-Band REST サービス。\n0x02 - Out-of-band REST サービス。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5787\"/>\n        <source>In-Band</source>\n        <translation>In-Band</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5792\"/>\n        <source>Out-of-band</source>\n        <translation>Out-of-band</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5821\"/>\n        <source>GUID of vendor specific REST service.</source>\n        <translation>ベンダー固有の REST サービスの GUID。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID of vendor specific REST service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ベンダー固有の REST サービスの GUID。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5898\"/>\n        <source>Vendor-defined data.</source>\n        <translation>ベンダー定義のデータ。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ベンダー定義のデータ。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5915\"/>\n        <source>NVMe-oF NS</source>\n        <translation>NVMe-oF NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5918\"/>\n        <source>This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.</source>\n        <translation>このデバイス パスは、一意の名前空間とサブシステム NQN ID によって定義される、起動可能な NVMe over Fiber 名前空間を記述します。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;このデバイス パスは、一意の名前空間とサブシステム NQN ID によって定義される、起動可能な NVMe over Fiber 名前空間を記述します。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5967\"/>\n        <source>Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.</source>\n        <translation>名前空間識別子タイプ (NIDT)。NVM Express 基本仕様によって CNS 03h NIDT フィールド (1h、2h、または 3h) で定義されたグローバルに一意のタイプ値用です。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5970\"/>\n        <source>NIDT</source>\n        <translation>NIDT</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5973\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;名前空間識別子タイプ (NIDT)。NVM Express 基本仕様によって CNS 03h NIDT フィールド (1h、2h、または 3h) で定義されたグローバルに一意のタイプ値用です。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5986\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6007\"/>\n        <source>Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.</source>\n        <translation>名前空間識別子 (NID) は、NVM Express 基本仕様の名前空間識別記述子リスト (CNS 03h) でビッグ エンディアン形式で定義されるグローバルに一意の値です。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5989\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5995\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6010\"/>\n        <source>NID</source>\n        <translation>NID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5992\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6013\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;名前空間識別子 (NID) は、NVM Express 基本仕様の名前空間識別記述子リスト (CNS 03h) でビッグ エンディアン形式で定義されるグローバルに一意の値です。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6023\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6045\"/>\n        <source>Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.</source>\n        <translation>NVM Express基本仕様のNVMe修飾名に準拠したnバイトのUTF-8文字列として保存されたNVMサブシステムの一意の識別子。サブシステムNQNは識別と認証のために使用されます。最大長は224バイトです。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6026\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6048\"/>\n        <source>Subsystem NQN</source>\n        <translation>Subsystem NQN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6029\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6051\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM Express基本仕様のNVMe修飾名に準拠したnバイトのUTF-8文字列として保存されたNVMサブシステムの一意の識別子。サブシステムNQNは識別と認証のために使用されます。最大長は224バイトです。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6066\"/>\n        <source>Hard Drive</source>\n        <translation>ハードドライブ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6069\"/>\n        <source>The Hard Drive Media Device Path is used to represent a partition on a hard drive.</source>\n        <translation>ハード ドライブ メディア デバイス パスは、ハード ドライブ上のパーティションを表すために使用されます。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6072\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Hard Drive Media Device Path is used to represent a partition on a hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ハード ドライブ メディア デバイス パスは、ハード ドライブ上のパーティションを表すために使用されます。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6174\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6196\"/>\n        <source>Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].</source>\n        <translation>パーティションテーブル内のエントリを、エントリ1から順に記述します。パーティション番号0はデバイス全体を表します。MBRパーティションの有効なパーティション番号は[1, 4]です。GPTパーティションの有効なパーティション番号は[1, NumberOfPartitionEntries]です。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6180\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;パーティションテーブル内のエントリを、エントリ1から順に記述します。パーティション番号0はデバイス全体を表します。MBRパーティションの有効なパーティション番号は[1, 4]です。GPTパーティションの有効なパーティション番号は[1, NumberOfPartitionEntries]です。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6236\"/>\n        <source>Starting LBA of the partition on the hard drive.</source>\n        <translation>ハードドライブ上のパーティションの開始 LBA。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6466\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6487\"/>\n        <source>Partition Start</source>\n        <translation>パーティションの開始</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting LBA of the partition on the hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ハードドライブ上のパーティションの開始 LBA。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6255\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6276\"/>\n        <source>Size of the partition in units of Logical Blocks.</source>\n        <translation>論理ブロック単位でのパーティションのサイズ。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6258\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6264\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6279\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6527\"/>\n        <source>Partition Size</source>\n        <translation>パーティションのサイズ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6261\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6282\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Logical Blocks.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;論理ブロック単位でのパーティションのサイズ。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6295\"/>\n        <source>Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation>このパーティション固有の署名 :\nSignatureType が 0 の場合、このフィールドは 16 個のゼロで初期化する必要があります。\nSignatureType が 1 の場合、MBR 署名はこのフィールドの最初の 4 バイトに格納されます。残りの 12 バイトはゼロで初期化されます。\nSignatureType が 2 の場合、このフィールドには 16 バイトの署名が格納されます。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6301\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6310\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6367\"/>\n        <source>Partition Signature</source>\n        <translation>パーティションの署名</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6304\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;このパーティション固有の署名 :\nSignatureType が 0 の場合、このフィールドは 16 個のゼロで初期化する必要があります。\nSignatureType が 1 の場合、MBR 署名はこのフィールドの最初の 4 バイトに格納されます。残りの 12 バイトはゼロで初期化されます。\nSignatureType が 2 の場合、このフィールドには 16 バイトの署名が格納されます。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6322\"/>\n        <source>PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.</source>\n        <translation>ディスク署名のPartType (未使用の値は予約済み) :\n            0x00 - ディスク署名なし。\n            0x01 - アドレス0x1b8からの32ビット署名 (タイプ0x01 MBR)。\n            0x02 - GUID 署名。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6328\"/>\n        <source>Signature Type</source>\n        <translation>署名の種類</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6331\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ディスク署名のPartType (未使用の値は予約済み) :\n            0x00 - ディスク署名なし。\n            0x01 - アドレス0x1b8からの32ビット署名 (タイプ0x01 MBR)。\n            0x02 - GUID 署名。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6338\"/>\n        <source>None</source>\n        <translation>なし</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6361\"/>\n        <source>Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation>このパーティション固有の署名 :\n            SignatureType が 0 の場合、このフィールドは 16 個のゼロで初期化する必要があります。\n            SignatureType が 1 の場合、MBR 署名はこのフィールドの最初の 4 バイトに格納されます。残りの 12 バイトはゼロで初期化されます。\n            SignatureType が 2 の場合、このフィールドには 16 バイトの署名が格納されます。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6370\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;このパーティション固有の署名 :\n            SignatureType が 0 の場合、このフィールドは 16 個のゼロで初期化する必要があります。\n            SignatureType が 1 の場合、MBR 署名はこのフィールドの最初の 4 バイトに格納されます。残りの 12 バイトはゼロで初期化されます。\n            SignatureType が 2 の場合、このフィールドには 16 バイトの署名が格納されます。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6392\"/>\n        <source>CD-ROM</source>\n        <translation>CD-ROM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6395\"/>\n        <source>The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.</source>\n        <translation>CD-ROM メディア デバイス パスは、CD-ROM 上に存在するシステム パーティションを定義するために使用されます。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6398\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;CD-ROM メディア デバイス パスは、CD-ROM 上に存在するシステム パーティションを定義するために使用されます。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6444\"/>\n        <source>Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.</source>\n        <translation>ブートカタログからのブートエントリ番号。初期/デフォルトエントリは0と定義されます。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6425\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6431\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6447\"/>\n        <source>Boot Entry</source>\n        <translation>ブートエントリ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6450\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ブートカタログからのブートエントリ番号。初期/デフォルトエントリは0と定義されます。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6463\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6484\"/>\n        <source>Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.</source>\n        <translation>メディア上のパーティションの開始 RBA。CD-ROM は相対論理ブロック アドレスを使用します。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6469\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6490\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;メディア上のパーティションの開始 RBA。CD-ROM は相対論理ブロック アドレスを使用します。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6524\"/>\n        <source>Size of the partition in units of Blocks, also called Sectors.</source>\n        <translation>ブロック (セクターとも呼ばれる) 単位で表したパーティションのサイズ。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6530\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Blocks, also called Sectors.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ブロック (セクターとも呼ばれる) 単位で表したパーティションのサイズ。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6547\"/>\n        <source>File Path</source>\n        <translation>ファイルパス</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6550\"/>\n        <source>File Path settings.</source>\n        <translation>ファイルパスの設定。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6553\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File Path settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ファイルパスの設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6599\"/>\n        <source>Path including directory and file names.</source>\n        <translation>ディレクトリ名とファイル名を含むパス。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6586\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6602\"/>\n        <source>Path Name</source>\n        <translation>パス名</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6583\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6605\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Path including directory and file names.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ディレクトリ名とファイル名を含むパス。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6619\"/>\n        <source>The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.</source>\n        <translation>メディア プロトコル デバイス パスは、指定されたパスの場所にあるデバイス パスで使用されているプロトコルを示すために使用されます。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6622\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;メディア プロトコル デバイス パスは、指定されたパスの場所にあるデバイス パスで使用されているプロトコルを示すために使用されます。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6667\"/>\n        <source>The ID of the protocol.</source>\n        <translation>プロトコルの ID。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6673\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ID of the protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;プロトコルの ID。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6687\"/>\n        <source>Firmware File</source>\n        <translation>ファームウェアファイル</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6690\"/>\n        <source>Describes a firmware file in a firmware volume.</source>\n        <translation>ファームウェア ボリューム内のファームウェア ファイルについて説明します。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6693\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware file in a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ファームウェア ボリューム内のファームウェア ファイルについて説明します。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6717\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6738\"/>\n        <source>Firmware file name GUID.</source>\n        <translation>ファームウェア ファイル名 GUID。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6723\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6744\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware file name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ファームウェア ファイル名 GUID。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6758\"/>\n        <source>Firmware Volume</source>\n        <translation>ファームウェアボリューム</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6761\"/>\n        <source>Describes a firmware volume.</source>\n        <translation>ファームウェア ボリュームについて説明します。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6764\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ファームウェア ボリュームについて説明します。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6809\"/>\n        <source>Firmware volume name GUID.</source>\n        <translation>ファームウェア ボリューム名 GUID。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware volume name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ファームウェア ボリューム名 GUID。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6829\"/>\n        <source>Relative Offset Range</source>\n        <translation>相対オフセット範囲</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6832\"/>\n        <source>This device path node specifies a range of offsets relative to the first byte available on the device.</source>\n        <translation>このデバイス パス ノードは、デバイスで使用可能な最初のバイトを基準としたオフセットの範囲を指定します。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6835\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path node specifies a range of offsets relative to the first byte available on the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;このデバイス パス ノードは、デバイスで使用可能な最初のバイトを基準としたオフセットの範囲を指定します。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6880\"/>\n        <source>Reserved for future use.</source>\n        <translation>将来の使用のために予約されています。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6886\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved for future use.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;将来の使用のために予約されています。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6899\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6920\"/>\n        <source>Offset of the first byte, relative to the parent device node.</source>\n        <translation>親デバイス ノードに対する最初のバイトのオフセット。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6902\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6908\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6923\"/>\n        <source>Starting Offset</source>\n        <translation>開始オフセット</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6905\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the first byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;親デバイス ノードに対する最初のバイトのオフセット。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6939\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6960\"/>\n        <source>Offset of the last byte, relative to the parent device node.</source>\n        <translation>親デバイス ノードに対する最後のバイトのオフセット。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6942\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6963\"/>\n        <source>Ending Offset</source>\n        <translation>終了オフセット</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6966\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the last byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;親デバイス ノードに対する最後のバイトのオフセット。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6983\"/>\n        <source>RAM Disk</source>\n        <translation>RAM ディスク</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6986\"/>\n        <source>RAM Disk Settings.</source>\n        <translation>RAM ディスク設定。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6989\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM ディスク設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7016\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7037\"/>\n        <source>Starting Address</source>\n        <translation>開始アドレス</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7056\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7077\"/>\n        <source>Ending Address</source>\n        <translation>終了アドレス</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7093\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7114\"/>\n        <source>GUID that defines the type of the RAM Disk.</source>\n        <translation>RAM ディスクの種類を定義する GUID。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7120\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID that defines the type of the RAM Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM ディスクの種類を定義する GUID。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7130\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7152\"/>\n        <source>RAM Disk instance number, if supported.</source>\n        <translation>サポートされている場合の RAM ディスク インスタンス番号。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7133\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7155\"/>\n        <source>Disk Instance</source>\n        <translation>ディスクインスタンス</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7158\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk instance number, if supported.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;サポートされている場合の RAM ディスク インスタンス番号。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7179\"/>\n        <source>This Device Path is used to describe the booting of non-EFI-aware operating systems.</source>\n        <translation>このデバイス パスは、EFI 非対応のオペレーティング システムの起動を記述するために使用されます。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7182\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path is used to describe the booting of non-EFI-aware operating systems.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;このデバイス パスは、EFI 非対応のオペレーティング システムの起動を記述するために使用されます。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7206\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7249\"/>\n        <source>An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.</source>\n        <translation>デバイスの種類を表す識別番号 :\n  0x00 - 予約済み。\n  0x01 - フロッピーディスク。\n  0x02 -ハードディスク。\n  0x03 - CD-ROM。\n  0x04 - PCMCIA。\n  0x05 - USB デバイス。\n  0x06 - 組み込みネットワーク。\n  0x07..0x7F - 予約済み。\n  0x80 - BEV デバイス。\n  0x81..0xFE - 予約済み。\n  0xFF - 不明。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7220\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7263\"/>\n        <source>Device Type</source>\n        <translation>デバイスの種類</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7223\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;デバイスの種類を表す識別番号 :\n  0x00 - 予約済み。\n  0x01 - フロッピーディスク。\n  0x02 - ハードディスク。\n  0x03 - CD-ROM。\n  0x04 - PCMCIA。\n  0x05 - USB デバイス。\n  0x06 - 組み込みネットワーク。\n  0x07..0x7F - 予約済み。\n  0x80 - BEV デバイス。\n  0x81..0xFE - 予約済み。\n  0xFF - 不明。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7290\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7347\"/>\n        <source>Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero</source>\n        <translation>BIOS ブート仕様で定義されているステータス フラグ :\n|  ビット  |     フィールド     | 値 | 説明\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | このエントリの、前回の起動時のテーブル内のインデックス。個々のデバイス検出が行われた場合、IPLまたはBCVの優先度を更新するために使用します。\n|--------|-------------- |-------|-------------\n|  7..4  |  (予約済)   |   0   | 将来の使用のために予約されており、ゼロにする必要があります。\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = ブート (IPL) の場合、エントリは無視されます。ブート接続 (BCV) の場合、エントリは呼び出されません。\n|        |               |       | 1 = ブート (IPL) のためにエントリが試行され、ブート接続 (BCV) のためにエントリが呼び出されます。\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = ブートが試行されていないか、ブート障害が発生したかどうかは不明です (IPL)。エントリは正常に接続されました (BCV)。\n|        |               |       | 1 = ブート試行 (IPL) に失敗しました。接続試行 (BCV) に失敗しました。\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = デバイスに起動可能なメディアが存在しません。\n|        |               |       | 1 = 起動可能なメディアが存在するかどうかは不明です。\n|        |               |       | 2 = メディアが存在し、起動可能であるようです。\n|        |               |       | 3 = 将来の使用のために予約されています。\n|--------|---------------|-------|-------------\n| 15..12 |  (予約済)   |   0   | 将来の使用のために予約されており、ゼロである必要があります</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7311\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7368\"/>\n        <source>Status Flag</source>\n        <translation>状態フラグ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7371\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;BIOS ブート仕様で定義されているステータス フラグ :\n|  ビット  |     フィールド     | 値 | 説明\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | このエントリの、前回の起動時のテーブル内のインデックス。個々のデバイス検出が行われた場合、IPLまたはBCVの優先度を更新するために使用します。\n|--------|-------------- |-------|-------------\n|  7..4  |  (予約済)   |   0   | 将来の使用のために予約されており、ゼロにする必要があります。\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = ブート (IPL) の場合、エントリは無視されます。ブート接続 (BCV) の場合、エントリは呼び出されません。\n|        |               |       | 1 = ブート (IPL) のためにエントリが試行され、ブート接続 (BCV) のためにエントリが呼び出されます。\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = ブートが試行されていないか、ブート障害が発生したかどうかは不明です (IPL)。エントリは正常に接続されました (BCV)。\n|        |               |       | 1 = ブート試行 (IPL) に失敗しました。接続試行 (BCV) に失敗しました。\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = デバイスに起動可能なメディアが存在しません。\n|        |               |       | 1 = 起動可能なメディアが存在するかどうかは不明です。\n|        |               |       | 2 = メディアが存在し、起動可能であるようです。\n|        |               |       | 3 = 将来の使用のために予約されています。\n|--------|---------------|-------|-------------\n| 15..12 |  (予約済)   |   0   | 将来の使用のために予約されており、ゼロである必要があります&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7402\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7424\"/>\n        <source>String that describes the boot device to a user.</source>\n        <translation>ユーザーにブートデバイスを説明する文字列。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7408\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7430\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;String that describes the boot device to a user.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ユーザーにブートデバイスを説明する文字列。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7543\"/>\n        <source>Vendor-assigned GUID that defines the data that follows.</source>\n        <translation>後続のデータを定義するベンダー割り当ての GUID。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7549\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-assigned GUID that defines the data that follows.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;後続のデータを定義するベンダー割り当ての GUID。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7562\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7622\"/>\n        <source>Vendor-defined variable size data.</source>\n        <translation>ベンダー定義の可変サイズデータ。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7568\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7628\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined variable size data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ベンダー定義の可変サイズデータ。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7642\"/>\n        <source>Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.</source>\n        <translation>サブタイプに応じて、このデバイス パス ノードは、デバイス パス インスタンスまたはデバイス パス構造の終了を示すために使用されます。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7645\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;サブタイプに応じて、このデバイス パス ノードは、デバイス パス インスタンスまたはデバイス パス構造の終了を示すために使用されます。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7721\"/>\n        <source>Unknown file path specifier settings</source>\n        <translation>不明なファイルパス指定子の設定</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7724\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown file path specifier settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;不明なファイルパス指定子の設定&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7748\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7772\"/>\n        <source>Unknown Type</source>\n        <translation>不明なタイプ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7754\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7775\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;不明なタイプ。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7812\"/>\n        <source>Unknown Sub-Type</source>\n        <translation>不明なサブタイプ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;不明なサブタイプ。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7828\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7831\"/>\n        <source>Unknown data</source>\n        <translation>不明なデータ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;不明なデータ。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/filepathdialog.cpp\" line=\"1569\"/>\n        <source>Couldn&apos;t change data format!</source>\n        <translation>データ形式を変更できませんでした!</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeyListModel</name>\n    <message>\n        <location filename=\"../src/hotkeylistmodel.cpp\" line=\"100\"/>\n        <source>boot option</source>\n        <translation>ブート オプション</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Boot option</source>\n        <translation>ブート オプション</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Hot key</source>\n        <translation>ホットキー</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Vendor data</source>\n        <translation>ベンダーデータ</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeysDialog</name>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"20\"/>\n        <source>Hot Keys editor</source>\n        <translation>ホットキー エディタ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"41\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"44\"/>\n        <source>Hot Keys</source>\n        <translation>ホットキー</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"47\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ホットキー&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"125\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"128\"/>\n        <source>Index filter</source>\n        <translation>インデックス フィルター</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"131\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Index filter&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;インデックス フィルター&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"163\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"166\"/>\n        <source>Remove hot key</source>\n        <translation>ホットキーを削除</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ホットキーを削除&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"191\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"194\"/>\n        <source>Add hot key</source>\n        <translation>ホットキーを追加</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"197\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ホットキーを追加&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <location filename=\"../include/commands.h\" line=\"21\"/>\n        <location filename=\"../include/commands.h\" line=\"66\"/>\n        <source>Change %1 to &quot;%2&quot;</source>\n        <translation>%1 を &quot;%2&quot; に変更</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"35\"/>\n        <source>Insert %1 entry &quot;%2&quot; at position %3</source>\n        <translation>%1 エントリ &quot;%2&quot; を位置 %3 に挿入</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"50\"/>\n        <source>Remove %1 entry &quot;%2&quot; from position %3</source>\n        <translation>位置 %3 から %1 エントリ &quot;%2&quot; を削除</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"73\"/>\n        <location filename=\"../src/commands.cpp\" line=\"116\"/>\n        <source>Move %1 entry &quot;%2&quot; from position %3 to %4</source>\n        <translation>%1 エントリ &quot;%2&quot; を位置 %3 から %4 に移動</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <location filename=\"../include/commands.h\" line=\"157\"/>\n        <location filename=\"../include/commands.h\" line=\"198\"/>\n        <source>Change %1 entry &quot;%2&quot; %3 to &quot;%4&quot;</source>\n        <translation>%1 エントリ &quot;%2&quot; %3 を &quot;%4&quot; に変更</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <source>Optional data</source>\n        <translation>オプションデータ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"227\"/>\n        <source>Insert %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation>%1 エントリ &quot;%2&quot; ファイルパスを位置 %3 に挿入</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"242\"/>\n        <source>Remove %1 entry &quot;%2&quot; file path from position %3</source>\n        <translation>位置 %3 から %1 エントリ &quot;%2&quot; ファイル パスを削除</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"257\"/>\n        <source>Set %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation>%1 エントリ &quot;%2&quot; ファイルパスを位置 %3 に設定</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <source>Insert %1 entry at position %2</source>\n        <translation>位置 %2 に %1 エントリを挿入</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>Key</source>\n        <translation>キー</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <source>Remove %1 entry from position %2</source>\n        <translation>位置 %2 から %1 エントリを削除</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <location filename=\"../include/commands.h\" line=\"362\"/>\n        <location filename=\"../include/commands.h\" line=\"403\"/>\n        <source>Change %1 entry at position %2 %3 to &quot;%4&quot;</source>\n        <translation>位置 %2 %3 の %1 エントリを &quot;%4&quot; に変更</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>keys</source>\n        <translation>キー</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"293\"/>\n        <location filename=\"../src/commands.cpp\" line=\"333\"/>\n        <source>Move %1 entry &quot;%2&quot; file path from position %3 to %4</source>\n        <translation>%1 エントリ &quot;%2&quot; ファイルパスを位置 %3 から %4 に移動</translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/efibooteditor_ko.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"ko_KR\" sourcelanguage=\"en_US\">\n<context>\n    <name>BootEntryForm</name>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"169\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"172\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"182\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"185\"/>\n        <source>Description</source>\n        <translation>설명</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"198\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"201\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"204\"/>\n        <source>Path</source>\n        <translation>경로</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"415\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"418\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"478\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"481\"/>\n        <source>Optional data</source>\n        <translation>선택적 데이터</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"421\"/>\n        <source>Optional</source>\n        <translation>옵션</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"434\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"437\"/>\n        <source>Optional data format</source>\n        <translation>선택적 데이터 형식</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"6\"/>\n        <source>Boot entry form</source>\n        <translation>부팅 입력 양식</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"24\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"27\"/>\n        <source>Error</source>\n        <translation>오류</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"40\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"43\"/>\n        <source>Error note</source>\n        <translation>오류 참고</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"46\"/>\n        <source>This entry placeholder is shown here to indicate it&apos;s referenced in boot order. It won&apos;t be modified on save, just left as is.</source>\n        <translation>이 입력 자리 표시자는 부팅 순서로 참조됨을 나타내기 위해 여기에 표시됩니다. 저장 시 수정되지 않고 그대로 둡니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"147\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"150\"/>\n        <source>Hot Keys</source>\n        <translation>단축키</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;단축키&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"188\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry description.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;항목 설명.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"222\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"225\"/>\n        <source>Device path</source>\n        <translation>장치 경로</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;장치 경로.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"280\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"283\"/>\n        <source>Move file path up</source>\n        <translation>파일 경로 위로 이동</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"286\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;파일 경로 위로 이동.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"305\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"308\"/>\n        <source>Move file path down</source>\n        <translation>파일 경로 아래로 이동</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"311\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;파일 경로 아래로 이동.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"330\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"333\"/>\n        <source>Remove file path</source>\n        <translation>파일 경로 제거</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"336\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;파일 경로 제거.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"355\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"358\"/>\n        <source>Edit file path</source>\n        <translation>파일 경로 편집</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"361\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Edit file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;파일 경로 편집.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"380\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"383\"/>\n        <source>Add file path</source>\n        <translation>파일 경로 추가</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;파일 경로 추가.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;선택적 데이터 형식.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"444\"/>\n        <source>BASE64</source>\n        <translation>BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"449\"/>\n        <source>UTF-16</source>\n        <translation>UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"454\"/>\n        <source>UTF-8</source>\n        <translation>UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"459\"/>\n        <source>HEX</source>\n        <translation>HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"484\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry optional data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;선택적 데이터 항목.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"497\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"500\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"503\"/>\n        <source>Attributes</source>\n        <translation>속성</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"623\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry category.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;항목 범주.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"122\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;항목 인덱스.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"540\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Is entry considered for automatic boot?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;자동 부팅 시 항목이 고려됩니까?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"569\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hidden.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;숨김.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"585\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Force reconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;강제 재연결.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"534\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"537\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"543\"/>\n        <source>Active</source>\n        <translation>활성</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"579\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"582\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"588\"/>\n        <source>Force reconnect</source>\n        <translation>강제 재연결</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"563\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"566\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"572\"/>\n        <source>Hidden</source>\n        <translation>숨김</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"598\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"601\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"604\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"617\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"620\"/>\n        <source>Category</source>\n        <translation>범주</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"627\"/>\n        <source>Boot</source>\n        <translation>부팅</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"632\"/>\n        <source>App</source>\n        <translation>앱</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"68\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"71\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"74\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"116\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"119\"/>\n        <source>Index</source>\n        <translation>인덱스</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentryform.cpp\" line=\"117\"/>\n        <source>Couldn&apos;t change optional data format!</source>\n        <translation>선택적 데이터 형식을 변경할 수 없습니다!</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryListModel</name>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"88\"/>\n        <source>Set Next boot to &quot;%1&quot;</source>\n        <translation>다음 부팅을 &quot;%1&quot;로 설정</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"184\"/>\n        <source>index</source>\n        <translation>색인</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"200\"/>\n        <source>description</source>\n        <translation>설명</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"237\"/>\n        <source>optional data</source>\n        <translation>선택적 데이터</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"253\"/>\n        <source>attributes</source>\n        <translation>속성</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"269\"/>\n        <source>next boot</source>\n        <translation>다음 부팅</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryWidget</name>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"12\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"221\"/>\n        <source>Boot entry</source>\n        <translation>부팅 항목</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"36\"/>\n        <source>Next boot</source>\n        <translation>다음 부팅</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"39\"/>\n        <source>Run at next boot</source>\n        <translation>다음 부팅 시 실행</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"42\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;When chosen, entry will run at next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;이 옵션을 선택하면 다음 부팅 시 항목이 실행됩니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"140\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"143\"/>\n        <source>Current boot</source>\n        <translation>현재 부팅</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This entry is currently booted.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;이 항목은 현재 부팅입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"181\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;부트 항목 인덱스.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"218\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry description, human readable name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;부팅 항목 설명, 사용자가 읽을 수 있는 이름입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"67\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"70\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"76\"/>\n        <source>Device path</source>\n        <translation>장치 경로</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"73\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;부팅 장치 경로입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"113\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data, arguments passed to boot executable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;실행 파일을 부팅하기 위해 인수를 전달한 선택적 데이터입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"178\"/>\n        <source>Boot entry index</source>\n        <translation>부팅 항목 인덱스</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"184\"/>\n        <source>Index</source>\n        <translation>인덱스</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"212\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"215\"/>\n        <source>Boot entry description</source>\n        <translation>부팅 항목 설명</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"107\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"110\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"116\"/>\n        <source>Optional data</source>\n        <translation>선택적 데이터</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootData</name>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"111\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"813\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1027\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1361\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1472\"/>\n        <source>%1: not found</source>\n        <translation>%1: 찾을 수 없음</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"120\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"821\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1387\"/>\n        <source>%1: failed deserialization</source>\n        <translation>%1: 역직렬화 실패</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Error loading entries</source>\n        <translation>항목 로드 중 오류</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Failed to load some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>일부 EFI 부팅 관리자 항목을 로드하지 못했습니다:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Error saving entries</source>\n        <translation>항목 저장 중 오류 발생</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Entry %1(%2): duplicated index!</source>\n        <translation>%1(%2) 항목: 중복된 인덱스!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"389\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"419\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"458\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"479\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"487\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"516\"/>\n        <source>Error saving %1</source>\n        <translation>%1 저장 중 오류</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"407\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"470\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"504\"/>\n        <source>Error removing %1</source>\n        <translation>%1 제거 중 오류</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Error importing boot configuration</source>\n        <translation>부팅 구성 가져오기 오류</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <source>Couldn&apos;t open selected file (%1).</source>\n        <translation>선택한 파일(%1)을(를) 열 수 없습니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <source>Parser failed: %1</source>\n        <translation>파서 실패: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <source>Invalid _Type: %1</source>\n        <translation>잘못된 _유형: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <source>Error exporting boot configuration</source>\n        <translation>부팅 구성 내보내기 오류</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <source>Couldn&apos;t open selected file (%1): %2.</source>\n        <translation>선택한 파일 (%1): %2을(를) 열 수 없습니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <source>Couldn&apos;t write into file (%1): %2.</source>\n        <translation>파일 (%1): %2에 쓸 수 없습니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Error dumping raw EFI data</source>\n        <translation>원시 EFI 데이터 덤프 오류</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Failed to dump some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>일부 EFI 부팅 관리자 항목을 덤프하지 못했습니다:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"905\"/>\n        <source>Timeout</source>\n        <translation>시간 초과</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"921\"/>\n        <source>Apple boot-args</source>\n        <translation>Apple boot-args</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"937\"/>\n        <source>Firmware actions</source>\n        <translation>펌웨어 동작</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"73\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation>EFI 부팅 관리자 항목 로드 중…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"89\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"787\"/>\n        <source>Searching EFI Boot Manager entries…</source>\n        <translation>EFI 부팅 관리자 항목 검색 중…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"116\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"292\"/>\n        <source>Processing EFI Boot Manager entries (%1)…</source>\n        <translation>EFI 부팅 관리자 항목(%1)을(를) 처리하는 중…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"308\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation>EFI 부팅 관리자 항목 저장 중…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"333\"/>\n        <source>Searching old EFI Boot Manager entries…</source>\n        <translation>이전 EFI 부팅 관리자 항목 검색 중…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"374\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"416\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"447\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"476\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"484\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"491\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"513\"/>\n        <source>Saving EFI Boot Manager entries (%1)…</source>\n        <translation>EFI 부팅 관리자 항목 저장 중(%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"467\"/>\n        <source>Removing old EFI Boot Manager entries (%1)…</source>\n        <translation>이전 EFI 부팅 관리자 항목(%1)을(를) 제거하는 중…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"404\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"501\"/>\n        <source>Removing EFI Boot Manager entries (%1)…</source>\n        <translation>EFI 부팅 관리자 항목(%1)을(를) 제거하는 중…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"94\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"338\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"792\"/>\n        <source>Couldn&apos;t load EFI Boot Manager variables</source>\n        <translation>EFI Boot Manager 변수를 적재 할 수 없습니다</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"100\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"799\"/>\n        <source>Couldn&apos;t find any EFI Boot Manager variables</source>\n        <translation>EFI Boot Manager 변수를 찾을 수 없습니다</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"529\"/>\n        <source>Importing boot configuration…</source>\n        <translation>부팅 구성을 가져오는 중…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"565\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"770\"/>\n        <source>Exporting boot configuration…</source>\n        <translation>부팅 구성을 내보내는 중…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"587\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"809\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"875\"/>\n        <source>Exporting EFI Boot Manager entries (%1)…</source>\n        <translation>EFI 부팅 관리자 항목 내보내기 (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1013\"/>\n        <source>Importing boot configuration from JSON…</source>\n        <translation>JSON에서 부팅 구성을 가져오는 중…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1032\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1366\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1477\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1531\"/>\n        <source>Importing EFI Boot Manager entries (%1)…</source>\n        <translation>EFI 부팅 관리자 항목을 가져오는 중 (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1035\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1376\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>%1: %2 expected</source>\n        <translation>%1: %2 예상됨</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1043\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1048\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1053\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <source>number</source>\n        <translation>번호</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1058\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1063\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1068\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1073\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1078\"/>\n        <source>bool</source>\n        <translation>bool</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1109\"/>\n        <source>%1: unknown boot manager capability</source>\n        <translation>%1: 알 수 없는 부팅 관리자 기능</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1122\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1166\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1212\"/>\n        <source>array</source>\n        <translation>배열</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1333\"/>\n        <source>string</source>\n        <translation>문자열</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1156\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1192\"/>\n        <source>%1: unknown os indication</source>\n        <translation>%1: 알 수 없는 OS 표시</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1083\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1235\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1264\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1290\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1309\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1328\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>object</source>\n        <translation>개체</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <source>hexadecimal number</source>\n        <translation>16진수</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1270\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1315\"/>\n        <source>%1: failed parsing</source>\n        <translation>%1: 구문 분석 실패</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Failed to import some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>일부 EFI 부팅 관리자 항목을 가져오지 못했습니다:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1347\"/>\n        <source>Importing boot configuration from raw dump…</source>\n        <translation>원시 덤프에서 부팅 구성 가져오기 중…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1379\"/>\n        <source>object(raw_data: string, efi_attributes: number)</source>\n        <extracomment>Expected JSON structure, thrown as error description. raw_data and efi_attributes are field names in JSON file</extracomment>\n        <translation>object(raw_data: string, efi_attributes: number)</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"15\"/>\n        <source>Boot</source>\n        <translation>부팅</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"16\"/>\n        <source>Driver</source>\n        <translation>드라이버</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"17\"/>\n        <source>System Preparation</source>\n        <translation>시스템 준비</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"18\"/>\n        <source>Platform Recovery</source>\n        <translation>플랫폼 복구</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditor</name>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"18\"/>\n        <source>EFI Boot Editor</source>\n        <translation>EFI 부팅 편집기</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"71\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"412\"/>\n        <source>Boot</source>\n        <translation>부팅</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"74\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"98\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"101\"/>\n        <source>Boot entries</source>\n        <translation>부팅 항목</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"77\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"104\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Boot entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;부팅 항목 목록.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"133\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"415\"/>\n        <source>Driver</source>\n        <translation>드라이버</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"136\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"160\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"163\"/>\n        <source>Driver entries</source>\n        <translation>드라이버 항목</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"139\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"166\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Driver entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;드라이버 항목 목록.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"195\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"418\"/>\n        <source>System Preparation</source>\n        <translation>시스템 준비</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"198\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"222\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"225\"/>\n        <source>SysPrep entries</source>\n        <translation>시스템 항목</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"201\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of SysPrep entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SysPrep 항목 목록.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"257\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"421\"/>\n        <source>Platform Recovery</source>\n        <translation>플랫폼 복구</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"260\"/>\n        <source>PlatformRecovery entries</source>\n        <translation>플랫폼 복구 항목</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"263\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of PlatformRecovery entries (READONLY).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;플랫폼 복구 항목 목록 (읽기 전용)입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"284\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"287\"/>\n        <source>PlatformRecovery entries (READONLY)</source>\n        <translation>플랫폼 복구 항목 (읽기 전용)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"346\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"349\"/>\n        <source>Add new entry</source>\n        <translation>새 항목 추가</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"352\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to add new boot entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;새 부팅 항목을 추가하려면 이 옵션을 클릭합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"377\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"380\"/>\n        <source>Duplicate entry</source>\n        <translation>중복 항목</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"383\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Duplicate entry&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;중복 항목&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"408\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"411\"/>\n        <source>Remove entry</source>\n        <translation>항목 제거</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"414\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to remove currently selected entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;현재 선택한 항목을 제거하려면 이 옵션을 클릭합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"439\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"442\"/>\n        <source>Move entry up</source>\n        <translation>항목을 위로 이동</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"445\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;현재 선택한 항목을 위로 이동하려면 이 옵션을 클릭합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"470\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"473\"/>\n        <source>Move entry down</source>\n        <translation>항목을 아래로 이동</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"476\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;현재 선택한 항목을 아래로 이동하려면 이 옵션을 클릭합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"501\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"504\"/>\n        <source>Reorder entries</source>\n        <translation>항목 순서를 다시 정렬</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"507\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click here to adjust the order of all entries based on their position on the list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;목록에서 모든 항목의 위치를 기준으로 모든 항목의 순서를 조정하려면 여기를 클릭하세요.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"599\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"608\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Global settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;전역 설정.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"602\"/>\n        <source>Global</source>\n        <translation>전역 설정</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"632\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"635\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"654\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"657\"/>\n        <source>Boot manager timeout</source>\n        <translation>부팅 관리자 시간 초과</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"638\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"660\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot manager timeout.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;부팅 관리자 시간 초과입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"663\"/>\n        <source>s</source>\n        <translation>초</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"674\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"677\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"686\"/>\n        <source>Firmware details</source>\n        <translation>펌웨어 상세정보</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"680\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"689\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;펌웨어 상세정보입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"683\"/>\n        <source>Firmware</source>\n        <translation>펌웨어</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"719\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"722\"/>\n        <source>Available firmware features</source>\n        <translation>사용 가능한 펌웨어 기능</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"725\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware features.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;사용 가능한 펌웨어 기능입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"728\"/>\n        <source>Features</source>\n        <translation>기능</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"737\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"740\"/>\n        <source>Platform supports reporting of deferred capsule processing by creation of result variable</source>\n        <translation>플랫폼은 결과 변수를 생성하여 지연 캡슐 처리 보고 지원</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"743\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports reporting of deferred capsule processing by creation of result variable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;플랫폼은 결과 변수를 생성하여 지연 캡슐 처리 보고를 지원합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"746\"/>\n        <source>Capsule Reporting</source>\n        <translation>캡슐 보고</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"756\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"759\"/>\n        <source>Firmware supports timestamp based revocation</source>\n        <translation>펌웨어는 타임스탬프 기반 취소 지원</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"762\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware supports timestamp based revocation.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;펌웨어는 타임스탬프 기반 취소를 지원합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"765\"/>\n        <source>Timestamp based revocation</source>\n        <translation>타임스탬프 기반 취소</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"775\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"778\"/>\n        <source>Platform supports processing of Firmware Management Protocol update capsule</source>\n        <translation>플랫폼에서 펌웨어 관리 프로토콜 업데이트 캡슐 처리 지원</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"781\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of Firmware Management Protocol update capsule.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;플랫폼은 펌웨어 관리 프로토콜 업데이트 캡슐 처리를 지원합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"784\"/>\n        <source>FMP Capsule</source>\n        <translation>FMP 캡슐</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"794\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"797\"/>\n        <source>Platform supports processing of file capsules</source>\n        <translation>플랫폼에서 파일 캡슐 처리 지원</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"800\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of file capsules.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;플랫폼은 파일캡슐 처리를 지원합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"803\"/>\n        <source>File Capsule</source>\n        <translation>파일 캡슐</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"828\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"831\"/>\n        <source>Available firmware actions</source>\n        <translation>사용 가능한 펌웨어 작업</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware actions.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;사용 가능한 펌웨어 작업입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"837\"/>\n        <source>Actions</source>\n        <translation>동작</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"846\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"849\"/>\n        <source>Stop at a firmware user interface on the next boot</source>\n        <translation>다음 부팅 시 펌웨어 사용자 인터페이스에서 중지</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Stop at a firmware user interface on the next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;다음 부팅 시 펌웨어 사용자 인터페이스에서 중지합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"855\"/>\n        <source>Boot to firmware UI</source>\n        <translation>펌웨어 UI로 부팅</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"862\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"865\"/>\n        <source>Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot</source>\n        <translation>현재 구성 수집을 트리거하고 다음 부팅 시 새로 고침된 데이터를 EFI 시스템 구성 테이블에 보고</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;현재 구성 수집을 트리거하고 다음 부팅 시 새로 고침된 데이터를 EFI 시스템 구성 테이블에 보고합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"871\"/>\n        <source>Collect current config</source>\n        <translation>현재 구성 수집</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"878\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"881\"/>\n        <source>Indicate that Platform-defined recovery should commence upon reboot</source>\n        <translation>재부팅 시 플랫폼 정의 복구를 시작해야 함을 나타냅니다</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"884\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that Platform-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;재부팅 시 플랫폼 정의 복구를 시작해야 함을 나타냅니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"887\"/>\n        <source>Start Platform recovery</source>\n        <translation>플랫폼 복구 시작</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"894\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"897\"/>\n        <source>Indicate that OS-defined recovery should commence upon reboot</source>\n        <translation>재부팅 시 OS 정의 복구를 시작해야 함을 나타냅니다</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"900\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that OS-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;재부팅 시 OS 정의 복구를 시작해야 함을 나타냅니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"903\"/>\n        <source>Start OS recovery</source>\n        <translation>OS 복구 시작</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"932\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"935\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"944\"/>\n        <source>Secure boot settings</source>\n        <translation>보안 부팅 설정</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"938\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"947\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Secure boot settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;보안 부팅 설정입니다&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"941\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1025\"/>\n        <source>Secure Boot</source>\n        <translation>보안 부팅</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"978\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"981\"/>\n        <source>Defines whether the system is currently operating in Audit Mode</source>\n        <translation>시스템이 현재 감사 모드로 작동 중인지 여부를 정의</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"984\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Audit Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;시스템이 현재 감사 모드로 작동 중인지 여부를 정의합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"987\"/>\n        <source>Audit Mode</source>\n        <translation>감사 모드</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"997\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1000\"/>\n        <source>Defines whether the system is currently operating in Deployed Mode</source>\n        <translation>시스템이 현재 배포 모드로 작동 중인지 여부를 정의</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1003\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Deployed Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;시스템이 현재 배포 모드로 작동 중인지 여부를 정의합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1006\"/>\n        <source>Deployed Mode</source>\n        <translation>배포 모드</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1016\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1019\"/>\n        <source>Defines whether the platform firmware is operating with Secure Boot enabled</source>\n        <translation>플랫폼 펌웨어가 보안 부팅이 활성화된 상태에서 작동하는지 여부를 정의</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1022\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the platform firmware is operating with Secure Boot enabled.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;플랫폼 펌웨어가 보안 부팅이 활성화된 상태에서 작동하는지 여부를 정의합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1035\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1038\"/>\n        <source>Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables</source>\n        <translation>Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1041\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;시스템에서 보안 부팅 정책 변수에 대한 요청 시 인증이 필요한지 여부를 정의합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1044\"/>\n        <source>Setup Mode</source>\n        <translation>설정 모드</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1054\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1057\"/>\n        <source>Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys</source>\n        <translation>플랫폼 공급업체가 아닌 다른 사용자가 보안 부팅 정책 변수를 수정했는지 또는 벤더가 제공한 키를 보유했는지 여부를 정의</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;플랫폼 공급업체가 아닌 다른 사용자가 보안 부팅 정책 변수를 수정했는지 또는 벤더가 제공한 키를 보유했는지 여부를 정의합니다&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1063\"/>\n        <source>Vendor Keys</source>\n        <translation>공급업체 키</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1074\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1077\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1086\"/>\n        <source>Apple settings</source>\n        <translation>Apple 설정</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1080\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apple settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apple 설정.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1083\"/>\n        <source>Apple</source>\n        <translation>Apple</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1113\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1116\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1129\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1132\"/>\n        <source>macOS boot arguments</source>\n        <translation>macOS 부팅 인수</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1119\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;macOS boot arguments.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;macOS 부팅 인수.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1161\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1164\"/>\n        <source>Undo stack</source>\n        <translation>스택 실행 취소</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1167\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo stack&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;스택 실행 취소&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1194\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;파일 메뉴입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1214\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Help menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;도움말 메뉴입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1255\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Exit the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;프로그램를 종료합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1272\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apply changes to the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;시스템에 변경사항을 적용합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1289\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reloads EFI data from the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;시스템에서 EFI 데이터를 다시 로드합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1306\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Show information about the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;프로그램에 대한 정보를 표시합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1320\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Export current entries into JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;현재 항목을 JSON으로 내보냅니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1337\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Import EFI data from JSON dump.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;JSON 덤프에서 EFI 데이터를 가져옵니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1354\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dumps raw EFI data for debugging purposes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;디버깅 목적으로 원시 EFI 데이터를 덤프합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1362\"/>\n        <source>&amp;Undo</source>\n        <translation>실행 취소(&amp;U)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1365\"/>\n        <source>Undo</source>\n        <translation>실행 취소</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1368\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;실행 취소&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1371\"/>\n        <source>Ctrl+Z</source>\n        <translation>Ctrl+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1379\"/>\n        <source>&amp;Redo</source>\n        <translation>다시 실행(&amp;R)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1382\"/>\n        <source>Redo</source>\n        <translation>다시 실행</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1385\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Redo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;다시 실행&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1388\"/>\n        <source>Ctrl+Shift+Z</source>\n        <translation>Ctrl+Shift+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1396\"/>\n        <source>Hot &amp;keys</source>\n        <translation>단축키(&amp;K)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1399\"/>\n        <source>Hot Keys</source>\n        <translation>단축키</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1402\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;단축키&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"593\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"596\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"605\"/>\n        <source>Global settings</source>\n        <translation>전역 설정</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"641\"/>\n        <source>Timeout</source>\n        <translation>시간 초과</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1122\"/>\n        <source>Boot args</source>\n        <translation>부팅 배열</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1188\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1191\"/>\n        <source>File</source>\n        <translation>파일</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1197\"/>\n        <source>&amp;File</source>\n        <translation>파일(&amp;F)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1208\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1211\"/>\n        <source>Help</source>\n        <translation>도움말</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1217\"/>\n        <source>&amp;Help</source>\n        <translation>도움말(&amp;H)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1225\"/>\n        <source>&amp;Edit</source>\n        <translation>편집(&amp;E)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1249\"/>\n        <source>&amp;Quit</source>\n        <translation>끝내기(&amp;Q)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1252\"/>\n        <source>Quit</source>\n        <translation>끝내기</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1258\"/>\n        <source>Ctrl+Q</source>\n        <translation>Ctrl+Q</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1266\"/>\n        <source>&amp;Save</source>\n        <translation>저장(&amp;S)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1269\"/>\n        <source>Save</source>\n        <translation>저장</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1275\"/>\n        <source>Ctrl+S</source>\n        <translation>Ctrl+S</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1283\"/>\n        <source>&amp;Reload</source>\n        <translation>다시 로드(&amp;R)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1286\"/>\n        <source>Reload</source>\n        <translation>다시 로드</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1292\"/>\n        <source>Ctrl+R</source>\n        <translation>Ctrl+R</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1300\"/>\n        <source>About &amp;EFI Boot Editor</source>\n        <translation>EFI Boot Editor 정보(&amp;E)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1303\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"29\"/>\n        <source>About EFI Boot Editor</source>\n        <translation>EFI Boot Editor 정보</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1314\"/>\n        <source>&amp;Export</source>\n        <translation>내보내기(&amp;E)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1317\"/>\n        <source>Export</source>\n        <translation>내보내기</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1323\"/>\n        <source>Ctrl+E</source>\n        <translation>Ctrl+E</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1331\"/>\n        <source>&amp;Import</source>\n        <translation>가져오기(&amp;I)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1334\"/>\n        <source>Import</source>\n        <translation>가져오기</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1340\"/>\n        <source>Ctrl+I</source>\n        <translation>Ctrl+I</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1348\"/>\n        <source>&amp;Dump raw EFI data</source>\n        <translation>원시 EFI 데이터 덤프(&amp;D)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1351\"/>\n        <source>Dump raw EFI data</source>\n        <translation>원시 EFI 데이터 덤프</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"26\"/>\n        <source>Working…</source>\n        <translation>작업 중…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"92\"/>\n        <source>Undo %1</source>\n        <translation>%1 실행 취소</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"95\"/>\n        <source>Redo %1</source>\n        <translation>%1 다시 실행</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"137\"/>\n        <source>Are you sure you want to reload the entries?&lt;br/&gt;ALL of your changes will be lost!</source>\n        <translation>항목을 다시 로드하시겠습니까?&lt;br/&gt;모든 변경 내용이 손실됩니다!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"162\"/>\n        <source>Are you sure you want to reorder the boot entries?&lt;br/&gt;All indexes will be overwritten!</source>\n        <translation>부팅 항목을 다시 정렬하시겠습니까?&lt;br/&gt;모든 인덱스를 덮어씁니다!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"221\"/>\n        <source>Are you sure you want to save?&lt;br/&gt;Your EFI configuration will be overwritten!</source>\n        <translation>저장하시겠습니까?&lt;br/&gt;EFI 구성을 덮어씁니다!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <source>Open boot configuration dump</source>\n        <translation>부팅 구성 덤프 열기</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>JSON documents (*.json)</source>\n        <translation>JSON 문서 (*.json)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <source>Save boot configuration dump</source>\n        <translation>부팅 구성 덤프 저장</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>Save raw EFI dump</source>\n        <translation>원시 EFI 덤프 저장</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"31\"/>\n        <source>&lt;h1&gt;EFI Boot Editor&lt;/h1&gt;&lt;p&gt;Version &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Boot Editor for (U)EFI based systems.&lt;/p&gt;</source>\n        <extracomment>About dialog</extracomment>\n        <translation>&lt;h1&gt;EFI Boot Editor&lt;/h1&gt;&lt;p&gt;버전 &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;(U)EFI 기반 시스템용 부팅 편집기입니다.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"45\"/>\n        <source>&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;Website&lt;/a&gt;&lt;/p&gt;&lt;p&gt;The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.&lt;/p&gt;&lt;p&gt;License: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL Version 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;On Linux uses &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; for EFI variables access.&lt;/p&gt;&lt;p&gt;Uses Tango Icons as fallback icons.&lt;/p&gt;</source>\n        <extracomment>About dialog details</extracomment>\n        <translation>&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;웹사이트&lt;/a&gt;&lt;/p&gt;&lt;p&gt;이 프로그램은 디자인, 상품성 및 특정 목적에 대한 적합성에 대한 보증을 포함하여 어떤 종류의 보증도 없이 그대로 제공됩니다.&lt;/p&gt;&lt;p&gt;라이선스: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL 버전 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Linux에서는 EFI 변수 액세스를 위해 &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt;를 사용합니다.&lt;/p&gt;&lt;p&gt;Tango 아이콘을 대체 아이콘으로 사용합니다.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"330\"/>\n        <source>Reorder %1 entries</source>\n        <translation>%1개 항목의 순서 변경</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"453\"/>\n        <source>Are you sure you want to quit?</source>\n        <translation>정말 그만두시겠습니까?</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"123\"/>\n        <source>EFI support required</source>\n        <translation>EFI 지원 필요</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditorCLI</name>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"13\"/>\n        <source>Boot Editor for (U)EFI based systems.</source>\n        <translation>U)EFI 기반 시스템용 부팅 편집기입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <source>Export configuration.</source>\n        <translation>구성 내보내기.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>FILE</source>\n        <translation>파일</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <source>Dump raw EFI data.</source>\n        <translation>원시 EFI 데이터를 덤프합니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>Import configuration from JSON (either from export or raw dump).</source>\n        <translation>JSON에서 구성을 가져옵니다 (내보내기 또는 원시 덤프에서).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"19\"/>\n        <source>Force import, don&apos;t ask for confirmation.</source>\n        <translation>강제 가져오기, 확인 요청하지 않습니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"26\"/>\n        <source>EFI support required</source>\n        <translation>EFI 지원 필요</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"45\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation>EFI 부팅 관리자 항목 로드 중…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"47\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"57\"/>\n        <source>Exporting boot configuration…</source>\n        <translation>부팅 구성 내보내는 중…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"67\"/>\n        <source>Importing boot configuration…</source>\n        <translation>부팅 구성 가져오는 중…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Loaded %0 %1 entries</source>\n        <translation>%0 %1 항목 로드됨</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <source>Boot</source>\n        <translation>부팅</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <source>Driver</source>\n        <translation>드라이버</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <source>System Preparation</source>\n        <translation>시스템 준비</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Hot Key</source>\n        <translation>단축키</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"78\"/>\n        <source>Are you sure you want to save?\nYour EFI configuration will be overwritten!</source>\n        <translation>저장하시겠습니까?\nEFI 구성을 덮어씁니다!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"86\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation>EFI 부팅 관리자 항목 저장 중…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"98\"/>\n        <source>ERROR: %0! %1</source>\n        <translation>오류: %0! %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"114\"/>\n        <source>Finished</source>\n        <translation>마침</translation>\n    </message>\n</context>\n<context>\n    <name>EFIKeySequenceEdit</name>\n    <message>\n        <location filename=\"../src/efikeysequenceedit.cpp\" line=\"109\"/>\n        <source>Press hot key</source>\n        <translation>단축키 누르기</translation>\n    </message>\n</context>\n<context>\n    <name>FilePathDialog</name>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"12\"/>\n        <source>File path editor</source>\n        <translation>파일 경로 편집기</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"47\"/>\n        <source>PCI</source>\n        <translation>PCI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"80\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"86\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"196\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"202\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"218\"/>\n        <source>Function</source>\n        <translation>기능</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"121\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"127\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"143\"/>\n        <source>Device</source>\n        <translation>장치</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"721\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"727\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"742\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"835\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"841\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"856\"/>\n        <source>HID</source>\n        <translation>HID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"761\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"767\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"782\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"896\"/>\n        <source>UID</source>\n        <translation>UID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1813\"/>\n        <source>USB</source>\n        <translation>USB</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1819\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB 설정.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1893\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1909\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3688\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3710\"/>\n        <source>Interface</source>\n        <translation>인터페이스</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7442\"/>\n        <source>Vendor</source>\n        <translation>공급업체</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7445\"/>\n        <source>Vendor settings</source>\n        <translation>공급업체 설정</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7448\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;공급업체 설정입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1778\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1793\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5824\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6348\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7117\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7546\"/>\n        <source>GUID</source>\n        <translation>GUID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5539\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7587\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7850\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7853\"/>\n        <source>Data format</source>\n        <translation>데이터 형식</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5542\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7590\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7856\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;데이터 형식입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5546\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5869\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7860\"/>\n        <source>BASE64</source>\n        <translation>BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1168\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5551\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5874\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7865\"/>\n        <source>UTF-16</source>\n        <translation>UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1173\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5556\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7604\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7870\"/>\n        <source>UTF-8</source>\n        <translation>UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5561\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7875\"/>\n        <source>HEX</source>\n        <translation>HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5523\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5901\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7888\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7891\"/>\n        <source>Data</source>\n        <translation>데이터</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7894\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;데이터입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7565\"/>\n        <source>Vendor data</source>\n        <translation>공급 업체 데이터</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7481\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7757\"/>\n        <source>Type</source>\n        <translation>유형</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7478\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7500\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;유형입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7504\"/>\n        <source>HW</source>\n        <translation>HW</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7509\"/>\n        <source>MSG</source>\n        <translation>MSG</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7514\"/>\n        <source>MEDIA</source>\n        <translation>MEDIA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2292\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2298\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2313\"/>\n        <source>MAC</source>\n        <translation>MAC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2265\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;MAC settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;MAC 설정입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2374\"/>\n        <source>IPv4</source>\n        <translation>IPv4</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2380\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv4 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv4 설정입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2569\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2591\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2925\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2931\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2947\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4110\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4116\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4132\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6616\"/>\n        <source>Protocol</source>\n        <translation>프로토콜</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3003\"/>\n        <source>Static</source>\n        <translation>고정</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2692\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Subnet mask.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Subnet mask.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2730\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5479\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5486\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5503\"/>\n        <source>IPv6</source>\n        <translation>IPv6</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2736\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv6 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv6 설정입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3008\"/>\n        <source>Stateless auto-configuration</source>\n        <translation>상태 비저장 자동 구성</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3013\"/>\n        <source>Stateful auto-configuration</source>\n        <translation>상태 저장 자동 구성</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3920\"/>\n        <source>SATA</source>\n        <translation>SATA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SATA settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SATA 설정입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1387\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1393\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1409\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1658\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1664\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1679\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3900\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4035\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4041\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4057\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4191\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4197\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4212\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4496\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4502\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4610\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4616\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4988\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5009\"/>\n        <source>LUN</source>\n        <translation>LUN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4885\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4901\"/>\n        <source>URI</source>\n        <translation>URI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6105\"/>\n        <source>Disk</source>\n        <translation>디스크</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6102\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;디스크입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6123\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6126\"/>\n        <source>Choose disk</source>\n        <translation>디스크 선택</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6129\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Choose disk from discovered in the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;시스템에서 검색된 디스크를 선택합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6133\"/>\n        <source>Custom</source>\n        <translation>사용자 지정</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6147\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6150\"/>\n        <source>Reload drives</source>\n        <translation>드라이브 다시 로드</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reload system drives list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;시스템 드라이브 목록을 다시 로드합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6343\"/>\n        <source>MBR</source>\n        <translation>MBR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6177\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6183\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6199\"/>\n        <source>Partition</source>\n        <translation>파티션</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6720\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6741\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6797\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6812\"/>\n        <source>Name</source>\n        <translation>이름</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7176\"/>\n        <source>BIOS Boot Specification</source>\n        <translation>BIOS 부팅 사양</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7405\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7411\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7427\"/>\n        <source>Description</source>\n        <translation>설명</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7639\"/>\n        <source>End</source>\n        <translation>끝</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7669\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7672\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7678\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7797\"/>\n        <source>Sub-Type</source>\n        <translation>하위 유형</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7675\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7697\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;하위 유형.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7701\"/>\n        <source>End This Instance</source>\n        <translation>이 인스턴스 종료</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7706\"/>\n        <source>End Entire</source>\n        <translation>끝 항목</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7718\"/>\n        <source>Unknown</source>\n        <translation>알 수 없음</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"50\"/>\n        <source>The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.</source>\n        <translation>PCI용 장치 경로는 PCI 장치에 대한 PCI 구성 공간 주소의 경로를 정의합니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"53\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI용 장치 경로는 PCI 장치에 대한 PCI 구성 공간 주소의 경로를 정의합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"77\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"99\"/>\n        <source>PCI Function Number.</source>\n        <translation>PCI 기능 번호.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"83\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"105\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Function Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI 기능 번호.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"118\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"140\"/>\n        <source>PCI Device Number.</source>\n        <translation>PCI 장치 번호.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"124\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Device Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI 장치 번호.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"163\"/>\n        <source>PCCARD</source>\n        <translation>PCCARD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"166\"/>\n        <source>PCCARD Settings.</source>\n        <translation>PCCARD 설정.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCCARD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCCARD 설정.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"193\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"215\"/>\n        <source>Function Number (0 = First Function).</source>\n        <translation>기능 번호 (0 = 첫 번째 기능).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"199\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"221\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Function Number (0 = First Function).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;기능 번호 (0 = 첫 번째 기능).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"238\"/>\n        <source>Memory Mapped</source>\n        <translation>메모리 맵</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"241\"/>\n        <source>Memory Mapped Settings.</source>\n        <translation>메모리 맵 설정.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Memory Mapped Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;메모리 맵 설정.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"268\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"290\"/>\n        <source>The type of memory to allocate.</source>\n        <translation>할당하려는 메모리 유형.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"271\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"293\"/>\n        <source>Memory Type</source>\n        <translation>메모리 유형</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"274\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"296\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The type of memory to allocate.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;할당하려는 메모리 유형.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"300\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1584\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1738\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1753\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3145\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3160\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4416\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4437\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6868\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6883\"/>\n        <source>Reserved</source>\n        <translation>예약됨</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"305\"/>\n        <source>Loader Code</source>\n        <translation>로더 코드</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"310\"/>\n        <source>Loader Data</source>\n        <translation>로더 데이터</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"315\"/>\n        <source>Boot Services Code</source>\n        <translation>부팅 서비스 코드</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"320\"/>\n        <source>Boot Services Data</source>\n        <translation>부팅 서비스 데이터</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"325\"/>\n        <source>Runtime Services Code</source>\n        <translation>런타임 서비스 코드</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"330\"/>\n        <source>Runtime Services Data</source>\n        <translation>런타임 서비스 데이터</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"335\"/>\n        <source>Conventional</source>\n        <translation>기존</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"340\"/>\n        <source>Unusable</source>\n        <translation>사용할 수 없음</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"345\"/>\n        <source>ACPI Reclaim</source>\n        <translation>ACPI 저감</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"350\"/>\n        <source>ACPI Memory NVS</source>\n        <translation>ACPI 메모리 NVS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"355\"/>\n        <source>Memory Mapped IO</source>\n        <translation>메모리 매핑 IO</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"360\"/>\n        <source>Memory Mapped IO Port Space</source>\n        <translation>메모리 매핑 IO 포트 공간</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"365\"/>\n        <source>Pal Code</source>\n        <translation>Pal 코드</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"370\"/>\n        <source>Persistent</source>\n        <translation>지속적</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"375\"/>\n        <source>Unaccepted</source>\n        <translation>수락되지 않음</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"383\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7013\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7034\"/>\n        <source>Starting Memory Address.</source>\n        <translation>시작 메모리 주소입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"386\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"407\"/>\n        <source>Start Address</source>\n        <translation>시작 메모리</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"389\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7019\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7040\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;시작 메모리 주소입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"423\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7053\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7074\"/>\n        <source>Ending Memory Address.</source>\n        <translation>끝 메모리 주소입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"426\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"432\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"447\"/>\n        <source>End Address</source>\n        <translation>끝 메모리</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"429\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7080\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ending Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;끝 메모리 주소입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"467\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"522\"/>\n        <source>Controller</source>\n        <translation>컨트롤러</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"470\"/>\n        <source>Controller settings.</source>\n        <translation>컨트롤러 설정입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"473\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;컨트롤러 설정입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"519\"/>\n        <source>Controller number.</source>\n        <translation>컨트롤러 번호입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"525\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;컨트롤러 번호입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"542\"/>\n        <source>BMC</source>\n        <translation>BMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"545\"/>\n        <source>The Device Path for a Baseboard Management Controller (BMC) host interface.</source>\n        <translation>베이스보드 관리 컨트롤러 (BMC) 호스트 인터페이스의 장치 경로입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"548\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for a Baseboard Management Controller (BMC) host interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;베이스보드 관리 컨트롤러 (BMC) 호스트 인터페이스의 장치 경로입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"602\"/>\n        <source>The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.</source>\n        <translation>베이스보드 관리 컨트롤러 (BMC) 호스트 인터페이스 유형:\n0x00 - 알 수 없음.\n0x01 - KCS: 키보드 컨트롤러 스타일.\n0x02 - SMIC: 서버 관리 인터페이스 칩.\n0x03 - BT: 블록 전송.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"579\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"589\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2332\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2354\"/>\n        <source>Interface Type</source>\n        <translation>인터페이스 유형</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"582\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"612\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;베이스보드 관리 컨트롤러 (BMC) 호스트 인터페이스 유형\n0x00 - 알 수 없음.\n0x01 - KCS: 키보드 컨트롤러 스타일.\n0x02 - SMIC: 서버 관리 인터페이스 칩.\n0x03 - BT: 블록 전송.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"625\"/>\n        <source>Keyboard Controller Style</source>\n        <translation>키보드 컨트롤러 스타일</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"630\"/>\n        <source>Server Management Interface Chip</source>\n        <translation>서버 관리 인터페이스 칩</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"635\"/>\n        <source>Block Transfer</source>\n        <translation>블록 전송</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"643\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"664\"/>\n        <source>Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.</source>\n        <translation>BMC의 기본 주소 (메모리 매핑 또는 I/O)입니다. 필드의 최하위 비트가 1이면 주소가 I/O 공간에 있고, 그렇지 않으면 주소가 메모리 매핑됩니다. 자세한 사용법은 IPMI 인터페이스 사양을 참조하세요.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"667\"/>\n        <source>Base Address</source>\n        <translation>기본 주소</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"670\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;BMC의 기본 주소 (메모리 매핑 또는 I/O)입니다. 필드의 최하위 비트가 1이면 주소가 I/O 공간에 있고, 그렇지 않으면 주소가 메모리 매핑됩니다. 자세한 사용법은 IPMI 인터페이스 사양을 참조하세요.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"688\"/>\n        <source>ACPI</source>\n        <translation>ACPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"805\"/>\n        <source>This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.</source>\n        <translation>이 장치 경로에는 장치의 플러그 앤 플레이 하드웨어 ID와 해당 고유 퍼시스턴트 ID를 나타내는 ACPI 장치 ID가 포함되어 있습니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"808\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;이 장치 경로에는 장치의 플러그 앤 플레이 하드웨어 ID와 해당 고유 퍼시스턴트 ID를 나타내는 ACPI 장치 ID가 포함되어 있습니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"718\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"739\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"832\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"853\"/>\n        <source>Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.</source>\n        <translation>숫자 32비트 압축 EISA 유형 ID로 저장된 장치 PnP 하드웨어 ID입니다. 이 값은 ACPI 네임스페이스의 해당 HID와 일치해야 합니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"724\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"745\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"838\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"859\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;숫자 32비트 압축 EISA 유형 ID로 저장된 장치 PnP 하드웨어 ID입니다. 이 값은 ACPI 네임스페이스의 해당 HID와 일치해야 합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"779\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"872\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"893\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.</source>\n        <translation>두 장치의 HID가 동일한 경우 ACPI에서 요구하는 고유 ID입니다. 이 값은 ACPI 이름 공간에서 해당 UID/HID 쌍과도 일치해야 합니다. 32비트 숫자 값 유형의 UID만 지원되므로 ACPI 네임스페이스의 UID에는 문자열을 사용해서는 안 됩니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"764\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"785\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"899\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;두 장치의 HID가 동일한 경우 ACPI에서 요구하는 고유 ID입니다. 이 값은 ACPI 이름 공간에서 해당 UID/HID 쌍과도 일치해야 합니다. 32비트 숫자 값 유형의 UID만 지원되므로 ACPI 네임스페이스의 UID에는 문자열을 사용해서는 안 됩니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"802\"/>\n        <source>Expanded</source>\n        <translation>확장</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"912\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"933\"/>\n        <source>Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.</source>\n        <translation>숫자 32비트 압축 EISA 유형 ID로 저장된 장치 호환 PnP 하드웨어 ID입니다. 이 값은 ACPI 이름 공간에서 해당 CID가 반환한 호환 가능한 장치 ID 중 하나 이상과 일치해야 합니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"915\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"921\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"936\"/>\n        <source>CID</source>\n        <translation>CID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"918\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"939\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;숫자 32비트 압축 EISA 유형 ID로 저장된 장치 호환 PnP 하드웨어 ID입니다. 이 값은 ACPI 이름 공간에서 해당 CID가 반환한 호환 가능한 장치 ID 중 하나 이상과 일치해야 합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"952\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"974\"/>\n        <source>Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.</source>\n        <translation>문자열로 저장된 장치 PnP 하드웨어 ID입니다. 이 값은 ACPI 네임스페이스의 해당 HID와 일치해야 합니다. 이 문자열의 길이가 0이면 HID 필드가 사용됩니다. 이 문자열의 길이가 0보다 크면 이 필드가 HID 필드를 대체합니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"955\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"961\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"977\"/>\n        <source>HIDSTR</source>\n        <translation>HIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"958\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"980\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;문자열로 저장된 장치 PnP 하드웨어 ID입니다. 이 값은 ACPI 네임스페이스의 해당 HID와 일치해야 합니다. 이 문자열의 길이가 0이면 HID 필드가 사용됩니다. 이 문자열의 길이가 0보다 크면 이 필드가 HID 필드를 대체합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"987\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1009\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.</source>\n        <translation>두 장치에 동일한 HID가 있는 경우 ACPI에 필요한 고유 ID입니다. 이 값은 ACPI 이름 공간에서 해당 UID/HID 쌍과도 일치해야 합니다. 이 값은 문자열로 저장됩니다. 이 문자열의 길이가 0이면 UID 필드가 사용됩니다. 이 문자열의 길이가 0보다 크면 이 필드가 UID 필드를 대체합니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"990\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"996\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1012\"/>\n        <source>UIDSTR</source>\n        <translation>UIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"993\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1015\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;두 장치에 동일한 HID가 있는 경우 ACPI에 필요한 고유 ID입니다. 이 값은 ACPI 이름 공간에서 해당 UID/HID 쌍과도 일치해야 합니다. 이 값은 문자열로 저장됩니다. 이 문자열의 길이가 0이면 UID 필드가 사용됩니다. 이 문자열의 길이가 0보다 크면 이 필드가 UID 필드를 대체합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1044\"/>\n        <source>Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.</source>\n        <translation>문자열로 저장된 장치 호환 PnP 하드웨어 ID입니다. 이 값은 ACPI 네임스페이스에서 해당 CID가 반환한 호환 가능한 장치 ID 중 하나 이상과 일치해야 합니다. 이 문자열의 길이가 0이면 CID 필드가 사용됩니다. 이 문자열의 길이가 0보다 크면 이 필드가 CID 필드를 대체합니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1025\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1031\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1047\"/>\n        <source>CIDSTR</source>\n        <translation>CIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1028\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1050\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;문자열로 저장된 장치 호환 PnP 하드웨어 ID입니다. 이 값은 ACPI 네임스페이스에서 해당 CID가 반환한 호환 가능한 장치 ID 중 하나 이상과 일치해야 합니다. 이 문자열의 길이가 0이면 CID 필드가 사용됩니다. 이 문자열의 길이가 0보다 크면 이 필드가 CID 필드를 대체합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1061\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1094\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1100\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1115\"/>\n        <source>ADR</source>\n        <translation>ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1064\"/>\n        <source>The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.</source>\n        <translation>ADR 장치 경로는 그래픽 출력 프로토콜을 지원하기 위한 비디오 출력 장치 속성을 포함하는 데 사용됩니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1067\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR 장치 경로는 그래픽 출력 프로토콜을 지원하기 위한 비디오 출력 장치 속성을 포함하는 데 사용됩니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1091\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1112\"/>\n        <source>ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required</source>\n        <translation>ADR 값입니다. 비디오 출력 장치의 경우 이 필드의 값은 표 B-2 ACPI 3.0 사양에서 가져옵니다. 하나 이상의 ADR 값이 필요합니다</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1097\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1118\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR 값입니다. 비디오 출력 장치의 경우 이 필드의 값은 표 B-2 ACPI 3.0 사양에서 가져옵니다. 하나 이상의 ADR 값이 필요합니다&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1131\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1192\"/>\n        <source>This device path may optionally contain more than one ADR entry.</source>\n        <translation>이 장치 경로에는 선택적으로 둘 이상의 ADR 항목이 포함될 수 있습니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1195\"/>\n        <source>Additional ADR</source>\n        <translation>추가 ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1198\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path may optionally contain more than one ADR entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;이 장치 경로에는 선택적으로 둘 이상의 ADR 항목이 포함될 수 있습니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1153\"/>\n        <source>Additional ADR format.</source>\n        <translation>추가 ADR 형식입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1156\"/>\n        <source>Additional ADR format</source>\n        <translation>추가 ADR 형식</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1159\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Additional ADR format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;추가 ADR 형식입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1209\"/>\n        <source>NVDIMM</source>\n        <translation>NVDIMM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1212\"/>\n        <source>This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.</source>\n        <translation>이 장치 경로는 ACPI 6.0 사양에 정의된 NFIT 장치 핸들을 식별자로 사용하는 NVDIMM 장치를 설명합니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;이 장치 경로는 ACPI 6.0 사양에 정의된 NFIT 장치 핸들을 식별자로 사용하는 NVDIMM 장치를 설명합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1260\"/>\n        <source>NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.</source>\n        <translation>NFIT 장치 핸들 - 고유한 물리적 식별자입니다. 이 핸들에 사용되는 필드에 대한 구체적인 정의는 ACPI 정의 장치 및 장치별 개체 섹션의 NVDIMM 장치 하위 장을 참조하세요.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1242\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1248\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1263\"/>\n        <source>NFIT Device Handle</source>\n        <translation>NFIT 장치 핸들</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1245\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFIT 장치 핸들 - 고유한 물리적 식별자입니다. 이 핸들에 사용되는 필드에 대한 구체적인 정의는 ACPI 정의 장치 및 장치별 개체 섹션의 NVDIMM 장치 하위 장을 참조하세요.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1284\"/>\n        <source>ATAPI</source>\n        <translation>ATAPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1287\"/>\n        <source>ATAPI Settings.</source>\n        <translation>ATAPI 설정입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI 설정 입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1336\"/>\n        <source>Set to zero for primary or one for secondary.</source>\n        <translation>기본은 0으로, 보조는 1로 설정합니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1317\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1323\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1339\"/>\n        <source>Primary</source>\n        <translation>기본</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1320\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1342\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for primary or one for secondary.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;기본은 0으로, 보조는 1로 설정합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1349\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1371\"/>\n        <source>Set to zero for master or one for slave mode.</source>\n        <translation>마스터의 경우 0으로 설정하고 슬레이브 모드의 경우 1로 설정합니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1374\"/>\n        <source>Slave</source>\n        <translation>슬레이브</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1377\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for master or one for slave mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;마스터의 경우 0으로 설정하거나 슬레이브 모드의 경우 1로 설정합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1384\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1406\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4054\"/>\n        <source>Logical Unit Number.</source>\n        <translation>논리 단위 번호입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1390\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1412\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4038\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;논리 단위 번호입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1429\"/>\n        <source>SCSI</source>\n        <translation>SCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1432\"/>\n        <source>SCSI Settings.</source>\n        <translation>SCSI 설정.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1435\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI 설정.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1481\"/>\n        <source>Target ID on the SCSI bus (PUN).</source>\n        <translation>SCSI 버스 (PUN)의 대상 ID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1962\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1984\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4969\"/>\n        <source>Target ID</source>\n        <translation>대상 ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1465\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1487\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the SCSI bus (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI 버스(PUN)의 대상 ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4985\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5006\"/>\n        <source>Logical Unit Number (LUN).</source>\n        <translation>논리 단위 번호 (LUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5012\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;논리 단위 번호 (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1545\"/>\n        <source>Fibre Channel</source>\n        <translation>광 채널</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1548\"/>\n        <source>Fibre Channel Settings</source>\n        <translation>광 채널 설정</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1551\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;광 채널 설정&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1596\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1750\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4434\"/>\n        <source>Reserved.</source>\n        <translation>예약됨.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1581\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1602\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1756\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3142\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4419\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;예약됨.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1615\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1636\"/>\n        <source>Fibre Channel World Wide Name.</source>\n        <translation>광 채널 월드와이드 이름.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1624\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1639\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4456\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4477\"/>\n        <source>World Wide Name</source>\n        <translation>월드 와이드 이름</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1621\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1642\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel World Wide Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;광 채널 월드 와이드 이름.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1676\"/>\n        <source>Fibre Channel Logical Unit Number.</source>\n        <translation>광 채널 논리 단위 번호.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1661\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1682\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;광 채널 논리 단위 번호.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1699\"/>\n        <source>Firewire</source>\n        <translation>Firewire</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1702\"/>\n        <source>Firewire Settings.</source>\n        <translation>FirewireS설정.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1705\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firewire Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firewire 설정.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1790\"/>\n        <source>1394 Global Unique ID (GUID)</source>\n        <translation>1394 전역 고유 ID (GUID)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1796\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 Global Unique ID (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 전역 고유 ID (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1816\"/>\n        <source>USB settings.</source>\n        <translation>USB 설정.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1865\"/>\n        <source>USB Parent Port Number.</source>\n        <translation>USB 상위 포트 번호.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1852\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1868\"/>\n        <source>Parent Port</source>\n        <translation>상위 포트</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1871\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Parent Port Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB 상위 포트 번호.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1906\"/>\n        <source>USB Interface Number.</source>\n        <translation>USB 인터페이스 번호.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1912\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB 인터페이스 번호.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1929\"/>\n        <source>I2O</source>\n        <translation>I2O</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1932\"/>\n        <source>I2O Settings</source>\n        <translation>I2O 설정</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1935\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;I2O Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;I2O 설정&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1981\"/>\n        <source>Target ID (TID) for a device.</source>\n        <translation>디바이스의 대상 ID (TID).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1965\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1987\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID (TID) for a device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;장치의 대상 ID (TID).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2004\"/>\n        <source>InfiniBand</source>\n        <translation>인피니밴드</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2007\"/>\n        <source>InfiniBand Settings.</source>\n        <translation>인피니밴드 설정입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2010\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;InfiniBand Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;인피니밴드 설정입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2034\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2067\"/>\n        <source>Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.</source>\n        <translation>인피니밴드 장치 경로 요소를 식별/관리하는 데 도움이 되는 플래그:\nBit 0 - IOC/Service (0b = IOC, 1b = 서비스).\nBit 1 - 확장 부팅 환경입니다.\nBit 2 - 콘솔 프로토콜입니다.\nBit 3 - 저장소 프로 토콜입니다.\nBit 4 - 네트워크 프로토콜입니다.\n다른 모든 비트는 예약되어 있습니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2043\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2055\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2076\"/>\n        <source>Resource Flags</source>\n        <translation>리소스 플래그</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2046\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2079\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;인피니밴드 장치 경로 요소를 식별/관리하는 데 도움이 되는 플래그:\nBit 0 - IOC/Service (0b = IOC, 1b = 서비스).\nBit 1 - 확장 부팅 환경입니다.\nBit 2 - 콘솔 프로토콜입니다.\nBit 3 - 저장소 프로토콜입니다.\nBit 4 - 네트워크 프로토콜입니다.\n다른 모든 비트는 예약되어 있습니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2098\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2119\"/>\n        <source>128-bit Global Identifier for remote fabric port</source>\n        <translation>원격 패브릭 포트를 위한 128비트 전역 식별자</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2101\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2122\"/>\n        <source>PORT GID</source>\n        <translation>PORT GID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2104\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2125\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;128-bit Global Identifier for remote fabric port&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;원격 패브릭 포트를 위한 128비트 글로벌 식별자&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2135\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2156\"/>\n        <source>64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)</source>\n        <translation>원격 IOC 또는 서버 프로세스에 대한 64비트 고유 식별자. 리소스 플래그 (비트 0)로 지정된 필드 해석</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2138\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2144\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2159\"/>\n        <source>IOC GUID/Service ID</source>\n        <translation>IOC GUID/서비스 ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2141\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2162\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;원격 IOC 또는 서버 프로세스에 대한 64비트 고유 식별자. 리소스 플래그 (비트 0)로 지정된 필드 해석&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2175\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2196\"/>\n        <source>64-bit persistent ID of remote IOC port.</source>\n        <translation>원격 IOC 포트의 64비트 영구 ID입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2184\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2199\"/>\n        <source>Target Port ID</source>\n        <translation>대상 포트 ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2181\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote IOC port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;원격 IOC 포트의 64비트 영구 ID입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2236\"/>\n        <source>64-bit persistent ID of remote device.</source>\n        <translation>원격 장치의 64비트 영구 ID입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2239\"/>\n        <source>Device ID</source>\n        <translation>장치 ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;원격 장치의 64비트 영구 ID입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2259\"/>\n        <source>MAC Address</source>\n        <translation>MAC 주소</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2262\"/>\n        <source>MAC settings.</source>\n        <translation>MAC 설정입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2289\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2310\"/>\n        <source>The MAC address for a network interface padded with 0s.</source>\n        <translation>0이 추가된 네트워크 인터페이스의 MAC 주소입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2295\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2316\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The MAC address for a network interface padded with 0s.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0이 추가된 네트워크 인터페이스의 MAC 주소입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2329\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2351\"/>\n        <source>Network interface type (i.e., 802.3, FDDI). See RFC 3232.</source>\n        <translation>네트워크 인터페이스 유형 (예: 802.3, FDDI). RFC 3232를 참조하세요.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2357\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network interface type (i.e., 802.3, FDDI). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;네트워크 인터페이스 유형 (예: 802.3, FDDI). RFC 3232를 참조하세요.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2377\"/>\n        <source>IPv4 settings.</source>\n        <translation>IPv4 설정입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2425\"/>\n        <source>The local IPv4 address.</source>\n        <translation>The local IPv4 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2407\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2763\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2784\"/>\n        <source>Local IP Address</source>\n        <translation>Local IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2431\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;로컬 IPv4 주소입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2465\"/>\n        <source>The remote IPv4 address.</source>\n        <translation>로컬 IPv4 주소입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2447\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2824\"/>\n        <source>Remote IP Address</source>\n        <translation>원격 IP 주소</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2471\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;원격 IPv4 주소입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2862\"/>\n        <source>The local port number.</source>\n        <translation>로컬 포트 번호입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2487\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2865\"/>\n        <source>Local Port</source>\n        <translation>로컬 포트</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2490\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;로컬 포트 번호입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2547\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2903\"/>\n        <source>The remote port number.</source>\n        <translation>원격 포트 번호입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2550\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2906\"/>\n        <source>Remote Port</source>\n        <translation>원격 포트</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2553\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2909\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;원격 포트 번호입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2566\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2588\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2922\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2944\"/>\n        <source>The network protocol (i.e., UDP, TCP). See RFC 3232.</source>\n        <translation>네트워크 프로토콜 (예: UDP, TCP). RFC 3232를 참조하세요.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2928\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2950\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The network protocol (i.e., UDP, TCP). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;네트워크 프로토콜 (예: UDP, TCP). RFC 3232를 참조하세요.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2631\"/>\n        <source>0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.</source>\n        <translation>0x00 - 소스 IP 주소가 DHCP를 통해 할당되었습니다.\n0x01 - 소스 IP 주소가 정적으로 바인딩되었습니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2635\"/>\n        <source>Static IP Address</source>\n        <translation>고정 IP 주소</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - 소스 IP 주소가 DHCP를 통해 할당되었습니다.\n0x01 - 소스 IP 주소가 정적으로 바인딩되었습니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2667\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3083\"/>\n        <source>The Gateway IP Address.</source>\n        <translation>게이트웨이 IP 주소입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3071\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3086\"/>\n        <source>Gateway IP Address</source>\n        <translation>게이트웨이 IP 주소</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2673\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Gateway IP Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;게이트웨이 IP 주소입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2686\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2707\"/>\n        <source>Subnet mask.</source>\n        <translation>서브넷 마스크입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2689\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2695\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2710\"/>\n        <source>Subnet Mask</source>\n        <translation>서브넷 마스크</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2733\"/>\n        <source>IPv6 settings.</source>\n        <translation>IPv6 설정입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2760\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2781\"/>\n        <source>The local IPv6 address.</source>\n        <translation>로컬 IPv6 주소입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2787\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;로컬 IPv6 주소입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2821\"/>\n        <source>The remote IPv6 address.</source>\n        <translation>원격 IPv6 주소입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;원격 IPv6 주소입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2963\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2989\"/>\n        <source>0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.</source>\n        <translation>0x00 - 로컬 IP 주소가 수동으로 구성되었습니다.\n0x01 - 로컬 IP 주소가 IPv6 상태 비저장 자동 구성을 통해 할당되었습니다.\n0x02 - 로컬 IP 주소가 IPv6 상태 저장 구성을 통해 할당되었습니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2976\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2994\"/>\n        <source>IP Address Origin</source>\n        <translation>P 주소 출처</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2971\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2997\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - 로컬 IP 주소가 수동으로 구성되었습니다.\n0x01 - 로컬 IP 주소가 IPv6 상태 비저장 자동 구성을 통해 할당되었습니다.\n0x02 - 로컬 IP 주소가 IPv6 상태 저장 구성을 통해 할당되었습니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3021\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3043\"/>\n        <source>The Prefix Length.</source>\n        <translation>접두사 길이입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3024\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3030\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3046\"/>\n        <source>Prefix Length</source>\n        <translation>접두사 길이</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3027\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3049\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Prefix Length.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;접두사 길이입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3106\"/>\n        <source>UART</source>\n        <translation>UART</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3109\"/>\n        <source>UART Settings.</source>\n        <translation>UART 설정입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3112\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART 설정입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3176\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3197\"/>\n        <source>The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.</source>\n        <translation>UART 스타일 장치의 전송 속도 설정입니다. 값이 0이면 장치의 기본 전송 속도가 사용됩니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3179\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3185\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3200\"/>\n        <source>Baud Rate</source>\n        <translation>전송 속도</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3182\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3203\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART 스타일 장치의 전송 속도 설정입니다. 값이 0이면 장치의 기본 전송 속도가 사용됩니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3216\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3238\"/>\n        <source>The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.</source>\n        <translation>UART 스타일 장치의 데이터 비트 수입니다. 값이 0이면 장치의 기본 데이터 비트 수가 사용됨을 의미합니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3219\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3225\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3241\"/>\n        <source>Data Bits</source>\n        <translation>데이터 비트</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3222\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART 스타일 장치의 데이터 비트 수입니다. 값이 0이면 장치의 기본 데이터 비트 수가 사용됨을 의미합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3257\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3291\"/>\n        <source>The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.</source>\n        <translation>UART 스타일 장치의 패리티 설정입니다:\n0x00 - 기본 패리티입니다.\n0x01 - 패리티 없음.\n0x02 - 짝수 패리티.\n0x03 - 홀수 패리티.\n0x04 - 마크 패리티.\n0x05 - 스페이스 패리티.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3266\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3300\"/>\n        <source>Parity</source>\n        <translation>패리티</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3303\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3313\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3394\"/>\n        <source>Default</source>\n        <translation>기본값</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3318\"/>\n        <source>No</source>\n        <translation>없음</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3323\"/>\n        <source>Even</source>\n        <translation>짝수</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3328\"/>\n        <source>Odd</source>\n        <translation>홀수</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3333\"/>\n        <source>Mark</source>\n        <translation>마크</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3338\"/>\n        <source>Space</source>\n        <translation>스페이스</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3346\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3376\"/>\n        <source>The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.</source>\n        <translation>UART 스타일 장치의 정지 비트 수입니다:\n0x00 - 기본 정지 비트.\n0x01 - 1 정지 비트.\n0x02 - 1.5 정지 비트.\n0x03 - 2 정지 비트.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3353\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3363\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3383\"/>\n        <source>Stop Bits</source>\n        <translation>정지 비트</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3356\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART 스타일 장치의 정지 비트 수입니다:\n0x00 - 기본 정지 비트.\n0x01 - 1 정지 비트.\n0x02 - 1.5 정지 비트.\n0x03 - 2 정지 비트.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3399\"/>\n        <source>1</source>\n        <translation>1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3404\"/>\n        <source>1.5</source>\n        <translation>1.5</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3409\"/>\n        <source>2</source>\n        <translation>2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3421\"/>\n        <source>USB Class</source>\n        <translation>USB 클래스</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3424\"/>\n        <source>USB Class Settings.</source>\n        <translation>USB 클래스 설정입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3427\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Class Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB 클래스 설정입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3451\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3472\"/>\n        <source>Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.</source>\n        <translation>USB-IF에서 할당된 공급업체 ID. 0xFFFF 값은 모든 공급업체 ID와 일치합니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3454\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3460\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3475\"/>\n        <source>Vendor ID</source>\n        <translation>공급업체 ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3457\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3478\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB-IF에서 할당된 공급업체 ID. 0xFFFF 값은 모든 공급업체 ID와 일치합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3491\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3512\"/>\n        <source>Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.</source>\n        <translation>USB-IF에서 할당된 제품 ID. 0xFFFF 값은 모든 제품 ID와 일치합니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3515\"/>\n        <source>Product ID</source>\n        <translation>제품 ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3518\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB-IF에서 할당된 제품 ID. 0xFFFF 값은 모든 제품 ID와 일치합니다..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3552\"/>\n        <source>The class code assigned by the USB-IF. A value of 0xFF will match any class code.</source>\n        <translation>USB-IF에서 할당된 클래스 코드입니다. 0xFF 값은 모든 클래스 코드와 일치합니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3540\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3555\"/>\n        <source>Device Class</source>\n        <translation>장치 클래스</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3537\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3558\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The class code assigned by the USB-IF. A value of 0xFF will match any class code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB-IF에서 할당된 클래스 코드입니다. 0xFF 값은 모든 클래스 코드와 일치합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3592\"/>\n        <source>The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.</source>\n        <translation>USB-IF에서 할당된 서브클래스 코드입니다. 0xFF 값은 모든 하위 클래스 코드와 일치합니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3574\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3595\"/>\n        <source>Device Subclass</source>\n        <translation>장치 하위 클래스</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB-IF에서 할당된 서브클래스 코드입니다. 0xFF 값은 모든 하위 클래스 코드와 일치합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3632\"/>\n        <source>The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.</source>\n        <translation>USB-IF에서 할당된 프로토콜 코드입니다. 0xFF 값은 모든 프로토콜 코드와 일치합니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3635\"/>\n        <source>Device Protocol</source>\n        <translation>장치 프로토콜</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3617\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB-IF에서 할당된 프로토콜 코드입니다. 0xFF 값은 모든 프로토콜 코드와 일치합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3655\"/>\n        <source>USB WWID</source>\n        <translation>USB WWID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3658\"/>\n        <source>This device path describes a USB device using its serial number.</source>\n        <translation>이 장치 경로는 일련 번호를 사용하여 USB 장치를 설명합니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3661\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a USB device using its serial number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;이 장치 경로는 일련 번호를 사용하여 USB 장치를 설명합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3685\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3707\"/>\n        <source>USB interface Number.</source>\n        <translation>USB 인터페이스 번호입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB 인터페이스 번호입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3747\"/>\n        <source>USB vendor id of the device.</source>\n        <translation>장치의 USB 공급업체 ID입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3750\"/>\n        <source>Device Vendor Id</source>\n        <translation>장치 공급업체 ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3753\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB vendor id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;장치의 USB 공급업체 ID입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3787\"/>\n        <source>USB product id of the device.</source>\n        <translation>장치의 USB 공급업체 ID입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3790\"/>\n        <source>Device Product Id</source>\n        <translation>장치 제품 ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3793\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB product id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;장치의 USB 제품 ID입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3828\"/>\n        <source>Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).</source>\n        <translation>USB 일련 번호의 마지막 64자 이하의 UTF-16 문자. 문자열의 길이는 길이 필드에서 일련 번호 필드의 오프셋 (10)을 뺀 값으로 결정됩니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3815\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3831\"/>\n        <source>Serial Number</source>\n        <translation>일련 번호</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3812\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB 일련 번호의 마지막 64자 이하의 UTF-16 문자. 문자열의 길이는 길이 필드에서 일련 번호 필드의 오프셋 (10)을 뺀 값으로 결정됩니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3845\"/>\n        <source>Device Logical Unit</source>\n        <translation>장치 논리 단위</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3848\"/>\n        <source>Device Logical Unit Settings.</source>\n        <translation>장치 논리 단위 설정입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3851\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device Logical Unit Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;장치 논리 단위 설정입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3897\"/>\n        <source>Logical Unit Number for the interface.</source>\n        <translation>인터페이스의 논리 단위 번호입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3903\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number for the interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;인터페이스의 논리 단위 번호입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3923\"/>\n        <source>SATA settings.</source>\n        <translation>SATA 설정입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3950\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3972\"/>\n        <source>The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.</source>\n        <translation>장치 또는 포트 배율기에 쉽게 연결할 수 있는 HBA 포트 번호입니다. 0xFFFF 값은 예약되어 있습니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3953\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3975\"/>\n        <source>HBA Port</source>\n        <translation>HBA 포트</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3956\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3978\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;장치 또는 포트 배율기에 쉽게 연결할 수 있는 HBA 포트 번호입니다. 0xFFFF 값은 예약되어 있습니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4013\"/>\n        <source>The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.</source>\n        <translation>장치에 쉽게 연결할 수 있는 포트 승수 포트 번호입니다. 장치가 HBA에 직접 연결되는 경우 0xFFFF로 설정해야 합니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4000\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4016\"/>\n        <source>Port Multiplier Port</source>\n        <translation>포트 승수 포트</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3997\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4019\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;장치에 쉽게 연결할 수 있는 포트 승수 포트 번호입니다. 장치가 HBA에 직접 연결되는 경우 0xFFFF로 설정해야 합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4077\"/>\n        <source>iSCSI</source>\n        <translation>iSCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4080\"/>\n        <source>iSCSI Settings.</source>\n        <translation>iSCSI 설정입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4083\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI 설정입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4129\"/>\n        <source>Network Protocol (0 = TCP, 1+ = reserved).</source>\n        <translation>네트워크 프로토콜(0 = TCP, 1+ = 예약됨).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4113\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network Protocol (0 = TCP, 1+ = reserved).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;네트워크 프로토콜(0 = TCP, 1+ = 예약됨).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4148\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4169\"/>\n        <source>iSCSI Login Options.</source>\n        <translation>iSCSI 로그인 옵션입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4151\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4172\"/>\n        <source>Options</source>\n        <translation>옵션</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4154\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4175\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Login Options.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI 로그인 옵션입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4188\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4209\"/>\n        <source>8 byte array containing the iSCSI Logical Unit Number.</source>\n        <translation>iSCSI 논리 단위 번호가 포함된 8바이트 배열입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4194\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing the iSCSI Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI 논리 단위 번호가 포함된 8바이트 배열입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4228\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4250\"/>\n        <source>iSCSI Target Portal group tag the initiator intends to establish a session with.</source>\n        <translation>개시자가 세션을 설정하려는 iSCSI 대상 포털 그룹 태그입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4231\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4253\"/>\n        <source>Target Portal Group</source>\n        <translation>대상 포털 그룹</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4234\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4256\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Target Portal group tag the initiator intends to establish a session with.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;개시자가 세션을 설정하려는 iSCSI 대상 포털 그룹 태그입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4291\"/>\n        <source>iSCSI NodeTarget Name.</source>\n        <translation>iSCSI 노드 대상 이름입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4272\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4294\"/>\n        <source>Target Name</source>\n        <translation>대상 이름</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4275\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4297\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI NodeTarget Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI 노드 대상 이름입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4308\"/>\n        <source>VLAN</source>\n        <translation>VLAN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4311\"/>\n        <source>VLAN Settings.</source>\n        <translation>VLAN 설정입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4314\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN 설정입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4360\"/>\n        <source>VLAN identifier (0-4094).</source>\n        <translation>VLAN 식별자 (0-4094)입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4341\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4347\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4363\"/>\n        <source>Vlan ID</source>\n        <translation>Vlan ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4344\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4366\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN identifier (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN 식별자 (0-4094)입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4383\"/>\n        <source>Fibre Channel Ex</source>\n        <translation>광 채널 Ex</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4386\"/>\n        <source>The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation>광 채널 Ex 장치 경로는 논리 단위 번호 필드의 정의를 명확히 하여 T-10 SCSI 아키텍처 모델 4 사양을 준수합니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4389\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;광 채널 Ex 장치 경로는 논리 단위 번호 필드의 정의를 명확히 하여 T-10 SCSI 아키텍처 모델 4 사양을 준수합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4474\"/>\n        <source>8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).</source>\n        <translation>광 채널 종단 장치 포트 이름 (일명, 월드 와이드 이름)이 포함된 8바이트 배열입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4480\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;광 채널 종단 장치 포트 이름 (일명, 월드 와이드 이름)이 포함된 8바이트 배열입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4514\"/>\n        <source>8 byte array containing Fibre Channel Logical Unit Number.</source>\n        <translation>광 채널 논리 단위 번호가 포함된 8바이트 배열입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4499\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4520\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;광 채널 논리 단위 번호가 포함된 8바이트 배열입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4537\"/>\n        <source>SAS Extended Messaging</source>\n        <translation>SAS 확장 메시징</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4540\"/>\n        <source>The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation>SAS Ex 장치 경로는 논리 단위 번호 필드의 정의를 명확히 하여 T-10 SCSI 아키텍처 모델 4 사양을 준수합니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4543\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SAS Ex 장치 경로는 논리 단위 번호 필드의 정의를 명확히 하여 T-10 SCSI 아키텍처 모델 4 사양을 준수합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4567\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4588\"/>\n        <source>8-byte array of the SAS Address for Serial Attached SCSI Target Port.</source>\n        <translation>직렬 연결 SCSI 대상 포트용 SAS 주소의 8바이트 배열입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4570\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4576\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4591\"/>\n        <source>SAS Address</source>\n        <translation>SAS 주소</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4573\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4594\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Address for Serial Attached SCSI Target Port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;직렬 연결 SCSI 대상 포트용 SAS 주소의 8바이트 배열입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4628\"/>\n        <source>8-byte array of the SAS Logical Unit Number.</source>\n        <translation>SAS 논리 단위 번호의 8바이트 배열입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4613\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4634\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SAS 논리 단위 번호의 8바이트 배열입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4647\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4668\"/>\n        <source>More Information about the device and its interconnect.</source>\n        <translation>장치 및 상호 연결에 대한 자세한 정보입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4650\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4656\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4671\"/>\n        <source>Device and Topology Info</source>\n        <translation>장치 및 토폴로지 정보</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4653\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4674\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;More Information about the device and its interconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;장치 및 상호 연결에 대한 자세한 정보입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4687\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4709\"/>\n        <source>Relative Target Port (RTP).</source>\n        <translation>상대 대상 포트 (RTP)입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4690\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4696\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4712\"/>\n        <source>Relative Target Port</source>\n        <translation>상대 대상 포트</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4715\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Relative Target Port (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;상대 대상 포트 (RTP)입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4732\"/>\n        <source>NVM Express NS</source>\n        <translation>NVM 익스프레스 NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4735\"/>\n        <source>NVM Express Namespace Settings.</source>\n        <translation>NVM 익스프레스 네임스페이스 설정입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4738\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM Express Namespace Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM 익스프레스 네임스페이스 설정입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4783\"/>\n        <source>Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.</source>\n        <translation>네임스페이스 식별자(NSID). 0 및 0xFFFFFFFF 값은 유효하지 않습니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4765\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4771\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4786\"/>\n        <source>NSID</source>\n        <translation>NSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4768\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4789\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;네임스페이스 식별자(NSID). 0 및 0xFFFFFFFF 값은 유효하지 않습니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4802\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4823\"/>\n        <source>This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.</source>\n        <translation>이 필드에는 IEEE 확장 고유 식별자(EUI-64)가 포함되어 있습니다. EUI-64 값이 없는 장치는 이 필드를 0으로 초기화해야 합니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4805\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4811\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4826\"/>\n        <source>EUI-64</source>\n        <translation>EUI-64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4808\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4829\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;이 필드에는 IEEE 확장 고유 식별자(EUI-64)가 포함되어 있습니다. EUI-64 값이 없는 장치는 이 필드를 0으로 초기화해야 합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4849\"/>\n        <source>Refer to RFC 3986 for details on the URI contents.</source>\n        <translation>URI 콘텐츠에 대한 자세한 내용은 RFC 3986을 참조하세요.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Refer to RFC 3986 for details on the URI contents.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;URI 콘텐츠에 대한 자세한 내용은 RFC 3986을 참조하세요.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4876\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4898\"/>\n        <source>Instance of the URI pursuant to RFC 3986.</source>\n        <translation>RFC 3986에 따른 URI 인스턴스입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4882\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Instance of the URI pursuant to RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RFC 3986에 따른 URI 인스턴스입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4915\"/>\n        <source>UFS</source>\n        <translation>UFS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4918\"/>\n        <source>UFS Settings.</source>\n        <translation>UFS 설정입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS 설정입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4966\"/>\n        <source>Target ID on the UFS interface (PUN).</source>\n        <translation>UFS 인터페이스 (PUN)의 대상 ID입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4972\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the UFS interface (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS 인터페이스 (PUN)의 대상 ID입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5029\"/>\n        <source>SD</source>\n        <translation>SD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5032\"/>\n        <source>SD Settings.</source>\n        <translation>SD 설정입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5035\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SD 설정입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5081\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5299\"/>\n        <source>Slot Number</source>\n        <translation>슬롯 번호</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5084\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5280\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5286\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5302\"/>\n        <source>Slot</source>\n        <translation>슬롯</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5087\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5283\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5305\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Slot Number&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;슬롯 번호&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5104\"/>\n        <source>Bluetooth</source>\n        <translation>블루투스</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5107\"/>\n        <source>EFI Bluetooth Settings.</source>\n        <translation>EFI 블루투스 설정입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5110\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI Bluetooth Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI 블루투스 설정입니다..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5155\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5373\"/>\n        <source>48-bit Bluetooth device address.</source>\n        <translation>48비트 블루투스 장치 주소입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5143\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5158\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5361\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5376\"/>\n        <source>Device Address</source>\n        <translation>장치 주소</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5161\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5379\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-bit Bluetooth device address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48비트 블루트스 장치 주소입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5178\"/>\n        <source>Wi-Fi</source>\n        <translation>Wi-Fi</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5181\"/>\n        <source>Wi-Fi Settings.</source>\n        <translation>Wi-Fi 설정입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5184\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wi-Fi Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wi-Fi 설정입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5208\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5230\"/>\n        <source>SSID in octet string.</source>\n        <translation>옥텟 문자열의 SSID입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5211\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5217\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5233\"/>\n        <source>SSID</source>\n        <translation>SSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5214\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5236\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID in octet string.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;옥텟 문자열의 SSID입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5247\"/>\n        <source>eMMC</source>\n        <translation>eMMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5250\"/>\n        <source>Embedded Multi-Media Card Settings.</source>\n        <translation>임베디드 멀티미디어 카드 설정입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5253\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Embedded Multi-Media Card Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;임베디드 멀티미디어 카드 설정입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5322\"/>\n        <source>BluetoothLE</source>\n        <translation>BluetoothLE</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5325\"/>\n        <source>EFI BluetoothLE Settings.</source>\n        <translation>EFI BluetoothLE 설정입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5328\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI BluetoothLE Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI BluetoothLE 설정입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5416\"/>\n        <source>0x00 - Public Device Address.\n0x01 - Random Device Address.</source>\n        <translation>0x00 - 공용 장치 주소입니다.\n0x01 - 임의의 장치 주소입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5396\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5403\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5420\"/>\n        <source>Address Type</source>\n        <translation>주소 유형</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5399\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5423\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Public Device Address.\n0x01 - Random Device Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - 공용 장치 주소입니다.\n0x01 - 임의의 장치 주소입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5428\"/>\n        <source>Public</source>\n        <translation>공개</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5433\"/>\n        <source>Random</source>\n        <translation>랜덤</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5445\"/>\n        <source>DNS</source>\n        <translation>DNS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5448\"/>\n        <source>DNS Settings.</source>\n        <translation>DNS 설정입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5451\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DNS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DNS 설정입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5499\"/>\n        <source>0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.</source>\n        <translation>0x00 - DNS 서버 주소가 IPv4 주소입니다.\n0x01 - DNS 서버 주소가 IPv6 주소입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5482\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5506\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - 0x00 - DNS 서버 주소가 IPv4 주소입니다.\n0x01 - DNS 서버 주소가 IPv6 주소입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5514\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5575\"/>\n        <source>One or more instances of the DNS server address in EFI_IP_ADDRESS.</source>\n        <translation>EFI_IP_ADDRESS에 있는 하나 이상의 DNS 서버 주소 인스턴스입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5520\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5581\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;One or more instances of the DNS server address in EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI_IP_ADDRESS에 있는 하나 이상의 DNS 서버 주소 인스턴스입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5536\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7584\"/>\n        <source>Data format.</source>\n        <translation>데이터 형식입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5592\"/>\n        <source>NVDIMM NS</source>\n        <translation>NVDIMM NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5595\"/>\n        <source>This device path describes a bootable NVDIMM namespace that is defined by a namespace label.</source>\n        <translation>이 장치 경로는 네임스페이스 레이블로 정의된 부팅 가능한 NVDIMM 네임스페이스를 설명합니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVDIMM namespace that is defined by a namespace label.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;이 장치 경로는 네임스페이스 레이블로 정의된 부팅 가능한 NVDIMM 네임스페이스를 설명합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5622\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5643\"/>\n        <source>Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.</source>\n        <translation>네임스페이스 고유 레이블 식별자 UUID. 이 필드에 대한 자세한 내용은 NVDIMM 레이블 프로토콜 - 레이블 정의 섹션의 Uuid 설명을 참조하세요.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5646\"/>\n        <source>UUID</source>\n        <translation>UUID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5628\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5649\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;네임스페이스 고유 레이블 식별자 UUID. 이 필드에 대한 자세한 내용은 NVDIMM 레이블 프로토콜 - 레이블 정의 섹션의 Uuid 설명을 참조하세요.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5663\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5698\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5706\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5724\"/>\n        <source>REST Service</source>\n        <translation>REST 서비스</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5666\"/>\n        <source>REST Service Settings.</source>\n        <translation>REST 서비스 설정입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5669\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;REST Service Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;REST 서비스 설정입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5719\"/>\n        <source>0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.</source>\n        <translation>0x01 - Redfish REST 서비스.\n0x02 - OData REST 서비스.\n0xFF - 공급업체별 REST 서비스.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5701\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5727\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - 0x01 - Redfish REST 서비스.\n0x02 - OData REST 서비스.\n0xFF - 공급업체별 REST 서비스.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5733\"/>\n        <source>Redfish</source>\n        <translation>레드피쉬</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5738\"/>\n        <source>OData</source>\n        <translation>OData</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5743\"/>\n        <source>Vendor specific</source>\n        <translation>공급업체별</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5775\"/>\n        <source>0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.</source>\n        <translation>0x01 - 대역 내 REST 서비스입니다.\n0x02 - 대역 외 REST 서비스입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5755\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5779\"/>\n        <source>Access Mode</source>\n        <translation>액세스 모드</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5782\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - 0x01 - 대역 내 REST 서비스입니다.\n0x02 - 대역 외 REST 서비스입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5787\"/>\n        <source>In-Band</source>\n        <translation>대역 내</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5792\"/>\n        <source>Out-of-band</source>\n        <translation>대역 외</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5821\"/>\n        <source>GUID of vendor specific REST service.</source>\n        <translation>공급업체별 REST 서비스의 GUID입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID of vendor specific REST service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;공급업체별 REST 서비스의 GUID입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5898\"/>\n        <source>Vendor-defined data.</source>\n        <translation>공급업체 정의 데이터입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;공급업체 정의 데이터입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5915\"/>\n        <source>NVMe-oF NS</source>\n        <translation>NVMe-oF NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5918\"/>\n        <source>This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.</source>\n        <translation>이 장치 경로는 고유한 네임스페이스 및 하위 시스템 NQN ID로 정의되는 부팅 가능한 NVMe over Fiber 네임스페이스를 설명합니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;이 장치 경로는 고유한 네임스페이스 및 하위 시스템 NQN ID로 정의되는 부팅 가능한 NVMe over Fiber 네임스페이스를 설명합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5967\"/>\n        <source>Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.</source>\n        <translation>N네임스페이스 식별자 유형 (NIDT), NVM Express 기본 사양에 의해 CNS 03h NIDT 필드 (1h, 2h 또는 3h)에 정의된 전역 고유 유형 값에 대한 것입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5970\"/>\n        <source>NIDT</source>\n        <translation>NIDT</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5973\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;네임스페이스 식별자 유형 (NIDT), NVM Express 기본 사양에 의해 CNS 03h NIDT 필드 (1h, 2h 또는 3h)에 정의된 전역 고유 유형 값에 대한 것입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5986\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6007\"/>\n        <source>Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.</source>\n        <translation>네임스페이스 식별자 (NID)는 NVM Express 기본 사양의 네임스페이스 식별 디스크립터 목록 (CNS 03h)에 빅 엔디안 형식으로 정의된 전역적으로 고유한 값입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5989\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5995\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6010\"/>\n        <source>NID</source>\n        <translation>NID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5992\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6013\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;네임스페이스 식별자 (NID)는 NVM Express 기본 사양의 네임스페이스 식별 디스크립터 목록 (CNS 03h)에 빅 엔디안 형식으로 정의된 전역적으로 고유한 값입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6023\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6045\"/>\n        <source>Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.</source>\n        <translation>NVM 익스프레스 기본 사양의 NVMe 적격 이름에 따라 n바이트의 UTF-8 문자열로 저장된 NVM 서브시스템의 고유 식별자. 서브시스템 NQN은 식별 및 인증 목적으로 사용됩니다. 최대 길이는 224바이트입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6026\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6048\"/>\n        <source>Subsystem NQN</source>\n        <translation>하위 시스템 NQN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6029\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6051\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM 익스프레스 기본 사양의 NVMe 적격 이름에 따라 n바이트의 UTF-8 문자열로 저장된 NVM 서브시스템의 고유 식별자. 서브시스템 NQN은 식별 및 인증 목적으로 사용됩니다. 최대 길이는 224바이트입니다..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6066\"/>\n        <source>Hard Drive</source>\n        <translation>하드 드라이브</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6069\"/>\n        <source>The Hard Drive Media Device Path is used to represent a partition on a hard drive.</source>\n        <translation>하드 드라이브 미디어 장치 경로는 하드 드라이브의 파티션을 나타내는 데 사용됩니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6072\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Hard Drive Media Device Path is used to represent a partition on a hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;하드 드라이브 미디어 장치 경로는 하드 드라이브의 파티션을 나타내는 데 사용됩니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6174\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6196\"/>\n        <source>Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].</source>\n        <translation>항목 1부터 시작하여 파티션 테이블의 항목을 설명합니다. 파티션 번호 0은 전체 장치를 나타냅니다. MBR 파티션의 유효한 파티션 번호는 [1, 4]입니다. GPT 파티션의 유효한 파티션 번호는 [1, NumberOfPartitionEntries]입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6180\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;항목 1부터 시작하여 파티션 테이블의 항목을 설명합니다. 파티션 번호 0은 전체 장치를 나타냅니다. MBR 파티션의 유효한 파티션 번호는 [1, 4]입니다. GPT 파티션의 유효한 파티션 번호는 [1, NumberOfPartitionEntries]입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6236\"/>\n        <source>Starting LBA of the partition on the hard drive.</source>\n        <translation>하드 드라이브에 있는 파티션의 LBA를 시작합니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6466\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6487\"/>\n        <source>Partition Start</source>\n        <translation>파티션 시작</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting LBA of the partition on the hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;하드 드라이브에 있는 파티션의 LBA를 시작합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6255\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6276\"/>\n        <source>Size of the partition in units of Logical Blocks.</source>\n        <translation>논리 블록 단위의 파티션 크기입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6258\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6264\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6279\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6527\"/>\n        <source>Partition Size</source>\n        <translation>파티션 크기</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6261\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6282\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Logical Blocks.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;논리 블록 단위의 파티션 크기입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6295\"/>\n        <source>Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation>이 파티션에 고유한 서명입니다:\n서명 유형이 0이면 이 필드는 16개의 0으로 초기화해야 합니다.\n서명 유형이 1이면 MBR 서명이 이 필드의 처음 4바이트에 저장됩니다. 나머지 12바이트는 0으로 초기화됩니다.\n서명 유형이 2이면 이 필드에 16바이트 서명이 포함됩니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6301\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6310\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6367\"/>\n        <source>Partition Signature</source>\n        <translation>파티션 서명</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6304\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;이 파티션에 고유한 서명입니다:\n서명 유형이 0이면 이 필드는 16개의 0으로 초기화해야 합니다.\n서명 유형이 1이면 MBR 서명이 이 필드의 처음 4바이트에 저장됩니다. 나머지 12바이트는 0으로 초기화됩니다.\n서명 유형이 2이면 이 필드에 16바이트 서명이 포함됩니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6322\"/>\n        <source>PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.</source>\n        <translation>디스크 서명 파트 유형 (사용되지 않은 값 보유):\n            0x00 - 디스크 서명 없음.\n            0x01 - 0x01 MBR 유형의 주소 0x1b8에서 32비트 서명.\n            0x02 - GUID 서명.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6328\"/>\n        <source>Signature Type</source>\n        <translation>서명 유형</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6331\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;디스크 서명 파트 유형 (사용되지 않은 값 보유):\n            0x00 - 디스크 서명 없음.\n            0x01 - 0x01 MBR 유형의 주소 0x1b8에서 32비트 서명.\n            0x02 - GUID 서명.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6338\"/>\n        <source>None</source>\n        <translation>없음</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6361\"/>\n        <source>Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation>이 파티션에 고유한 서명입니다:\n            서명 유형이 0이면 이 필드는 16개의 0으로 초기화해야 합니다.\n            서명 유형이 1이면 MBR 서명이 이 필드의 처음 4바이트에 저장됩니다. 나머지 12바이트는 0으로 초기화됩니다.\n            서명 유형이 2이면 이 필드에 16바이트 서명이 포함됩니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6370\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;이 파티션에 고유한 서명입니다:\n            서명 유형이 0이면 이 필드는 16개의 0으로 초기화해야 합니다.\n            서명 유형이 1이면 MBR 서명이 이 필드의 처음 4바이트에 저장됩니다. 나머지 12바이트는 0으로 초기화됩니다.\n            서명 유형이 2이면 이 필드에 16바이트 서명이 포함됩니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6392\"/>\n        <source>CD-ROM</source>\n        <translation>CD-ROM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6395\"/>\n        <source>The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.</source>\n        <translation>CD-ROM 미디어 장치 경로는 CD-ROM에 존재하는 시스템 파티션을 정의하는 데 사용됩니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6398\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;CD-ROM 미디어 장치 경로는 CD-ROM에 존재하는 시스템 파티션을 정의하는 데 사용됩니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6444\"/>\n        <source>Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.</source>\n        <translation>부팅 카탈로그의 부팅 항목 번호입니다. 초기/기본 항목은 0으로 정의됩니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6425\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6431\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6447\"/>\n        <source>Boot Entry</source>\n        <translation>부팅 항목</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6450\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;부팅 카탈로그의 부팅 항목 번호입니다. 초기/기본 항목은 0으로 정의됩니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6463\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6484\"/>\n        <source>Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.</source>\n        <translation>미디어에서 파티션의 RBA 시작. CD-ROM은 상대적 논리 블록 주소 지정을 사용합니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6469\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6490\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;미디어에서 파티션의 RBA 시작. CD-ROM은 상대적 논리 블록 주소 지정을 사용합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6524\"/>\n        <source>Size of the partition in units of Blocks, also called Sectors.</source>\n        <translation>블록 단위의 파티션 크기 (섹터라고도 함)입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6530\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Blocks, also called Sectors.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;블록 단위의 파티션 크기(섹터라고도 함)입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6547\"/>\n        <source>File Path</source>\n        <translation>파일 경로</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6550\"/>\n        <source>File Path settings.</source>\n        <translation>파일 경로 설정입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6553\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File Path settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;파일 경로 설정입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6599\"/>\n        <source>Path including directory and file names.</source>\n        <translation>디렉터리 및 파일 이름을 포함한 경로입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6586\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6602\"/>\n        <source>Path Name</source>\n        <translation>경로 이름</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6583\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6605\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Path including directory and file names.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;디렉터리 및 파일 이름을 포함한 경로입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6619\"/>\n        <source>The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.</source>\n        <translation>미디어 프로토콜 장치 경로는 지정된 경로 위치의 장치 경로에서 사용 중인 프로토콜을 나타내는 데 사용됩니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6622\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;미디어 프로토콜 장치 경로는 지정된 경로 위치의 장치 경로에서 사용 중인 프로토콜을 나타내는 데 사용됩니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6667\"/>\n        <source>The ID of the protocol.</source>\n        <translation>프로토콜의 ID입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6673\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ID of the protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;프로토콜의 ID입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6687\"/>\n        <source>Firmware File</source>\n        <translation>펌웨어 파일</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6690\"/>\n        <source>Describes a firmware file in a firmware volume.</source>\n        <translation>펌웨어 볼륨에 있는 펌웨어 파일을 설명합니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6693\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware file in a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;펌웨어 볼륨에 있는 펌웨어 파일을 설명합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6717\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6738\"/>\n        <source>Firmware file name GUID.</source>\n        <translation>펌웨어 파일 이름 GUID입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6723\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6744\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware file name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;펌웨어 파일 이름 GUID입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6758\"/>\n        <source>Firmware Volume</source>\n        <translation>펌웨어 볼륨</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6761\"/>\n        <source>Describes a firmware volume.</source>\n        <translation>펌웨어 볼륨을 설명합니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6764\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;펌웨어 볼륨을 설명합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6809\"/>\n        <source>Firmware volume name GUID.</source>\n        <translation>펌웨어 볼륨 이름 GUID입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware volume name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;펌웨어 볼륨 이름 GUID입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6829\"/>\n        <source>Relative Offset Range</source>\n        <translation>상대 오프셋 범위</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6832\"/>\n        <source>This device path node specifies a range of offsets relative to the first byte available on the device.</source>\n        <translation>이 장치 경로 노드는 장치에서 사용 가능한 첫 번째 바이트를 기준으로 오프셋 범위를 지정합니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6835\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path node specifies a range of offsets relative to the first byte available on the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;이 장치 경로 노드는 장치에서 사용 가능한 첫 번째 바이트를 기준으로 오프셋 범위를 지정합니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6880\"/>\n        <source>Reserved for future use.</source>\n        <translation>향후 사용을 위해 예약되었습니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6886\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved for future use.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;향후 사용을 위해 예약되었습니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6899\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6920\"/>\n        <source>Offset of the first byte, relative to the parent device node.</source>\n        <translation>상위 장치 노드를 기준으로 한 첫 번째 바이트의 오프셋입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6902\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6908\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6923\"/>\n        <source>Starting Offset</source>\n        <translation>시작 오프셋</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6905\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the first byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;상위 장치 노드를 기준으로 한 첫 번째 바이트의 오프셋입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6939\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6960\"/>\n        <source>Offset of the last byte, relative to the parent device node.</source>\n        <translation>상위 장치 노드를 기준으로 한 첫 번째 바이트의 오프셋입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6942\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6963\"/>\n        <source>Ending Offset</source>\n        <translation>종료 오프셋</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6966\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the last byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;상위 장치 노드를 기준으로 한 마지막 바이트의 오프셋입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6983\"/>\n        <source>RAM Disk</source>\n        <translation>RAM 디스크</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6986\"/>\n        <source>RAM Disk Settings.</source>\n        <translation>RAM 디스크 설정입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6989\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM 디스크 설정입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7016\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7037\"/>\n        <source>Starting Address</source>\n        <translation>시작 주소</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7056\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7077\"/>\n        <source>Ending Address</source>\n        <translation>종료 주소</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7093\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7114\"/>\n        <source>GUID that defines the type of the RAM Disk.</source>\n        <translation>RAM 디스크의 유형을 정의하는 GUID입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7120\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID that defines the type of the RAM Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM 디스크의 유형을 정의하는 GUID입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7130\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7152\"/>\n        <source>RAM Disk instance number, if supported.</source>\n        <translation>지원되는 경우 RAM 디스크 인스턴스 번호입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7133\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7155\"/>\n        <source>Disk Instance</source>\n        <translation>디스크 인스턴스</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7158\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk instance number, if supported.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;지원되는 경우 RAM 디스크 인스턴스 번호입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7179\"/>\n        <source>This Device Path is used to describe the booting of non-EFI-aware operating systems.</source>\n        <translation>이 장치 경로는 EFI를 인식하지 않는 운영 체제의 부팅을 설명하는 데 사용됩니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7182\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path is used to describe the booting of non-EFI-aware operating systems.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;이 장치 경로는 EFI를 인식하지 않는 운영 체제의 부팅을 설명하는 데 사용됩니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7206\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7249\"/>\n        <source>An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.</source>\n        <translation>어떤 유형의 장치인지 설명하는 식별 번호입니다:\n  0x00 - 예약됨.\n  0x01 - 플로피.\n  0x02 - 하드 디스크.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB 장치.\n  0x06 - 임베디드 네트워크.\n  0x07..0x7F - 예약됨.\n  0x80 - BEV 장치.\n  0x81..0xFE - 예약됨.\n  0xFF - 알 수 없음.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7220\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7263\"/>\n        <source>Device Type</source>\n        <translation>디스크 유형</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7223\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;어떤 유형의 장치인지 설명하는 식별 번호입니다:\n  0x00 - 예약됨.\n  0x01 - 플로피.\n  0x02 - 하드 디스크.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB 장치.\n  0x06 - 임베디드 네트워크.\n  0x07..0x7F - 예약됨.\n  0x80 - BEV 장치.\n  0x81..0xFE - 예약됨.\n  0xFF - 알 수 없음.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7290\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7347\"/>\n        <source>Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero</source>\n        <translation>BIOS 부팅 사양에 정의된 상태 플래그:\n|  Bits  |      필드     |   값   | 설명\n|========|===============|=======|=============\n|  3..0  |   이전 위치    | 0..15 | 마지막 부팅 시 테이블에 있는 이 항목의 인덱스입니다. 개별 장치 감지가 완료된 경우 IPL 또는 BCV 우선순위를 업데이트하는 데 사용됩니다.\n|--------|-------------- |-------|-------------\n|  7..4  |    (예약됨)    |   0   | 향후 사용을 위해 예약된 값은 0이어야 합니다.\n|--------|-------------- |-------|-------------\n|   8    |     사용함     | 0..1  | 0 = 부팅 시에는 항목이 무시되고 (IPL), 부팅 연결 시에는 항목이 호출되지 않습니다 (BCV).\n|        |               |       | 1 = 부팅을 위해 진입이 시도됩니다 (IPL). 부팅 연결을 위해 진입이 호출됩니다 (BCV).\n|--------|---------------|-------|-------------\n|    9   |     실패함     | 0..1  | 0 = 부팅을 시도하지 않았거나 부팅 실패가 발생했는지 알 수 없습니다 (IPL). 엔트리가 성공적으로 연결되었습니다 (BCV).\n|        |               |       | 1 = 부팅 시도 실패 (IPL), 연결 시도 실패 (BCV)입니다.\n|--------|---------------|-------|-------------\n| 11..10 |   미디어 존재   | 0..3  | 0 = 장치에 부팅 가능한 미디어가 없습니다.\n|        |               |       | 1 = 부팅 가능한 미디어가 있는지 알 수 없습니다.\n|        |               |       | 2 = 미디어가 있고 부팅 가능한 것으로 보입니다.\n|        |               |       | 3 = 향후 사용을 위해 예약되었습니다.\n|--------|---------------|-------|-------------\n| 15..12 |    (예약됨)    |   0   | 향후 사용을 위해 예약, 0이어야 함</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7311\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7368\"/>\n        <source>Status Flag</source>\n        <translation>상태 플래그</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7371\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;BIOS 부팅 사양에 정의된 상태 플래그:\n|  Bits  |      필드     |   값   | 설명\n|========|===============|=======|=============\n|  3..0  |   이전 위치    | 0..15 | 마지막 부팅 시 테이블에 있는 이 항목의 인덱스입니다. 개별 장치 감지가 완료된 경우 IPL 또는 BCV 우선순위를 업데이트하는 데 사용됩니다.\n|--------|-------------- |-------|-------------\n|  7..4  |    (예약됨)    |   0   | 향후 사용을 위해 예약된 값은 0이어야 합니다.\n|--------|-------------- |-------|-------------\n|   8    |     사용함     | 0..1  | 0 = 부팅 시에는 항목이 무시되고 (IPL), 부팅 연결 시에는 항목이 호출되지 않습니다 (BCV).\n|        |               |       | 1 = 부팅을 위해 진입이 시도됩니다 (IPL). 부팅 연결을 위해 진입이 호출됩니다 (BCV).\n|--------|---------------|-------|-------------\n|    9   |     실패함     | 0..1  | 0 = 부팅을 시도하지 않았거나 부팅 실패가 발생했는지 알 수 없습니다 (IPL). 엔트리가 성공적으로 연결되었습니다 (BCV).\n|        |               |       | 1 = 부팅 시도 실패 (IPL), 연결 시도 실패 (BCV)입니다.\n|--------|---------------|-------|-------------\n| 11..10 |   미디어 존재   | 0..3  | 0 = 장치에 부팅 가능한 미디어가 없습니다.\n|        |               |       | 1 = 부팅 가능한 미디어가 있는지 알 수 없습니다.\n|        |               |       | 2 = 미디어가 있고 부팅 가능한 것으로 보입니다.\n|        |               |       | 3 = 향후 사용을 위해 예약되었습니다.\n|--------|---------------|-------|-------------\n| 15..12 |    (예약됨)    |   0   | 향후 사용을 위해 예약, 0이어야 함&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7402\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7424\"/>\n        <source>String that describes the boot device to a user.</source>\n        <translation>사용자에게 부팅 장치를 설명하는 문자열입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7408\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7430\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;String that describes the boot device to a user.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;사용자에게 부팅 장치를 설명하는 문자열입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7543\"/>\n        <source>Vendor-assigned GUID that defines the data that follows.</source>\n        <translation>다음 데이터를 정의하는 공급업체가 지정한 GUID입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7549\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-assigned GUID that defines the data that follows.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;다음 데이터를 정의하는 공급업체가 지정한 GUID입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7562\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7622\"/>\n        <source>Vendor-defined variable size data.</source>\n        <translation>공급업체에서 정의한 가변 크기 데이터입니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7568\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7628\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined variable size data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;공급업체에서 정의한 가변 크기 데이터입니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7642\"/>\n        <source>Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.</source>\n        <translation>하위 유형에 따라 이 장치 경로 노드는 장치 경로 인스턴스 또는 장치 경로 구조의 끝을 나타내는 데 사용됩니다.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7645\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;하위 유형에 따라 이 장치 경로 노드는 장치 경로 인스턴스 또는 장치 경로 구조의 끝을 나타내는 데 사용됩니다.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7721\"/>\n        <source>Unknown file path specifier settings</source>\n        <translation>알 수 없는 파일 경로 지정자 설정</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7724\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown file path specifier settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;알 수 없는 파일 경로 지정자 설정.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7748\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7772\"/>\n        <source>Unknown Type</source>\n        <translation>알 수 없는 유형</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7754\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7775\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;알 수 없는 유형.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7812\"/>\n        <source>Unknown Sub-Type</source>\n        <translation>알 수 없는 하위 유형</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;알 수 없는 하위 유형.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7828\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7831\"/>\n        <source>Unknown data</source>\n        <translation>알 수 없는 데이터</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;알 수 없는 데이터.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/filepathdialog.cpp\" line=\"1569\"/>\n        <source>Couldn&apos;t change data format!</source>\n        <translation>데이터 형식을 변경할 수 없습니다!</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeyListModel</name>\n    <message>\n        <location filename=\"../src/hotkeylistmodel.cpp\" line=\"100\"/>\n        <source>boot option</source>\n        <translation>부팅 옵션</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Boot option</source>\n        <translation>부팅 옵션</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Hot key</source>\n        <translation>단축키</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Vendor data</source>\n        <translation>공급 업체 자료</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeysDialog</name>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"20\"/>\n        <source>Hot Keys editor</source>\n        <translation>단축키 편집기</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"41\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"44\"/>\n        <source>Hot Keys</source>\n        <translation>단축키</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"47\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;단축키&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"125\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"128\"/>\n        <source>Index filter</source>\n        <translation>인덱스 필터</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"131\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Index filter&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;인덱스 필터&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"163\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"166\"/>\n        <source>Remove hot key</source>\n        <translation>단축키 제거</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;단축키 제거&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"191\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"194\"/>\n        <source>Add hot key</source>\n        <translation>단축키 추가</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"197\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;단축키 추가&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <location filename=\"../include/commands.h\" line=\"21\"/>\n        <location filename=\"../include/commands.h\" line=\"66\"/>\n        <source>Change %1 to &quot;%2&quot;</source>\n        <translation>%1을(를) &quot;%2&quot;(으)로 변경</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"35\"/>\n        <source>Insert %1 entry &quot;%2&quot; at position %3</source>\n        <translation>%3 위치에 %1 항목 &quot;%2&quot; 삽입</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"50\"/>\n        <source>Remove %1 entry &quot;%2&quot; from position %3</source>\n        <translation>%3 위치에서 %1 항목 &quot;%2&quot; 제거</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"73\"/>\n        <location filename=\"../src/commands.cpp\" line=\"116\"/>\n        <source>Move %1 entry &quot;%2&quot; from position %3 to %4</source>\n        <translation>%1 항목 &quot;%2&quot;을(를) %3 위치에서 %4 위치로 이동</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <location filename=\"../include/commands.h\" line=\"157\"/>\n        <location filename=\"../include/commands.h\" line=\"198\"/>\n        <source>Change %1 entry &quot;%2&quot; %3 to &quot;%4&quot;</source>\n        <translation>%1 항목 &quot;%2&quot; %3을(를) &quot;%4&quot;(으)로 변경</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <source>Optional data</source>\n        <translation>선택적 데이터</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"227\"/>\n        <source>Insert %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation>%3 위치에 %1 항목 &quot;%2&quot; 파일 경로 삽입</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"242\"/>\n        <source>Remove %1 entry &quot;%2&quot; file path from position %3</source>\n        <translation>%3 위치에서 %1 항목 &quot;%2&quot; 파일 경로 제거</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"257\"/>\n        <source>Set %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation>%3 위치에 %1 항목 &quot;%2&quot; 파일 경로 설정</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <source>Insert %1 entry at position %2</source>\n        <translation>%2 위치에 %1 항목 삽입</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>Key</source>\n        <translation>키</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <source>Remove %1 entry from position %2</source>\n        <translation>%2 위치에서 %1 항목 제거</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <location filename=\"../include/commands.h\" line=\"362\"/>\n        <location filename=\"../include/commands.h\" line=\"403\"/>\n        <source>Change %1 entry at position %2 %3 to &quot;%4&quot;</source>\n        <translation>%2 %3 위치의 %1 항목을 &quot;%4&quot;로 변경</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>keys</source>\n        <translation>키</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"293\"/>\n        <location filename=\"../src/commands.cpp\" line=\"333\"/>\n        <source>Move %1 entry &quot;%2&quot; file path from position %3 to %4</source>\n        <translation>%1 항목 &quot;%2&quot; 파일 경로를 %3 위치에서 %4 위치로 이동</translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/efibooteditor_nb_NO.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"nb_NO\" sourcelanguage=\"en_US\">\n<context>\n    <name>BootEntryForm</name>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"169\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"172\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"182\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"185\"/>\n        <source>Description</source>\n        <translation>Beskrivelse</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"198\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"201\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"204\"/>\n        <source>Path</source>\n        <translation>Sti</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"415\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"418\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"478\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"481\"/>\n        <source>Optional data</source>\n        <translation>Valgfri data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"421\"/>\n        <source>Optional</source>\n        <translation>Valgfritt</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"434\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"437\"/>\n        <source>Optional data format</source>\n        <translation>Valgfritt dataformat</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"6\"/>\n        <source>Boot entry form</source>\n        <translation>Oppstartsoppføringsskjema</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"24\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"27\"/>\n        <source>Error</source>\n        <translation>Feil</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"40\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"43\"/>\n        <source>Error note</source>\n        <translation>Feilmelding</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"46\"/>\n        <source>This entry placeholder is shown here to indicate it&apos;s referenced in boot order. It won&apos;t be modified on save, just left as is.</source>\n        <translation>Denne oppføringsplassholderen vises her for å indikere at det refereres til den i oppstartsrekkefølge. Den vil ikke bli endret ved lagring, bare la den være som den er.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"147\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"150\"/>\n        <source>Hot Keys</source>\n        <translation>Hurtigtaster</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hurtigtaster&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"188\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry description.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Oppføringsbeskrivelse.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"222\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"225\"/>\n        <source>Device path</source>\n        <translation>Enhetssti</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Enhetssti.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"280\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"283\"/>\n        <source>Move file path up</source>\n        <translation>Flytt filsti oppover</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"286\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flytt filsti oppover.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"305\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"308\"/>\n        <source>Move file path down</source>\n        <translation>Flytt filsti nedover</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"311\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flytt filsti nedover.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"330\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"333\"/>\n        <source>Remove file path</source>\n        <translation>Fjern filsti</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"336\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fjern filsti.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"355\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"358\"/>\n        <source>Edit file path</source>\n        <translation>Rediger filsti</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"361\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Edit file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Rediger filsti.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"380\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"383\"/>\n        <source>Add file path</source>\n        <translation>Legg til filsti</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Legg til filsti.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Valgfritt dataformat.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"444\"/>\n        <source>BASE64</source>\n        <translation type=\"unfinished\">BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"449\"/>\n        <source>UTF-16</source>\n        <translation type=\"unfinished\">UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"454\"/>\n        <source>UTF-8</source>\n        <translation type=\"unfinished\">UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"459\"/>\n        <source>HEX</source>\n        <translation type=\"unfinished\">HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"484\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry optional data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Valgfri data for oppføring.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"497\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"500\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"503\"/>\n        <source>Attributes</source>\n        <translation>Attributter</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"623\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry category.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Oppføringskategori.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"122\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Oppføringsindeks.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"540\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Is entry considered for automatic boot?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vurderes oppføring for automatisk oppstart?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"569\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hidden.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Skjult.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"585\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Force reconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Tving å koble til på nytt.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"534\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"537\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"543\"/>\n        <source>Active</source>\n        <translation>Aktiv</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"579\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"582\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"588\"/>\n        <source>Force reconnect</source>\n        <translation>Tving å koble til på nytt</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"563\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"566\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"572\"/>\n        <source>Hidden</source>\n        <translation>Skjult</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"598\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"601\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"604\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"617\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"620\"/>\n        <source>Category</source>\n        <translation>Kategori</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"627\"/>\n        <source>Boot</source>\n        <translation>Oppstart</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"632\"/>\n        <source>App</source>\n        <translation type=\"unfinished\">App</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"68\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"71\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"74\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"116\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"119\"/>\n        <source>Index</source>\n        <translation>Indeks</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentryform.cpp\" line=\"117\"/>\n        <source>Couldn&apos;t change optional data format!</source>\n        <translation>Kan ikke endre valgfritt dataformat!</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryListModel</name>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"88\"/>\n        <source>Set Next boot to &quot;%1&quot;</source>\n        <translation>Sett neste oppstart til &quot;%1&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"184\"/>\n        <source>index</source>\n        <translation>indeks</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"200\"/>\n        <source>description</source>\n        <translation>beskrivelse</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"237\"/>\n        <source>optional data</source>\n        <translation>valgfri data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"253\"/>\n        <source>attributes</source>\n        <translation>attributter</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"269\"/>\n        <source>next boot</source>\n        <translation>neste oppstart</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryWidget</name>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"12\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"221\"/>\n        <source>Boot entry</source>\n        <translation>Oppstartsoppføring</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"36\"/>\n        <source>Next boot</source>\n        <translation>Neste oppstart</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"39\"/>\n        <source>Run at next boot</source>\n        <translation>Kjør ved neste oppstart</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"42\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;When chosen, entry will run at next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Når det er valgt, vil oppføringen kjøre ved neste oppstart.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"140\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"143\"/>\n        <source>Current boot</source>\n        <translation>Nåværende oppstart</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This entry is currently booted.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Denne oppføringen er for øyeblikket oppstartet.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"181\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indeks for oppstartsoppføring.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"218\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry description, human readable name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Beskrivelse av oppstartsoppføring, navn som kan leses av mennesker.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"67\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"70\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"76\"/>\n        <source>Device path</source>\n        <translation>Enhetssti</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"73\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Enhetssti for oppstart.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"113\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data, arguments passed to boot executable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Valgfrie data, argumenter sendt til oppstartskjørbar.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"178\"/>\n        <source>Boot entry index</source>\n        <translation>Indeks for oppstartsoppføring</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"184\"/>\n        <source>Index</source>\n        <translation>Indeks</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"212\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"215\"/>\n        <source>Boot entry description</source>\n        <translation>Beskrivelse av oppstartsoppføring</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"107\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"110\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"116\"/>\n        <source>Optional data</source>\n        <translation>Valgfri data</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootData</name>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"111\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"813\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1027\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1361\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1472\"/>\n        <source>%1: not found</source>\n        <translation>%1: ikke funnet</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"120\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"821\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1387\"/>\n        <source>%1: failed deserialization</source>\n        <translation>%1: mislykket deserialisering</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Error loading entries</source>\n        <translation>Feil ved lasting av oppføringer</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Failed to load some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>Kunne ikke laste inn noen EFI Boot Manager-oppføringer:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Error saving entries</source>\n        <translation>Feil under lagring av oppføringer</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Entry %1(%2): duplicated index!</source>\n        <translation>Oppføring %1(%2): duplisert indeks!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"389\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"419\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"458\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"479\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"487\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"516\"/>\n        <source>Error saving %1</source>\n        <translation>Feil ved å lagre %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"407\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"470\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"504\"/>\n        <source>Error removing %1</source>\n        <translation>Feil ved å fjerne %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Error importing boot configuration</source>\n        <translation>Feil ved import av oppstartskonfigurasjon</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <source>Couldn&apos;t open selected file (%1).</source>\n        <translation>Kunne ikke åpne valgt fil (%1).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <source>Parser failed: %1</source>\n        <translation>Tolker mislyktes: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <source>Invalid _Type: %1</source>\n        <translation>Ugyldig _Type: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <source>Error exporting boot configuration</source>\n        <translation>Feil ved eksport av oppstartskonfigurasjon</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <source>Couldn&apos;t open selected file (%1): %2.</source>\n        <translation>Kunne ikke åpne valgt fil (%1): %2.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <source>Couldn&apos;t write into file (%1): %2.</source>\n        <translation>Kunne ikke skrive inn i filen (%1): %2.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Error dumping raw EFI data</source>\n        <translation>Feil ved dumping av rå EFI-data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Failed to dump some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>Kunne ikke dumpe noen EFI Boot Manager-oppføringer:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"905\"/>\n        <source>Timeout</source>\n        <translation>Tidsavbrudd</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"921\"/>\n        <source>Apple boot-args</source>\n        <translation>Argumenter for Apple-oppstart</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"937\"/>\n        <source>Firmware actions</source>\n        <translation>Fastvarehandlinger</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"73\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation>Laster inn EFI Boot Manager-oppføringer…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"89\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"787\"/>\n        <source>Searching EFI Boot Manager entries…</source>\n        <translation>Søker EFI Boot Manager-oppføringer…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"116\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"292\"/>\n        <source>Processing EFI Boot Manager entries (%1)…</source>\n        <translation>Behandler EFI Boot Manager-oppføringer (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"308\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation>Lagrer EFI Boot Manager-oppføringer…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"333\"/>\n        <source>Searching old EFI Boot Manager entries…</source>\n        <translation>Søker gamle EFI Boot Manager-oppføringer…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"374\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"416\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"447\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"476\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"484\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"491\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"513\"/>\n        <source>Saving EFI Boot Manager entries (%1)…</source>\n        <translation>Lagrer EFI Boot Manager-oppføringer (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"467\"/>\n        <source>Removing old EFI Boot Manager entries (%1)…</source>\n        <translation>Fjerner gamle EFI Boot Manager-oppføringer (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"404\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"501\"/>\n        <source>Removing EFI Boot Manager entries (%1)…</source>\n        <translation>Fjerner EFI Boot Manager-oppføringer (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"94\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"338\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"792\"/>\n        <source>Couldn&apos;t load EFI Boot Manager variables</source>\n        <translation>Kunne ikke laste inn EFI Boot Manager-variabler</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"100\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"799\"/>\n        <source>Couldn&apos;t find any EFI Boot Manager variables</source>\n        <translation>Kunne ikke finne EFI Boot Manager-variabler</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"529\"/>\n        <source>Importing boot configuration…</source>\n        <translation>Importerer oppstartskonfigurasjon…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"565\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"770\"/>\n        <source>Exporting boot configuration…</source>\n        <translation>Eksporterer oppstartskonfigurasjon…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"587\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"809\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"875\"/>\n        <source>Exporting EFI Boot Manager entries (%1)…</source>\n        <translation>Eksporterer EFI Boot Manager-oppføringer (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1013\"/>\n        <source>Importing boot configuration from JSON…</source>\n        <translation>Importerer oppstartskonfigurasjon fra JSON…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1032\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1366\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1477\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1531\"/>\n        <source>Importing EFI Boot Manager entries (%1)…</source>\n        <translation>Importerer EFI Boot Manager-oppføringer (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1035\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1376\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>%1: %2 expected</source>\n        <translation>%1: %2 forventet</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1043\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1048\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1053\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <source>number</source>\n        <translation>nummer</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1058\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1063\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1068\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1073\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1078\"/>\n        <source>bool</source>\n        <translation>boolsk</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1109\"/>\n        <source>%1: unknown boot manager capability</source>\n        <translation>%1: ukjent boot manager-evne</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1122\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1166\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1212\"/>\n        <source>array</source>\n        <translation>tabell</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1333\"/>\n        <source>string</source>\n        <translation>streng</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1156\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1192\"/>\n        <source>%1: unknown os indication</source>\n        <translation>%1: ukjent os-indikasjon</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1083\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1235\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1264\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1290\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1309\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1328\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>object</source>\n        <translation>objekt</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <source>hexadecimal number</source>\n        <translation>heksadesimalt tall</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1270\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1315\"/>\n        <source>%1: failed parsing</source>\n        <translation>%1: mislykket tolkning</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Failed to import some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>Kunne ikke importere noen EFI Boot Manager-oppføringer:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1347\"/>\n        <source>Importing boot configuration from raw dump…</source>\n        <translation>Importerer oppstartskonfigurasjon fra rådump…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1379\"/>\n        <source>object(raw_data: string, efi_attributes: number)</source>\n        <extracomment>Expected JSON structure, thrown as error description. raw_data and efi_attributes are field names in JSON file</extracomment>\n        <translation>objekt(rå_data: streng, efi_attributter: nummer)</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"15\"/>\n        <source>Boot</source>\n        <translation>Oppstart</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"16\"/>\n        <source>Driver</source>\n        <translation type=\"unfinished\">Driver</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"17\"/>\n        <source>System Preparation</source>\n        <translation>Systemforberedelse</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"18\"/>\n        <source>Platform Recovery</source>\n        <translation>Plattformgjenoppretting</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditor</name>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"18\"/>\n        <source>EFI Boot Editor</source>\n        <translation type=\"unfinished\">EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"71\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"412\"/>\n        <source>Boot</source>\n        <translation>Oppstart</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"74\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"98\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"101\"/>\n        <source>Boot entries</source>\n        <translation>Oppstartsoppføringer</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"77\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"104\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Boot entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Liste over oppstartsoppføringer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"133\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"415\"/>\n        <source>Driver</source>\n        <translation type=\"unfinished\">Driver</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"136\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"160\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"163\"/>\n        <source>Driver entries</source>\n        <translation>Driveroppføringer</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"139\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"166\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Driver entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Liste over driveroppføringer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"195\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"418\"/>\n        <source>System Preparation</source>\n        <translation>Systemforberedelse</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"198\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"222\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"225\"/>\n        <source>SysPrep entries</source>\n        <translation type=\"unfinished\">SysPrep entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"201\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of SysPrep entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of SysPrep entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"257\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"421\"/>\n        <source>Platform Recovery</source>\n        <translation type=\"unfinished\">Platform Recovery</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"260\"/>\n        <source>PlatformRecovery entries</source>\n        <translation type=\"unfinished\">PlatformRecovery entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"263\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of PlatformRecovery entries (READONLY).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of PlatformRecovery entries (READONLY).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"284\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"287\"/>\n        <source>PlatformRecovery entries (READONLY)</source>\n        <translation type=\"unfinished\">PlatformRecovery entries (READONLY)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"346\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"349\"/>\n        <source>Add new entry</source>\n        <translation type=\"unfinished\">Add new entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"352\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to add new boot entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to add new boot entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"377\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"380\"/>\n        <source>Duplicate entry</source>\n        <translation type=\"unfinished\">Duplicate entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"383\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Duplicate entry&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Duplicate entry&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"408\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"411\"/>\n        <source>Remove entry</source>\n        <translation type=\"unfinished\">Remove entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"414\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to remove currently selected entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to remove currently selected entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"439\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"442\"/>\n        <source>Move entry up</source>\n        <translation type=\"unfinished\">Move entry up</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"445\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"470\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"473\"/>\n        <source>Move entry down</source>\n        <translation type=\"unfinished\">Move entry down</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"476\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"501\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"504\"/>\n        <source>Reorder entries</source>\n        <translation type=\"unfinished\">Reorder entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"507\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click here to adjust the order of all entries based on their position on the list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click here to adjust the order of all entries based on their position on the list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"599\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"608\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Global settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Global settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"602\"/>\n        <source>Global</source>\n        <translation type=\"unfinished\">Global</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"632\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"635\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"654\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"657\"/>\n        <source>Boot manager timeout</source>\n        <translation type=\"unfinished\">Boot manager timeout</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"638\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"660\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot manager timeout.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot manager timeout.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"663\"/>\n        <source>s</source>\n        <translation type=\"unfinished\">s</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"674\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"677\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"686\"/>\n        <source>Firmware details</source>\n        <translation type=\"unfinished\">Firmware details</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"680\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"689\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"683\"/>\n        <source>Firmware</source>\n        <translation type=\"unfinished\">Firmware</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"719\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"722\"/>\n        <source>Available firmware features</source>\n        <translation type=\"unfinished\">Available firmware features</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"725\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware features.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware features.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"728\"/>\n        <source>Features</source>\n        <translation type=\"unfinished\">Features</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"737\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"740\"/>\n        <source>Platform supports reporting of deferred capsule processing by creation of result variable</source>\n        <translation type=\"unfinished\">Platform supports reporting of deferred capsule processing by creation of result variable</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"743\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports reporting of deferred capsule processing by creation of result variable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports reporting of deferred capsule processing by creation of result variable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"746\"/>\n        <source>Capsule Reporting</source>\n        <translation type=\"unfinished\">Capsule Reporting</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"756\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"759\"/>\n        <source>Firmware supports timestamp based revocation</source>\n        <translation type=\"unfinished\">Firmware supports timestamp based revocation</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"762\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware supports timestamp based revocation.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware supports timestamp based revocation.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"765\"/>\n        <source>Timestamp based revocation</source>\n        <translation type=\"unfinished\">Timestamp based revocation</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"775\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"778\"/>\n        <source>Platform supports processing of Firmware Management Protocol update capsule</source>\n        <translation type=\"unfinished\">Platform supports processing of Firmware Management Protocol update capsule</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"781\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of Firmware Management Protocol update capsule.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of Firmware Management Protocol update capsule.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"784\"/>\n        <source>FMP Capsule</source>\n        <translation type=\"unfinished\">FMP Capsule</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"794\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"797\"/>\n        <source>Platform supports processing of file capsules</source>\n        <translation type=\"unfinished\">Platform supports processing of file capsules</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"800\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of file capsules.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of file capsules.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"803\"/>\n        <source>File Capsule</source>\n        <translation type=\"unfinished\">File Capsule</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"828\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"831\"/>\n        <source>Available firmware actions</source>\n        <translation type=\"unfinished\">Available firmware actions</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware actions.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware actions.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"837\"/>\n        <source>Actions</source>\n        <translation type=\"unfinished\">Actions</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"846\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"849\"/>\n        <source>Stop at a firmware user interface on the next boot</source>\n        <translation type=\"unfinished\">Stop at a firmware user interface on the next boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Stop at a firmware user interface on the next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Stop at a firmware user interface on the next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"855\"/>\n        <source>Boot to firmware UI</source>\n        <translation type=\"unfinished\">Boot to firmware UI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"862\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"865\"/>\n        <source>Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot</source>\n        <translation type=\"unfinished\">Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"871\"/>\n        <source>Collect current config</source>\n        <translation type=\"unfinished\">Collect current config</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"878\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"881\"/>\n        <source>Indicate that Platform-defined recovery should commence upon reboot</source>\n        <translation type=\"unfinished\">Indicate that Platform-defined recovery should commence upon reboot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"884\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that Platform-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that Platform-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"887\"/>\n        <source>Start Platform recovery</source>\n        <translation type=\"unfinished\">Start Platform recovery</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"894\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"897\"/>\n        <source>Indicate that OS-defined recovery should commence upon reboot</source>\n        <translation type=\"unfinished\">Indicate that OS-defined recovery should commence upon reboot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"900\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that OS-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that OS-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"903\"/>\n        <source>Start OS recovery</source>\n        <translation type=\"unfinished\">Start OS recovery</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"932\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"935\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"944\"/>\n        <source>Secure boot settings</source>\n        <translation type=\"unfinished\">Secure boot settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"938\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"947\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Secure boot settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Secure boot settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"941\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1025\"/>\n        <source>Secure Boot</source>\n        <translation type=\"unfinished\">Secure Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"978\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"981\"/>\n        <source>Defines whether the system is currently operating in Audit Mode</source>\n        <translation type=\"unfinished\">Defines whether the system is currently operating in Audit Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"984\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Audit Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Audit Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"987\"/>\n        <source>Audit Mode</source>\n        <translation type=\"unfinished\">Audit Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"997\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1000\"/>\n        <source>Defines whether the system is currently operating in Deployed Mode</source>\n        <translation type=\"unfinished\">Defines whether the system is currently operating in Deployed Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1003\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Deployed Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Deployed Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1006\"/>\n        <source>Deployed Mode</source>\n        <translation type=\"unfinished\">Deployed Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1016\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1019\"/>\n        <source>Defines whether the platform firmware is operating with Secure Boot enabled</source>\n        <translation type=\"unfinished\">Defines whether the platform firmware is operating with Secure Boot enabled</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1022\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the platform firmware is operating with Secure Boot enabled.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the platform firmware is operating with Secure Boot enabled.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1035\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1038\"/>\n        <source>Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables</source>\n        <translation type=\"unfinished\">Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1041\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1044\"/>\n        <source>Setup Mode</source>\n        <translation type=\"unfinished\">Setup Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1054\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1057\"/>\n        <source>Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys</source>\n        <translation type=\"unfinished\">Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1063\"/>\n        <source>Vendor Keys</source>\n        <translation type=\"unfinished\">Vendor Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1074\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1077\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1086\"/>\n        <source>Apple settings</source>\n        <translation type=\"unfinished\">Apple settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1080\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apple settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apple settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1083\"/>\n        <source>Apple</source>\n        <translation type=\"unfinished\">Apple</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1113\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1116\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1129\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1132\"/>\n        <source>macOS boot arguments</source>\n        <translation type=\"unfinished\">macOS boot arguments</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1119\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;macOS boot arguments.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;macOS boot arguments.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1161\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1164\"/>\n        <source>Undo stack</source>\n        <translation type=\"unfinished\">Undo stack</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1167\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo stack&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo stack&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1194\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1214\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Help menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Help menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1255\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Exit the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Exit the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1272\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apply changes to the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apply changes to the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1289\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reloads EFI data from the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reloads EFI data from the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1306\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Show information about the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Show information about the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1320\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Export current entries into JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Export current entries into JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1337\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Import EFI data from JSON dump.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Import EFI data from JSON dump.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1354\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dumps raw EFI data for debugging purposes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dumps raw EFI data for debugging purposes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1362\"/>\n        <source>&amp;Undo</source>\n        <translation type=\"unfinished\">&amp;Undo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1365\"/>\n        <source>Undo</source>\n        <translation type=\"unfinished\">Undo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1368\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1371\"/>\n        <source>Ctrl+Z</source>\n        <translation type=\"unfinished\">Ctrl+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1379\"/>\n        <source>&amp;Redo</source>\n        <translation type=\"unfinished\">&amp;Redo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1382\"/>\n        <source>Redo</source>\n        <translation type=\"unfinished\">Redo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1385\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Redo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Redo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1388\"/>\n        <source>Ctrl+Shift+Z</source>\n        <translation type=\"unfinished\">Ctrl+Shift+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1396\"/>\n        <source>Hot &amp;keys</source>\n        <translation type=\"unfinished\">Hot &amp;keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1399\"/>\n        <source>Hot Keys</source>\n        <translation type=\"unfinished\">Hot Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1402\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"593\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"596\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"605\"/>\n        <source>Global settings</source>\n        <translation type=\"unfinished\">Global settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"641\"/>\n        <source>Timeout</source>\n        <translation type=\"unfinished\">Timeout</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1122\"/>\n        <source>Boot args</source>\n        <translation type=\"unfinished\">Boot args</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1188\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1191\"/>\n        <source>File</source>\n        <translation type=\"unfinished\">File</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1197\"/>\n        <source>&amp;File</source>\n        <translation type=\"unfinished\">&amp;File</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1208\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1211\"/>\n        <source>Help</source>\n        <translation type=\"unfinished\">Help</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1217\"/>\n        <source>&amp;Help</source>\n        <translation type=\"unfinished\">&amp;Help</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1225\"/>\n        <source>&amp;Edit</source>\n        <translation type=\"unfinished\">&amp;Edit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1249\"/>\n        <source>&amp;Quit</source>\n        <translation type=\"unfinished\">&amp;Quit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1252\"/>\n        <source>Quit</source>\n        <translation type=\"unfinished\">Quit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1258\"/>\n        <source>Ctrl+Q</source>\n        <translation type=\"unfinished\">Ctrl+Q</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1266\"/>\n        <source>&amp;Save</source>\n        <translation type=\"unfinished\">&amp;Save</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1269\"/>\n        <source>Save</source>\n        <translation type=\"unfinished\">Save</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1275\"/>\n        <source>Ctrl+S</source>\n        <translation type=\"unfinished\">Ctrl+S</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1283\"/>\n        <source>&amp;Reload</source>\n        <translation type=\"unfinished\">&amp;Reload</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1286\"/>\n        <source>Reload</source>\n        <translation type=\"unfinished\">Reload</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1292\"/>\n        <source>Ctrl+R</source>\n        <translation type=\"unfinished\">Ctrl+R</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1300\"/>\n        <source>About &amp;EFI Boot Editor</source>\n        <translation type=\"unfinished\">About &amp;EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1303\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"29\"/>\n        <source>About EFI Boot Editor</source>\n        <translation type=\"unfinished\">About EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1314\"/>\n        <source>&amp;Export</source>\n        <translation type=\"unfinished\">&amp;Export</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1317\"/>\n        <source>Export</source>\n        <translation type=\"unfinished\">Export</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1323\"/>\n        <source>Ctrl+E</source>\n        <translation type=\"unfinished\">Ctrl+E</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1331\"/>\n        <source>&amp;Import</source>\n        <translation type=\"unfinished\">&amp;Import</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1334\"/>\n        <source>Import</source>\n        <translation type=\"unfinished\">Import</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1340\"/>\n        <source>Ctrl+I</source>\n        <translation type=\"unfinished\">Ctrl+I</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1348\"/>\n        <source>&amp;Dump raw EFI data</source>\n        <translation type=\"unfinished\">&amp;Dump raw EFI data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1351\"/>\n        <source>Dump raw EFI data</source>\n        <translation type=\"unfinished\">Dump raw EFI data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"26\"/>\n        <source>Working…</source>\n        <translation type=\"unfinished\">Working…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"92\"/>\n        <source>Undo %1</source>\n        <translation type=\"unfinished\">Undo %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"95\"/>\n        <source>Redo %1</source>\n        <translation type=\"unfinished\">Redo %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"137\"/>\n        <source>Are you sure you want to reload the entries?&lt;br/&gt;ALL of your changes will be lost!</source>\n        <translation type=\"unfinished\">Are you sure you want to reload the entries?&lt;br/&gt;ALL of your changes will be lost!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"162\"/>\n        <source>Are you sure you want to reorder the boot entries?&lt;br/&gt;All indexes will be overwritten!</source>\n        <translation type=\"unfinished\">Are you sure you want to reorder the boot entries?&lt;br/&gt;All indexes will be overwritten!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"221\"/>\n        <source>Are you sure you want to save?&lt;br/&gt;Your EFI configuration will be overwritten!</source>\n        <translation type=\"unfinished\">Are you sure you want to save?&lt;br/&gt;Your EFI configuration will be overwritten!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <source>Open boot configuration dump</source>\n        <translation type=\"unfinished\">Open boot configuration dump</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>JSON documents (*.json)</source>\n        <translation type=\"unfinished\">JSON documents (*.json)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <source>Save boot configuration dump</source>\n        <translation type=\"unfinished\">Save boot configuration dump</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>Save raw EFI dump</source>\n        <translation type=\"unfinished\">Save raw EFI dump</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"31\"/>\n        <source>&lt;h1&gt;EFI Boot Editor&lt;/h1&gt;&lt;p&gt;Version &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Boot Editor for (U)EFI based systems.&lt;/p&gt;</source>\n        <extracomment>About dialog</extracomment>\n        <translation type=\"unfinished\">&lt;h1&gt;EFI Boot Editor&lt;/h1&gt;&lt;p&gt;Version &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Boot Editor for (U)EFI based systems.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"45\"/>\n        <source>&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;Website&lt;/a&gt;&lt;/p&gt;&lt;p&gt;The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.&lt;/p&gt;&lt;p&gt;License: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL Version 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;On Linux uses &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; for EFI variables access.&lt;/p&gt;&lt;p&gt;Uses Tango Icons as fallback icons.&lt;/p&gt;</source>\n        <extracomment>About dialog details</extracomment>\n        <translation type=\"unfinished\">&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;Website&lt;/a&gt;&lt;/p&gt;&lt;p&gt;The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.&lt;/p&gt;&lt;p&gt;License: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL Version 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;On Linux uses &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; for EFI variables access.&lt;/p&gt;&lt;p&gt;Uses Tango Icons as fallback icons.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"330\"/>\n        <source>Reorder %1 entries</source>\n        <translation type=\"unfinished\">Reorder %1 entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"453\"/>\n        <source>Are you sure you want to quit?</source>\n        <translation type=\"unfinished\">Are you sure you want to quit?</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"123\"/>\n        <source>EFI support required</source>\n        <translation type=\"unfinished\">EFI support required</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditorCLI</name>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"13\"/>\n        <source>Boot Editor for (U)EFI based systems.</source>\n        <translation type=\"unfinished\">Boot Editor for (U)EFI based systems.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <source>Export configuration.</source>\n        <translation type=\"unfinished\">Export configuration.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>FILE</source>\n        <translation type=\"unfinished\">FILE</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <source>Dump raw EFI data.</source>\n        <translation type=\"unfinished\">Dump raw EFI data.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>Import configuration from JSON (either from export or raw dump).</source>\n        <translation type=\"unfinished\">Import configuration from JSON (either from export or raw dump).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"19\"/>\n        <source>Force import, don&apos;t ask for confirmation.</source>\n        <translation type=\"unfinished\">Force import, don&apos;t ask for confirmation.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"26\"/>\n        <source>EFI support required</source>\n        <translation type=\"unfinished\">EFI support required</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"45\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Loading EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"47\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"57\"/>\n        <source>Exporting boot configuration…</source>\n        <translation type=\"unfinished\">Exporting boot configuration…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"67\"/>\n        <source>Importing boot configuration…</source>\n        <translation type=\"unfinished\">Importing boot configuration…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Loaded %0 %1 entries</source>\n        <translation type=\"unfinished\">Loaded %0 %1 entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <source>Boot</source>\n        <translation type=\"unfinished\">Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <source>Driver</source>\n        <translation type=\"unfinished\">Driver</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <source>System Preparation</source>\n        <translation type=\"unfinished\">System Preparation</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Hot Key</source>\n        <translation type=\"unfinished\">Hot Key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"78\"/>\n        <source>Are you sure you want to save?\nYour EFI configuration will be overwritten!</source>\n        <translation type=\"unfinished\">Are you sure you want to save?\nYour EFI configuration will be overwritten!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"86\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Saving EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"98\"/>\n        <source>ERROR: %0! %1</source>\n        <translation type=\"unfinished\">ERROR: %0! %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"114\"/>\n        <source>Finished</source>\n        <translation type=\"unfinished\">Finished</translation>\n    </message>\n</context>\n<context>\n    <name>EFIKeySequenceEdit</name>\n    <message>\n        <location filename=\"../src/efikeysequenceedit.cpp\" line=\"109\"/>\n        <source>Press hot key</source>\n        <translation type=\"unfinished\">Press hot key</translation>\n    </message>\n</context>\n<context>\n    <name>FilePathDialog</name>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"12\"/>\n        <source>File path editor</source>\n        <translation type=\"unfinished\">File path editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"47\"/>\n        <source>PCI</source>\n        <translation type=\"unfinished\">PCI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"80\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"86\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"196\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"202\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"218\"/>\n        <source>Function</source>\n        <translation type=\"unfinished\">Function</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"121\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"127\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"143\"/>\n        <source>Device</source>\n        <translation type=\"unfinished\">Device</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"721\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"727\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"742\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"835\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"841\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"856\"/>\n        <source>HID</source>\n        <translation type=\"unfinished\">HID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"761\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"767\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"782\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"896\"/>\n        <source>UID</source>\n        <translation type=\"unfinished\">UID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1813\"/>\n        <source>USB</source>\n        <translation type=\"unfinished\">USB</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1819\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1893\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1909\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3688\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3710\"/>\n        <source>Interface</source>\n        <translation type=\"unfinished\">Interface</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7442\"/>\n        <source>Vendor</source>\n        <translation type=\"unfinished\">Vendor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7445\"/>\n        <source>Vendor settings</source>\n        <translation type=\"unfinished\">Vendor settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7448\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1778\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1793\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5824\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6348\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7117\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7546\"/>\n        <source>GUID</source>\n        <translation type=\"unfinished\">GUID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5539\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7587\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7850\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7853\"/>\n        <source>Data format</source>\n        <translation type=\"unfinished\">Data format</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5542\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7590\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7856\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5546\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5869\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7860\"/>\n        <source>BASE64</source>\n        <translation type=\"unfinished\">BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1168\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5551\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5874\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7865\"/>\n        <source>UTF-16</source>\n        <translation type=\"unfinished\">UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1173\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5556\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7604\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7870\"/>\n        <source>UTF-8</source>\n        <translation type=\"unfinished\">UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5561\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7875\"/>\n        <source>HEX</source>\n        <translation type=\"unfinished\">HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5523\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5901\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7888\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7891\"/>\n        <source>Data</source>\n        <translation type=\"unfinished\">Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7894\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7565\"/>\n        <source>Vendor data</source>\n        <translation type=\"unfinished\">Vendor data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7481\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7757\"/>\n        <source>Type</source>\n        <translation type=\"unfinished\">Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7478\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7500\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7504\"/>\n        <source>HW</source>\n        <translation type=\"unfinished\">HW</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7509\"/>\n        <source>MSG</source>\n        <translation type=\"unfinished\">MSG</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7514\"/>\n        <source>MEDIA</source>\n        <translation type=\"unfinished\">MEDIA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2292\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2298\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2313\"/>\n        <source>MAC</source>\n        <translation type=\"unfinished\">MAC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2265\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;MAC settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;MAC settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2374\"/>\n        <source>IPv4</source>\n        <translation type=\"unfinished\">IPv4</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2380\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv4 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv4 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2569\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2591\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2925\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2931\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2947\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4110\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4116\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4132\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6616\"/>\n        <source>Protocol</source>\n        <translation type=\"unfinished\">Protocol</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3003\"/>\n        <source>Static</source>\n        <translation type=\"unfinished\">Static</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2692\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Subnet mask.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Subnet mask.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2730\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5479\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5486\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5503\"/>\n        <source>IPv6</source>\n        <translation type=\"unfinished\">IPv6</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2736\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv6 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv6 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3008\"/>\n        <source>Stateless auto-configuration</source>\n        <translation type=\"unfinished\">Stateless auto-configuration</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3013\"/>\n        <source>Stateful auto-configuration</source>\n        <translation type=\"unfinished\">Stateful auto-configuration</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3920\"/>\n        <source>SATA</source>\n        <translation type=\"unfinished\">SATA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SATA settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SATA settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1387\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1393\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1409\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1658\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1664\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1679\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3900\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4035\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4041\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4057\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4191\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4197\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4212\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4496\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4502\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4610\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4616\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4988\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5009\"/>\n        <source>LUN</source>\n        <translation type=\"unfinished\">LUN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4885\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4901\"/>\n        <source>URI</source>\n        <translation type=\"unfinished\">URI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6105\"/>\n        <source>Disk</source>\n        <translation type=\"unfinished\">Disk</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6102\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6123\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6126\"/>\n        <source>Choose disk</source>\n        <translation type=\"unfinished\">Choose disk</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6129\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Choose disk from discovered in the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Choose disk from discovered in the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6133\"/>\n        <source>Custom</source>\n        <translation type=\"unfinished\">Custom</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6147\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6150\"/>\n        <source>Reload drives</source>\n        <translation type=\"unfinished\">Reload drives</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reload system drives list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reload system drives list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6343\"/>\n        <source>MBR</source>\n        <translation type=\"unfinished\">MBR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6177\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6183\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6199\"/>\n        <source>Partition</source>\n        <translation type=\"unfinished\">Partition</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6720\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6741\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6797\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6812\"/>\n        <source>Name</source>\n        <translation type=\"unfinished\">Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7176\"/>\n        <source>BIOS Boot Specification</source>\n        <translation type=\"unfinished\">BIOS Boot Specification</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7405\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7411\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7427\"/>\n        <source>Description</source>\n        <translation type=\"unfinished\">Description</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7639\"/>\n        <source>End</source>\n        <translation type=\"unfinished\">End</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7669\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7672\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7678\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7797\"/>\n        <source>Sub-Type</source>\n        <translation type=\"unfinished\">Sub-Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7675\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7697\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7701\"/>\n        <source>End This Instance</source>\n        <translation type=\"unfinished\">End This Instance</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7706\"/>\n        <source>End Entire</source>\n        <translation type=\"unfinished\">End Entire</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7718\"/>\n        <source>Unknown</source>\n        <translation type=\"unfinished\">Unknown</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"50\"/>\n        <source>The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.</source>\n        <translation type=\"unfinished\">The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"53\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"77\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"99\"/>\n        <source>PCI Function Number.</source>\n        <translation type=\"unfinished\">PCI Function Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"83\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"105\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Function Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Function Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"118\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"140\"/>\n        <source>PCI Device Number.</source>\n        <translation type=\"unfinished\">PCI Device Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"124\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Device Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Device Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"163\"/>\n        <source>PCCARD</source>\n        <translation type=\"unfinished\">PCCARD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"166\"/>\n        <source>PCCARD Settings.</source>\n        <translation type=\"unfinished\">PCCARD Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCCARD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCCARD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"193\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"215\"/>\n        <source>Function Number (0 = First Function).</source>\n        <translation type=\"unfinished\">Function Number (0 = First Function).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"199\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"221\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Function Number (0 = First Function).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Function Number (0 = First Function).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"238\"/>\n        <source>Memory Mapped</source>\n        <translation type=\"unfinished\">Memory Mapped</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"241\"/>\n        <source>Memory Mapped Settings.</source>\n        <translation type=\"unfinished\">Memory Mapped Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Memory Mapped Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Memory Mapped Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"268\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"290\"/>\n        <source>The type of memory to allocate.</source>\n        <translation type=\"unfinished\">The type of memory to allocate.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"271\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"293\"/>\n        <source>Memory Type</source>\n        <translation type=\"unfinished\">Memory Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"274\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"296\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The type of memory to allocate.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The type of memory to allocate.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"300\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1584\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1738\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1753\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3145\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3160\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4416\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4437\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6868\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6883\"/>\n        <source>Reserved</source>\n        <translation type=\"unfinished\">Reserved</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"305\"/>\n        <source>Loader Code</source>\n        <translation type=\"unfinished\">Loader Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"310\"/>\n        <source>Loader Data</source>\n        <translation type=\"unfinished\">Loader Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"315\"/>\n        <source>Boot Services Code</source>\n        <translation type=\"unfinished\">Boot Services Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"320\"/>\n        <source>Boot Services Data</source>\n        <translation type=\"unfinished\">Boot Services Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"325\"/>\n        <source>Runtime Services Code</source>\n        <translation type=\"unfinished\">Runtime Services Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"330\"/>\n        <source>Runtime Services Data</source>\n        <translation type=\"unfinished\">Runtime Services Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"335\"/>\n        <source>Conventional</source>\n        <translation type=\"unfinished\">Conventional</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"340\"/>\n        <source>Unusable</source>\n        <translation type=\"unfinished\">Unusable</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"345\"/>\n        <source>ACPI Reclaim</source>\n        <translation type=\"unfinished\">ACPI Reclaim</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"350\"/>\n        <source>ACPI Memory NVS</source>\n        <translation type=\"unfinished\">ACPI Memory NVS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"355\"/>\n        <source>Memory Mapped IO</source>\n        <translation type=\"unfinished\">Memory Mapped IO</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"360\"/>\n        <source>Memory Mapped IO Port Space</source>\n        <translation type=\"unfinished\">Memory Mapped IO Port Space</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"365\"/>\n        <source>Pal Code</source>\n        <translation type=\"unfinished\">Pal Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"370\"/>\n        <source>Persistent</source>\n        <translation type=\"unfinished\">Persistent</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"375\"/>\n        <source>Unaccepted</source>\n        <translation type=\"unfinished\">Unaccepted</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"383\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7013\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7034\"/>\n        <source>Starting Memory Address.</source>\n        <translation type=\"unfinished\">Starting Memory Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"386\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"407\"/>\n        <source>Start Address</source>\n        <translation type=\"unfinished\">Start Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"389\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7019\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7040\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"423\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7053\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7074\"/>\n        <source>Ending Memory Address.</source>\n        <translation type=\"unfinished\">Ending Memory Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"426\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"432\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"447\"/>\n        <source>End Address</source>\n        <translation type=\"unfinished\">End Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"429\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7080\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ending Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ending Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"467\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"522\"/>\n        <source>Controller</source>\n        <translation type=\"unfinished\">Controller</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"470\"/>\n        <source>Controller settings.</source>\n        <translation type=\"unfinished\">Controller settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"473\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"519\"/>\n        <source>Controller number.</source>\n        <translation type=\"unfinished\">Controller number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"525\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"542\"/>\n        <source>BMC</source>\n        <translation type=\"unfinished\">BMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"545\"/>\n        <source>The Device Path for a Baseboard Management Controller (BMC) host interface.</source>\n        <translation type=\"unfinished\">The Device Path for a Baseboard Management Controller (BMC) host interface.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"548\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for a Baseboard Management Controller (BMC) host interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for a Baseboard Management Controller (BMC) host interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"602\"/>\n        <source>The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.</source>\n        <translation type=\"unfinished\">The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"579\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"589\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2332\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2354\"/>\n        <source>Interface Type</source>\n        <translation type=\"unfinished\">Interface Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"582\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"612\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"625\"/>\n        <source>Keyboard Controller Style</source>\n        <translation type=\"unfinished\">Keyboard Controller Style</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"630\"/>\n        <source>Server Management Interface Chip</source>\n        <translation type=\"unfinished\">Server Management Interface Chip</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"635\"/>\n        <source>Block Transfer</source>\n        <translation type=\"unfinished\">Block Transfer</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"643\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"664\"/>\n        <source>Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.</source>\n        <translation type=\"unfinished\">Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"667\"/>\n        <source>Base Address</source>\n        <translation type=\"unfinished\">Base Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"670\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"688\"/>\n        <source>ACPI</source>\n        <translation type=\"unfinished\">ACPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"805\"/>\n        <source>This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.</source>\n        <translation type=\"unfinished\">This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"808\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"718\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"739\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"832\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"853\"/>\n        <source>Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.</source>\n        <translation type=\"unfinished\">Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"724\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"745\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"838\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"859\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"779\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"872\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"893\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.</source>\n        <translation type=\"unfinished\">Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"764\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"785\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"899\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"802\"/>\n        <source>Expanded</source>\n        <translation type=\"unfinished\">Expanded</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"912\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"933\"/>\n        <source>Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.</source>\n        <translation type=\"unfinished\">Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"915\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"921\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"936\"/>\n        <source>CID</source>\n        <translation type=\"unfinished\">CID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"918\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"939\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"952\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"974\"/>\n        <source>Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.</source>\n        <translation type=\"unfinished\">Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"955\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"961\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"977\"/>\n        <source>HIDSTR</source>\n        <translation type=\"unfinished\">HIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"958\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"980\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"987\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1009\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.</source>\n        <translation type=\"unfinished\">Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"990\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"996\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1012\"/>\n        <source>UIDSTR</source>\n        <translation type=\"unfinished\">UIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"993\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1015\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1044\"/>\n        <source>Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.</source>\n        <translation type=\"unfinished\">Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1025\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1031\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1047\"/>\n        <source>CIDSTR</source>\n        <translation type=\"unfinished\">CIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1028\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1050\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1061\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1094\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1100\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1115\"/>\n        <source>ADR</source>\n        <translation type=\"unfinished\">ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1064\"/>\n        <source>The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.</source>\n        <translation type=\"unfinished\">The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1067\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1091\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1112\"/>\n        <source>ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required</source>\n        <translation type=\"unfinished\">ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1097\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1118\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1131\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1192\"/>\n        <source>This device path may optionally contain more than one ADR entry.</source>\n        <translation type=\"unfinished\">This device path may optionally contain more than one ADR entry.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1195\"/>\n        <source>Additional ADR</source>\n        <translation type=\"unfinished\">Additional ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1198\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path may optionally contain more than one ADR entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path may optionally contain more than one ADR entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1153\"/>\n        <source>Additional ADR format.</source>\n        <translation type=\"unfinished\">Additional ADR format.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1156\"/>\n        <source>Additional ADR format</source>\n        <translation type=\"unfinished\">Additional ADR format</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1159\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Additional ADR format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Additional ADR format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1209\"/>\n        <source>NVDIMM</source>\n        <translation type=\"unfinished\">NVDIMM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1212\"/>\n        <source>This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.</source>\n        <translation type=\"unfinished\">This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1260\"/>\n        <source>NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.</source>\n        <translation type=\"unfinished\">NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1242\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1248\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1263\"/>\n        <source>NFIT Device Handle</source>\n        <translation type=\"unfinished\">NFIT Device Handle</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1245\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1284\"/>\n        <source>ATAPI</source>\n        <translation type=\"unfinished\">ATAPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1287\"/>\n        <source>ATAPI Settings.</source>\n        <translation type=\"unfinished\">ATAPI Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1336\"/>\n        <source>Set to zero for primary or one for secondary.</source>\n        <translation type=\"unfinished\">Set to zero for primary or one for secondary.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1317\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1323\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1339\"/>\n        <source>Primary</source>\n        <translation type=\"unfinished\">Primary</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1320\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1342\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for primary or one for secondary.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for primary or one for secondary.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1349\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1371\"/>\n        <source>Set to zero for master or one for slave mode.</source>\n        <translation type=\"unfinished\">Set to zero for master or one for slave mode.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1374\"/>\n        <source>Slave</source>\n        <translation type=\"unfinished\">Slave</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1377\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for master or one for slave mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for master or one for slave mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1384\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1406\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4054\"/>\n        <source>Logical Unit Number.</source>\n        <translation type=\"unfinished\">Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1390\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1412\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4038\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1429\"/>\n        <source>SCSI</source>\n        <translation type=\"unfinished\">SCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1432\"/>\n        <source>SCSI Settings.</source>\n        <translation type=\"unfinished\">SCSI Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1435\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1481\"/>\n        <source>Target ID on the SCSI bus (PUN).</source>\n        <translation type=\"unfinished\">Target ID on the SCSI bus (PUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1962\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1984\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4969\"/>\n        <source>Target ID</source>\n        <translation type=\"unfinished\">Target ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1465\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1487\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the SCSI bus (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the SCSI bus (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4985\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5006\"/>\n        <source>Logical Unit Number (LUN).</source>\n        <translation type=\"unfinished\">Logical Unit Number (LUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5012\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1545\"/>\n        <source>Fibre Channel</source>\n        <translation type=\"unfinished\">Fibre Channel</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1548\"/>\n        <source>Fibre Channel Settings</source>\n        <translation type=\"unfinished\">Fibre Channel Settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1551\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1596\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1750\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4434\"/>\n        <source>Reserved.</source>\n        <translation type=\"unfinished\">Reserved.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1581\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1602\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1756\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3142\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4419\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1615\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1636\"/>\n        <source>Fibre Channel World Wide Name.</source>\n        <translation type=\"unfinished\">Fibre Channel World Wide Name.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1624\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1639\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4456\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4477\"/>\n        <source>World Wide Name</source>\n        <translation type=\"unfinished\">World Wide Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1621\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1642\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel World Wide Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel World Wide Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1676\"/>\n        <source>Fibre Channel Logical Unit Number.</source>\n        <translation type=\"unfinished\">Fibre Channel Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1661\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1682\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1699\"/>\n        <source>Firewire</source>\n        <translation type=\"unfinished\">Firewire</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1702\"/>\n        <source>Firewire Settings.</source>\n        <translation type=\"unfinished\">Firewire Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1705\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firewire Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firewire Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1790\"/>\n        <source>1394 Global Unique ID (GUID)</source>\n        <translation type=\"unfinished\">1394 Global Unique ID (GUID)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1796\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 Global Unique ID (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 Global Unique ID (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1816\"/>\n        <source>USB settings.</source>\n        <translation type=\"unfinished\">USB settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1865\"/>\n        <source>USB Parent Port Number.</source>\n        <translation type=\"unfinished\">USB Parent Port Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1852\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1868\"/>\n        <source>Parent Port</source>\n        <translation type=\"unfinished\">Parent Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1871\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Parent Port Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Parent Port Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1906\"/>\n        <source>USB Interface Number.</source>\n        <translation type=\"unfinished\">USB Interface Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1912\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1929\"/>\n        <source>I2O</source>\n        <translation type=\"unfinished\">I2O</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1932\"/>\n        <source>I2O Settings</source>\n        <translation type=\"unfinished\">I2O Settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1935\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;I2O Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;I2O Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1981\"/>\n        <source>Target ID (TID) for a device.</source>\n        <translation type=\"unfinished\">Target ID (TID) for a device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1965\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1987\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID (TID) for a device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID (TID) for a device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2004\"/>\n        <source>InfiniBand</source>\n        <translation type=\"unfinished\">InfiniBand</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2007\"/>\n        <source>InfiniBand Settings.</source>\n        <translation type=\"unfinished\">InfiniBand Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2010\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;InfiniBand Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;InfiniBand Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2034\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2067\"/>\n        <source>Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.</source>\n        <translation type=\"unfinished\">Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2043\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2055\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2076\"/>\n        <source>Resource Flags</source>\n        <translation type=\"unfinished\">Resource Flags</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2046\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2079\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2098\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2119\"/>\n        <source>128-bit Global Identifier for remote fabric port</source>\n        <translation type=\"unfinished\">128-bit Global Identifier for remote fabric port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2101\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2122\"/>\n        <source>PORT GID</source>\n        <translation type=\"unfinished\">PORT GID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2104\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2125\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;128-bit Global Identifier for remote fabric port&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;128-bit Global Identifier for remote fabric port&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2135\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2156\"/>\n        <source>64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)</source>\n        <translation type=\"unfinished\">64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2138\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2144\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2159\"/>\n        <source>IOC GUID/Service ID</source>\n        <translation type=\"unfinished\">IOC GUID/Service ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2141\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2162\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2175\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2196\"/>\n        <source>64-bit persistent ID of remote IOC port.</source>\n        <translation type=\"unfinished\">64-bit persistent ID of remote IOC port.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2184\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2199\"/>\n        <source>Target Port ID</source>\n        <translation type=\"unfinished\">Target Port ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2181\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote IOC port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote IOC port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2236\"/>\n        <source>64-bit persistent ID of remote device.</source>\n        <translation type=\"unfinished\">64-bit persistent ID of remote device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2239\"/>\n        <source>Device ID</source>\n        <translation type=\"unfinished\">Device ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2259\"/>\n        <source>MAC Address</source>\n        <translation type=\"unfinished\">MAC Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2262\"/>\n        <source>MAC settings.</source>\n        <translation type=\"unfinished\">MAC settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2289\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2310\"/>\n        <source>The MAC address for a network interface padded with 0s.</source>\n        <translation type=\"unfinished\">The MAC address for a network interface padded with 0s.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2295\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2316\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The MAC address for a network interface padded with 0s.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The MAC address for a network interface padded with 0s.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2329\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2351\"/>\n        <source>Network interface type (i.e., 802.3, FDDI). See RFC 3232.</source>\n        <translation type=\"unfinished\">Network interface type (i.e., 802.3, FDDI). See RFC 3232.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2357\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network interface type (i.e., 802.3, FDDI). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network interface type (i.e., 802.3, FDDI). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2377\"/>\n        <source>IPv4 settings.</source>\n        <translation type=\"unfinished\">IPv4 settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2425\"/>\n        <source>The local IPv4 address.</source>\n        <translation type=\"unfinished\">The local IPv4 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2407\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2763\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2784\"/>\n        <source>Local IP Address</source>\n        <translation type=\"unfinished\">Local IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2431\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2465\"/>\n        <source>The remote IPv4 address.</source>\n        <translation type=\"unfinished\">The remote IPv4 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2447\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2824\"/>\n        <source>Remote IP Address</source>\n        <translation type=\"unfinished\">Remote IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2471\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2862\"/>\n        <source>The local port number.</source>\n        <translation type=\"unfinished\">The local port number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2487\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2865\"/>\n        <source>Local Port</source>\n        <translation type=\"unfinished\">Local Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2490\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2547\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2903\"/>\n        <source>The remote port number.</source>\n        <translation type=\"unfinished\">The remote port number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2550\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2906\"/>\n        <source>Remote Port</source>\n        <translation type=\"unfinished\">Remote Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2553\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2909\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2566\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2588\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2922\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2944\"/>\n        <source>The network protocol (i.e., UDP, TCP). See RFC 3232.</source>\n        <translation type=\"unfinished\">The network protocol (i.e., UDP, TCP). See RFC 3232.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2928\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2950\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The network protocol (i.e., UDP, TCP). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The network protocol (i.e., UDP, TCP). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2631\"/>\n        <source>0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.</source>\n        <translation type=\"unfinished\">0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2635\"/>\n        <source>Static IP Address</source>\n        <translation type=\"unfinished\">Static IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2667\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3083\"/>\n        <source>The Gateway IP Address.</source>\n        <translation type=\"unfinished\">The Gateway IP Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3071\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3086\"/>\n        <source>Gateway IP Address</source>\n        <translation type=\"unfinished\">Gateway IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2673\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Gateway IP Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Gateway IP Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2686\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2707\"/>\n        <source>Subnet mask.</source>\n        <translation type=\"unfinished\">Subnet mask.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2689\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2695\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2710\"/>\n        <source>Subnet Mask</source>\n        <translation type=\"unfinished\">Subnet Mask</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2733\"/>\n        <source>IPv6 settings.</source>\n        <translation type=\"unfinished\">IPv6 settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2760\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2781\"/>\n        <source>The local IPv6 address.</source>\n        <translation type=\"unfinished\">The local IPv6 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2787\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2821\"/>\n        <source>The remote IPv6 address.</source>\n        <translation type=\"unfinished\">The remote IPv6 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2963\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2989\"/>\n        <source>0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.</source>\n        <translation type=\"unfinished\">0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2976\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2994\"/>\n        <source>IP Address Origin</source>\n        <translation type=\"unfinished\">IP Address Origin</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2971\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2997\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3021\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3043\"/>\n        <source>The Prefix Length.</source>\n        <translation type=\"unfinished\">The Prefix Length.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3024\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3030\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3046\"/>\n        <source>Prefix Length</source>\n        <translation type=\"unfinished\">Prefix Length</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3027\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3049\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Prefix Length.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Prefix Length.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3106\"/>\n        <source>UART</source>\n        <translation type=\"unfinished\">UART</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3109\"/>\n        <source>UART Settings.</source>\n        <translation type=\"unfinished\">UART Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3112\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3176\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3197\"/>\n        <source>The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.</source>\n        <translation type=\"unfinished\">The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3179\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3185\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3200\"/>\n        <source>Baud Rate</source>\n        <translation type=\"unfinished\">Baud Rate</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3182\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3203\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3216\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3238\"/>\n        <source>The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.</source>\n        <translation type=\"unfinished\">The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3219\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3225\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3241\"/>\n        <source>Data Bits</source>\n        <translation type=\"unfinished\">Data Bits</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3222\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3257\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3291\"/>\n        <source>The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.</source>\n        <translation type=\"unfinished\">The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3266\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3300\"/>\n        <source>Parity</source>\n        <translation type=\"unfinished\">Parity</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3303\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3313\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3394\"/>\n        <source>Default</source>\n        <translation type=\"unfinished\">Default</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3318\"/>\n        <source>No</source>\n        <translation type=\"unfinished\">No</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3323\"/>\n        <source>Even</source>\n        <translation type=\"unfinished\">Even</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3328\"/>\n        <source>Odd</source>\n        <translation type=\"unfinished\">Odd</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3333\"/>\n        <source>Mark</source>\n        <translation type=\"unfinished\">Mark</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3338\"/>\n        <source>Space</source>\n        <translation type=\"unfinished\">Space</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3346\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3376\"/>\n        <source>The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.</source>\n        <translation type=\"unfinished\">The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3353\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3363\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3383\"/>\n        <source>Stop Bits</source>\n        <translation type=\"unfinished\">Stop Bits</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3356\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3399\"/>\n        <source>1</source>\n        <translation type=\"unfinished\">1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3404\"/>\n        <source>1.5</source>\n        <translation type=\"unfinished\">1.5</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3409\"/>\n        <source>2</source>\n        <translation type=\"unfinished\">2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3421\"/>\n        <source>USB Class</source>\n        <translation type=\"unfinished\">USB Class</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3424\"/>\n        <source>USB Class Settings.</source>\n        <translation type=\"unfinished\">USB Class Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3427\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Class Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Class Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3451\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3472\"/>\n        <source>Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.</source>\n        <translation type=\"unfinished\">Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3454\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3460\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3475\"/>\n        <source>Vendor ID</source>\n        <translation type=\"unfinished\">Vendor ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3457\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3478\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3491\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3512\"/>\n        <source>Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.</source>\n        <translation type=\"unfinished\">Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3515\"/>\n        <source>Product ID</source>\n        <translation type=\"unfinished\">Product ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3518\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3552\"/>\n        <source>The class code assigned by the USB-IF. A value of 0xFF will match any class code.</source>\n        <translation type=\"unfinished\">The class code assigned by the USB-IF. A value of 0xFF will match any class code.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3540\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3555\"/>\n        <source>Device Class</source>\n        <translation type=\"unfinished\">Device Class</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3537\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3558\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The class code assigned by the USB-IF. A value of 0xFF will match any class code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The class code assigned by the USB-IF. A value of 0xFF will match any class code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3592\"/>\n        <source>The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.</source>\n        <translation type=\"unfinished\">The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3574\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3595\"/>\n        <source>Device Subclass</source>\n        <translation type=\"unfinished\">Device Subclass</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3632\"/>\n        <source>The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.</source>\n        <translation type=\"unfinished\">The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3635\"/>\n        <source>Device Protocol</source>\n        <translation type=\"unfinished\">Device Protocol</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3617\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3655\"/>\n        <source>USB WWID</source>\n        <translation type=\"unfinished\">USB WWID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3658\"/>\n        <source>This device path describes a USB device using its serial number.</source>\n        <translation type=\"unfinished\">This device path describes a USB device using its serial number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3661\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a USB device using its serial number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a USB device using its serial number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3685\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3707\"/>\n        <source>USB interface Number.</source>\n        <translation type=\"unfinished\">USB interface Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3747\"/>\n        <source>USB vendor id of the device.</source>\n        <translation type=\"unfinished\">USB vendor id of the device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3750\"/>\n        <source>Device Vendor Id</source>\n        <translation type=\"unfinished\">Device Vendor Id</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3753\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB vendor id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB vendor id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3787\"/>\n        <source>USB product id of the device.</source>\n        <translation type=\"unfinished\">USB product id of the device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3790\"/>\n        <source>Device Product Id</source>\n        <translation type=\"unfinished\">Device Product Id</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3793\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB product id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB product id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3828\"/>\n        <source>Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).</source>\n        <translation type=\"unfinished\">Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3815\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3831\"/>\n        <source>Serial Number</source>\n        <translation type=\"unfinished\">Serial Number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3812\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3845\"/>\n        <source>Device Logical Unit</source>\n        <translation type=\"unfinished\">Device Logical Unit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3848\"/>\n        <source>Device Logical Unit Settings.</source>\n        <translation type=\"unfinished\">Device Logical Unit Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3851\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device Logical Unit Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device Logical Unit Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3897\"/>\n        <source>Logical Unit Number for the interface.</source>\n        <translation type=\"unfinished\">Logical Unit Number for the interface.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3903\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number for the interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number for the interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3923\"/>\n        <source>SATA settings.</source>\n        <translation type=\"unfinished\">SATA settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3950\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3972\"/>\n        <source>The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.</source>\n        <translation type=\"unfinished\">The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3953\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3975\"/>\n        <source>HBA Port</source>\n        <translation type=\"unfinished\">HBA Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3956\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3978\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4013\"/>\n        <source>The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.</source>\n        <translation type=\"unfinished\">The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4000\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4016\"/>\n        <source>Port Multiplier Port</source>\n        <translation type=\"unfinished\">Port Multiplier Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3997\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4019\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4077\"/>\n        <source>iSCSI</source>\n        <translation type=\"unfinished\">iSCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4080\"/>\n        <source>iSCSI Settings.</source>\n        <translation type=\"unfinished\">iSCSI Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4083\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4129\"/>\n        <source>Network Protocol (0 = TCP, 1+ = reserved).</source>\n        <translation type=\"unfinished\">Network Protocol (0 = TCP, 1+ = reserved).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4113\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network Protocol (0 = TCP, 1+ = reserved).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network Protocol (0 = TCP, 1+ = reserved).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4148\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4169\"/>\n        <source>iSCSI Login Options.</source>\n        <translation type=\"unfinished\">iSCSI Login Options.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4151\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4172\"/>\n        <source>Options</source>\n        <translation type=\"unfinished\">Options</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4154\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4175\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Login Options.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Login Options.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4188\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4209\"/>\n        <source>8 byte array containing the iSCSI Logical Unit Number.</source>\n        <translation type=\"unfinished\">8 byte array containing the iSCSI Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4194\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing the iSCSI Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing the iSCSI Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4228\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4250\"/>\n        <source>iSCSI Target Portal group tag the initiator intends to establish a session with.</source>\n        <translation type=\"unfinished\">iSCSI Target Portal group tag the initiator intends to establish a session with.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4231\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4253\"/>\n        <source>Target Portal Group</source>\n        <translation type=\"unfinished\">Target Portal Group</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4234\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4256\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Target Portal group tag the initiator intends to establish a session with.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Target Portal group tag the initiator intends to establish a session with.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4291\"/>\n        <source>iSCSI NodeTarget Name.</source>\n        <translation type=\"unfinished\">iSCSI NodeTarget Name.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4272\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4294\"/>\n        <source>Target Name</source>\n        <translation type=\"unfinished\">Target Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4275\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4297\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI NodeTarget Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI NodeTarget Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4308\"/>\n        <source>VLAN</source>\n        <translation type=\"unfinished\">VLAN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4311\"/>\n        <source>VLAN Settings.</source>\n        <translation type=\"unfinished\">VLAN Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4314\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4360\"/>\n        <source>VLAN identifier (0-4094).</source>\n        <translation type=\"unfinished\">VLAN identifier (0-4094).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4341\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4347\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4363\"/>\n        <source>Vlan ID</source>\n        <translation type=\"unfinished\">Vlan ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4344\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4366\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN identifier (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN identifier (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4383\"/>\n        <source>Fibre Channel Ex</source>\n        <translation type=\"unfinished\">Fibre Channel Ex</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4386\"/>\n        <source>The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation type=\"unfinished\">The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4389\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4474\"/>\n        <source>8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).</source>\n        <translation type=\"unfinished\">8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4480\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4514\"/>\n        <source>8 byte array containing Fibre Channel Logical Unit Number.</source>\n        <translation type=\"unfinished\">8 byte array containing Fibre Channel Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4499\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4520\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4537\"/>\n        <source>SAS Extended Messaging</source>\n        <translation type=\"unfinished\">SAS Extended Messaging</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4540\"/>\n        <source>The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation type=\"unfinished\">The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4543\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4567\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4588\"/>\n        <source>8-byte array of the SAS Address for Serial Attached SCSI Target Port.</source>\n        <translation type=\"unfinished\">8-byte array of the SAS Address for Serial Attached SCSI Target Port.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4570\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4576\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4591\"/>\n        <source>SAS Address</source>\n        <translation type=\"unfinished\">SAS Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4573\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4594\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Address for Serial Attached SCSI Target Port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Address for Serial Attached SCSI Target Port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4628\"/>\n        <source>8-byte array of the SAS Logical Unit Number.</source>\n        <translation type=\"unfinished\">8-byte array of the SAS Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4613\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4634\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4647\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4668\"/>\n        <source>More Information about the device and its interconnect.</source>\n        <translation type=\"unfinished\">More Information about the device and its interconnect.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4650\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4656\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4671\"/>\n        <source>Device and Topology Info</source>\n        <translation type=\"unfinished\">Device and Topology Info</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4653\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4674\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;More Information about the device and its interconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;More Information about the device and its interconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4687\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4709\"/>\n        <source>Relative Target Port (RTP).</source>\n        <translation type=\"unfinished\">Relative Target Port (RTP).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4690\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4696\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4712\"/>\n        <source>Relative Target Port</source>\n        <translation type=\"unfinished\">Relative Target Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4715\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Relative Target Port (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Relative Target Port (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4732\"/>\n        <source>NVM Express NS</source>\n        <translation type=\"unfinished\">NVM Express NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4735\"/>\n        <source>NVM Express Namespace Settings.</source>\n        <translation type=\"unfinished\">NVM Express Namespace Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4738\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM Express Namespace Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM Express Namespace Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4783\"/>\n        <source>Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.</source>\n        <translation type=\"unfinished\">Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4765\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4771\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4786\"/>\n        <source>NSID</source>\n        <translation type=\"unfinished\">NSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4768\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4789\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4802\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4823\"/>\n        <source>This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.</source>\n        <translation type=\"unfinished\">This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4805\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4811\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4826\"/>\n        <source>EUI-64</source>\n        <translation type=\"unfinished\">EUI-64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4808\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4829\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4849\"/>\n        <source>Refer to RFC 3986 for details on the URI contents.</source>\n        <translation type=\"unfinished\">Refer to RFC 3986 for details on the URI contents.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Refer to RFC 3986 for details on the URI contents.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Refer to RFC 3986 for details on the URI contents.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4876\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4898\"/>\n        <source>Instance of the URI pursuant to RFC 3986.</source>\n        <translation type=\"unfinished\">Instance of the URI pursuant to RFC 3986.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4882\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Instance of the URI pursuant to RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Instance of the URI pursuant to RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4915\"/>\n        <source>UFS</source>\n        <translation type=\"unfinished\">UFS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4918\"/>\n        <source>UFS Settings.</source>\n        <translation type=\"unfinished\">UFS Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4966\"/>\n        <source>Target ID on the UFS interface (PUN).</source>\n        <translation type=\"unfinished\">Target ID on the UFS interface (PUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4972\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the UFS interface (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the UFS interface (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5029\"/>\n        <source>SD</source>\n        <translation type=\"unfinished\">SD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5032\"/>\n        <source>SD Settings.</source>\n        <translation type=\"unfinished\">SD Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5035\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5081\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5299\"/>\n        <source>Slot Number</source>\n        <translation type=\"unfinished\">Slot Number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5084\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5280\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5286\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5302\"/>\n        <source>Slot</source>\n        <translation type=\"unfinished\">Slot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5087\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5283\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5305\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Slot Number&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Slot Number&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5104\"/>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\">Bluetooth</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5107\"/>\n        <source>EFI Bluetooth Settings.</source>\n        <translation type=\"unfinished\">EFI Bluetooth Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5110\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI Bluetooth Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI Bluetooth Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5155\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5373\"/>\n        <source>48-bit Bluetooth device address.</source>\n        <translation type=\"unfinished\">48-bit Bluetooth device address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5143\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5158\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5361\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5376\"/>\n        <source>Device Address</source>\n        <translation type=\"unfinished\">Device Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5161\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5379\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-bit Bluetooth device address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-bit Bluetooth device address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5178\"/>\n        <source>Wi-Fi</source>\n        <translation type=\"unfinished\">Wi-Fi</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5181\"/>\n        <source>Wi-Fi Settings.</source>\n        <translation type=\"unfinished\">Wi-Fi Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5184\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wi-Fi Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wi-Fi Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5208\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5230\"/>\n        <source>SSID in octet string.</source>\n        <translation type=\"unfinished\">SSID in octet string.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5211\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5217\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5233\"/>\n        <source>SSID</source>\n        <translation type=\"unfinished\">SSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5214\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5236\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID in octet string.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID in octet string.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5247\"/>\n        <source>eMMC</source>\n        <translation type=\"unfinished\">eMMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5250\"/>\n        <source>Embedded Multi-Media Card Settings.</source>\n        <translation type=\"unfinished\">Embedded Multi-Media Card Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5253\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Embedded Multi-Media Card Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Embedded Multi-Media Card Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5322\"/>\n        <source>BluetoothLE</source>\n        <translation type=\"unfinished\">BluetoothLE</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5325\"/>\n        <source>EFI BluetoothLE Settings.</source>\n        <translation type=\"unfinished\">EFI BluetoothLE Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5328\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI BluetoothLE Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI BluetoothLE Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5416\"/>\n        <source>0x00 - Public Device Address.\n0x01 - Random Device Address.</source>\n        <translation type=\"unfinished\">0x00 - Public Device Address.\n0x01 - Random Device Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5396\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5403\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5420\"/>\n        <source>Address Type</source>\n        <translation type=\"unfinished\">Address Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5399\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5423\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Public Device Address.\n0x01 - Random Device Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Public Device Address.\n0x01 - Random Device Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5428\"/>\n        <source>Public</source>\n        <translation type=\"unfinished\">Public</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5433\"/>\n        <source>Random</source>\n        <translation type=\"unfinished\">Random</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5445\"/>\n        <source>DNS</source>\n        <translation type=\"unfinished\">DNS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5448\"/>\n        <source>DNS Settings.</source>\n        <translation type=\"unfinished\">DNS Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5451\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DNS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DNS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5499\"/>\n        <source>0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.</source>\n        <translation type=\"unfinished\">0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5482\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5506\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5514\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5575\"/>\n        <source>One or more instances of the DNS server address in EFI_IP_ADDRESS.</source>\n        <translation type=\"unfinished\">One or more instances of the DNS server address in EFI_IP_ADDRESS.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5520\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5581\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;One or more instances of the DNS server address in EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;One or more instances of the DNS server address in EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5536\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7584\"/>\n        <source>Data format.</source>\n        <translation type=\"unfinished\">Data format.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5592\"/>\n        <source>NVDIMM NS</source>\n        <translation type=\"unfinished\">NVDIMM NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5595\"/>\n        <source>This device path describes a bootable NVDIMM namespace that is defined by a namespace label.</source>\n        <translation type=\"unfinished\">This device path describes a bootable NVDIMM namespace that is defined by a namespace label.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVDIMM namespace that is defined by a namespace label.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVDIMM namespace that is defined by a namespace label.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5622\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5643\"/>\n        <source>Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.</source>\n        <translation type=\"unfinished\">Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5646\"/>\n        <source>UUID</source>\n        <translation type=\"unfinished\">UUID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5628\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5649\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5663\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5698\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5706\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5724\"/>\n        <source>REST Service</source>\n        <translation type=\"unfinished\">REST Service</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5666\"/>\n        <source>REST Service Settings.</source>\n        <translation type=\"unfinished\">REST Service Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5669\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;REST Service Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;REST Service Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5719\"/>\n        <source>0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.</source>\n        <translation type=\"unfinished\">0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5701\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5727\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5733\"/>\n        <source>Redfish</source>\n        <translation type=\"unfinished\">Redfish</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5738\"/>\n        <source>OData</source>\n        <translation type=\"unfinished\">OData</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5743\"/>\n        <source>Vendor specific</source>\n        <translation type=\"unfinished\">Vendor specific</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5775\"/>\n        <source>0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.</source>\n        <translation type=\"unfinished\">0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5755\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5779\"/>\n        <source>Access Mode</source>\n        <translation type=\"unfinished\">Access Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5782\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5787\"/>\n        <source>In-Band</source>\n        <translation type=\"unfinished\">In-Band</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5792\"/>\n        <source>Out-of-band</source>\n        <translation type=\"unfinished\">Out-of-band</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5821\"/>\n        <source>GUID of vendor specific REST service.</source>\n        <translation type=\"unfinished\">GUID of vendor specific REST service.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID of vendor specific REST service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID of vendor specific REST service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5898\"/>\n        <source>Vendor-defined data.</source>\n        <translation type=\"unfinished\">Vendor-defined data.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5915\"/>\n        <source>NVMe-oF NS</source>\n        <translation type=\"unfinished\">NVMe-oF NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5918\"/>\n        <source>This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.</source>\n        <translation type=\"unfinished\">This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5967\"/>\n        <source>Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.</source>\n        <translation type=\"unfinished\">Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5970\"/>\n        <source>NIDT</source>\n        <translation type=\"unfinished\">NIDT</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5973\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5986\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6007\"/>\n        <source>Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.</source>\n        <translation type=\"unfinished\">Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5989\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5995\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6010\"/>\n        <source>NID</source>\n        <translation type=\"unfinished\">NID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5992\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6013\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6023\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6045\"/>\n        <source>Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.</source>\n        <translation type=\"unfinished\">Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6026\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6048\"/>\n        <source>Subsystem NQN</source>\n        <translation type=\"unfinished\">Subsystem NQN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6029\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6051\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6066\"/>\n        <source>Hard Drive</source>\n        <translation type=\"unfinished\">Hard Drive</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6069\"/>\n        <source>The Hard Drive Media Device Path is used to represent a partition on a hard drive.</source>\n        <translation type=\"unfinished\">The Hard Drive Media Device Path is used to represent a partition on a hard drive.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6072\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Hard Drive Media Device Path is used to represent a partition on a hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Hard Drive Media Device Path is used to represent a partition on a hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6174\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6196\"/>\n        <source>Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].</source>\n        <translation type=\"unfinished\">Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6180\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6236\"/>\n        <source>Starting LBA of the partition on the hard drive.</source>\n        <translation type=\"unfinished\">Starting LBA of the partition on the hard drive.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6466\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6487\"/>\n        <source>Partition Start</source>\n        <translation type=\"unfinished\">Partition Start</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting LBA of the partition on the hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting LBA of the partition on the hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6255\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6276\"/>\n        <source>Size of the partition in units of Logical Blocks.</source>\n        <translation type=\"unfinished\">Size of the partition in units of Logical Blocks.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6258\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6264\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6279\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6527\"/>\n        <source>Partition Size</source>\n        <translation type=\"unfinished\">Partition Size</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6261\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6282\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Logical Blocks.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Logical Blocks.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6295\"/>\n        <source>Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation type=\"unfinished\">Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6301\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6310\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6367\"/>\n        <source>Partition Signature</source>\n        <translation type=\"unfinished\">Partition Signature</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6304\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6322\"/>\n        <source>PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.</source>\n        <translation type=\"unfinished\">PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6328\"/>\n        <source>Signature Type</source>\n        <translation type=\"unfinished\">Signature Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6331\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6338\"/>\n        <source>None</source>\n        <translation type=\"unfinished\">None</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6361\"/>\n        <source>Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation type=\"unfinished\">Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6370\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6392\"/>\n        <source>CD-ROM</source>\n        <translation type=\"unfinished\">CD-ROM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6395\"/>\n        <source>The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.</source>\n        <translation type=\"unfinished\">The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6398\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6444\"/>\n        <source>Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.</source>\n        <translation type=\"unfinished\">Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6425\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6431\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6447\"/>\n        <source>Boot Entry</source>\n        <translation type=\"unfinished\">Boot Entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6450\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6463\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6484\"/>\n        <source>Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.</source>\n        <translation type=\"unfinished\">Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6469\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6490\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6524\"/>\n        <source>Size of the partition in units of Blocks, also called Sectors.</source>\n        <translation type=\"unfinished\">Size of the partition in units of Blocks, also called Sectors.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6530\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Blocks, also called Sectors.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Blocks, also called Sectors.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6547\"/>\n        <source>File Path</source>\n        <translation type=\"unfinished\">File Path</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6550\"/>\n        <source>File Path settings.</source>\n        <translation type=\"unfinished\">File Path settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6553\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File Path settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File Path settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6599\"/>\n        <source>Path including directory and file names.</source>\n        <translation type=\"unfinished\">Path including directory and file names.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6586\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6602\"/>\n        <source>Path Name</source>\n        <translation type=\"unfinished\">Path Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6583\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6605\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Path including directory and file names.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Path including directory and file names.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6619\"/>\n        <source>The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.</source>\n        <translation type=\"unfinished\">The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6622\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6667\"/>\n        <source>The ID of the protocol.</source>\n        <translation type=\"unfinished\">The ID of the protocol.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6673\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ID of the protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ID of the protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6687\"/>\n        <source>Firmware File</source>\n        <translation type=\"unfinished\">Firmware File</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6690\"/>\n        <source>Describes a firmware file in a firmware volume.</source>\n        <translation type=\"unfinished\">Describes a firmware file in a firmware volume.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6693\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware file in a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware file in a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6717\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6738\"/>\n        <source>Firmware file name GUID.</source>\n        <translation type=\"unfinished\">Firmware file name GUID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6723\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6744\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware file name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware file name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6758\"/>\n        <source>Firmware Volume</source>\n        <translation type=\"unfinished\">Firmware Volume</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6761\"/>\n        <source>Describes a firmware volume.</source>\n        <translation type=\"unfinished\">Describes a firmware volume.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6764\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6809\"/>\n        <source>Firmware volume name GUID.</source>\n        <translation type=\"unfinished\">Firmware volume name GUID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware volume name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware volume name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6829\"/>\n        <source>Relative Offset Range</source>\n        <translation type=\"unfinished\">Relative Offset Range</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6832\"/>\n        <source>This device path node specifies a range of offsets relative to the first byte available on the device.</source>\n        <translation type=\"unfinished\">This device path node specifies a range of offsets relative to the first byte available on the device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6835\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path node specifies a range of offsets relative to the first byte available on the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path node specifies a range of offsets relative to the first byte available on the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6880\"/>\n        <source>Reserved for future use.</source>\n        <translation type=\"unfinished\">Reserved for future use.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6886\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved for future use.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved for future use.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6899\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6920\"/>\n        <source>Offset of the first byte, relative to the parent device node.</source>\n        <translation type=\"unfinished\">Offset of the first byte, relative to the parent device node.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6902\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6908\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6923\"/>\n        <source>Starting Offset</source>\n        <translation type=\"unfinished\">Starting Offset</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6905\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the first byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the first byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6939\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6960\"/>\n        <source>Offset of the last byte, relative to the parent device node.</source>\n        <translation type=\"unfinished\">Offset of the last byte, relative to the parent device node.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6942\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6963\"/>\n        <source>Ending Offset</source>\n        <translation type=\"unfinished\">Ending Offset</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6966\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the last byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the last byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6983\"/>\n        <source>RAM Disk</source>\n        <translation type=\"unfinished\">RAM Disk</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6986\"/>\n        <source>RAM Disk Settings.</source>\n        <translation type=\"unfinished\">RAM Disk Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6989\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7016\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7037\"/>\n        <source>Starting Address</source>\n        <translation type=\"unfinished\">Starting Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7056\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7077\"/>\n        <source>Ending Address</source>\n        <translation type=\"unfinished\">Ending Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7093\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7114\"/>\n        <source>GUID that defines the type of the RAM Disk.</source>\n        <translation type=\"unfinished\">GUID that defines the type of the RAM Disk.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7120\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID that defines the type of the RAM Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID that defines the type of the RAM Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7130\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7152\"/>\n        <source>RAM Disk instance number, if supported.</source>\n        <translation type=\"unfinished\">RAM Disk instance number, if supported.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7133\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7155\"/>\n        <source>Disk Instance</source>\n        <translation type=\"unfinished\">Disk Instance</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7158\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk instance number, if supported.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk instance number, if supported.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7179\"/>\n        <source>This Device Path is used to describe the booting of non-EFI-aware operating systems.</source>\n        <translation type=\"unfinished\">This Device Path is used to describe the booting of non-EFI-aware operating systems.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7182\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path is used to describe the booting of non-EFI-aware operating systems.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path is used to describe the booting of non-EFI-aware operating systems.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7206\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7249\"/>\n        <source>An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.</source>\n        <translation type=\"unfinished\">An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7220\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7263\"/>\n        <source>Device Type</source>\n        <translation type=\"unfinished\">Device Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7223\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7290\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7347\"/>\n        <source>Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero</source>\n        <translation type=\"unfinished\">Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7311\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7368\"/>\n        <source>Status Flag</source>\n        <translation type=\"unfinished\">Status Flag</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7371\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7402\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7424\"/>\n        <source>String that describes the boot device to a user.</source>\n        <translation type=\"unfinished\">String that describes the boot device to a user.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7408\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7430\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;String that describes the boot device to a user.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;String that describes the boot device to a user.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7543\"/>\n        <source>Vendor-assigned GUID that defines the data that follows.</source>\n        <translation type=\"unfinished\">Vendor-assigned GUID that defines the data that follows.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7549\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-assigned GUID that defines the data that follows.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-assigned GUID that defines the data that follows.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7562\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7622\"/>\n        <source>Vendor-defined variable size data.</source>\n        <translation type=\"unfinished\">Vendor-defined variable size data.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7568\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7628\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined variable size data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined variable size data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7642\"/>\n        <source>Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.</source>\n        <translation type=\"unfinished\">Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7645\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7721\"/>\n        <source>Unknown file path specifier settings</source>\n        <translation type=\"unfinished\">Unknown file path specifier settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7724\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown file path specifier settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown file path specifier settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7748\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7772\"/>\n        <source>Unknown Type</source>\n        <translation type=\"unfinished\">Unknown Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7754\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7775\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7812\"/>\n        <source>Unknown Sub-Type</source>\n        <translation type=\"unfinished\">Unknown Sub-Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7828\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7831\"/>\n        <source>Unknown data</source>\n        <translation type=\"unfinished\">Unknown data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/filepathdialog.cpp\" line=\"1569\"/>\n        <source>Couldn&apos;t change data format!</source>\n        <translation type=\"unfinished\">Couldn&apos;t change data format!</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeyListModel</name>\n    <message>\n        <location filename=\"../src/hotkeylistmodel.cpp\" line=\"100\"/>\n        <source>boot option</source>\n        <translation type=\"unfinished\">boot option</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Boot option</source>\n        <translation type=\"unfinished\">Boot option</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Hot key</source>\n        <translation type=\"unfinished\">Hot key</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Vendor data</source>\n        <translation type=\"unfinished\">Vendor data</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeysDialog</name>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"20\"/>\n        <source>Hot Keys editor</source>\n        <translation type=\"unfinished\">Hot Keys editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"41\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"44\"/>\n        <source>Hot Keys</source>\n        <translation type=\"unfinished\">Hot Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"47\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"125\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"128\"/>\n        <source>Index filter</source>\n        <translation type=\"unfinished\">Index filter</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"131\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Index filter&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Index filter&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"163\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"166\"/>\n        <source>Remove hot key</source>\n        <translation type=\"unfinished\">Remove hot key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"191\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"194\"/>\n        <source>Add hot key</source>\n        <translation type=\"unfinished\">Add hot key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"197\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <location filename=\"../include/commands.h\" line=\"21\"/>\n        <location filename=\"../include/commands.h\" line=\"66\"/>\n        <source>Change %1 to &quot;%2&quot;</source>\n        <translation type=\"unfinished\">Change %1 to &quot;%2&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"35\"/>\n        <source>Insert %1 entry &quot;%2&quot; at position %3</source>\n        <translation type=\"unfinished\">Insert %1 entry &quot;%2&quot; at position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"50\"/>\n        <source>Remove %1 entry &quot;%2&quot; from position %3</source>\n        <translation type=\"unfinished\">Remove %1 entry &quot;%2&quot; from position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"73\"/>\n        <location filename=\"../src/commands.cpp\" line=\"116\"/>\n        <source>Move %1 entry &quot;%2&quot; from position %3 to %4</source>\n        <translation type=\"unfinished\">Move %1 entry &quot;%2&quot; from position %3 to %4</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <location filename=\"../include/commands.h\" line=\"157\"/>\n        <location filename=\"../include/commands.h\" line=\"198\"/>\n        <source>Change %1 entry &quot;%2&quot; %3 to &quot;%4&quot;</source>\n        <translation type=\"unfinished\">Change %1 entry &quot;%2&quot; %3 to &quot;%4&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <source>Optional data</source>\n        <translation type=\"unfinished\">Optional data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"227\"/>\n        <source>Insert %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation type=\"unfinished\">Insert %1 entry &quot;%2&quot; file path at position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"242\"/>\n        <source>Remove %1 entry &quot;%2&quot; file path from position %3</source>\n        <translation type=\"unfinished\">Remove %1 entry &quot;%2&quot; file path from position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"257\"/>\n        <source>Set %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation type=\"unfinished\">Set %1 entry &quot;%2&quot; file path at position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <source>Insert %1 entry at position %2</source>\n        <translation type=\"unfinished\">Insert %1 entry at position %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>Key</source>\n        <translation type=\"unfinished\">Key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <source>Remove %1 entry from position %2</source>\n        <translation type=\"unfinished\">Remove %1 entry from position %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <location filename=\"../include/commands.h\" line=\"362\"/>\n        <location filename=\"../include/commands.h\" line=\"403\"/>\n        <source>Change %1 entry at position %2 %3 to &quot;%4&quot;</source>\n        <translation type=\"unfinished\">Change %1 entry at position %2 %3 to &quot;%4&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>keys</source>\n        <translation type=\"unfinished\">keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"293\"/>\n        <location filename=\"../src/commands.cpp\" line=\"333\"/>\n        <source>Move %1 entry &quot;%2&quot; file path from position %3 to %4</source>\n        <translation type=\"unfinished\">Move %1 entry &quot;%2&quot; file path from position %3 to %4</translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/efibooteditor_pl.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"pl\" sourcelanguage=\"en_US\">\n<context>\n    <name>BootEntryForm</name>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"169\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"172\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"182\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"185\"/>\n        <source>Description</source>\n        <translation>Opis</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"198\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"201\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"204\"/>\n        <source>Path</source>\n        <translation>Ścieżka</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"415\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"418\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"478\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"481\"/>\n        <source>Optional data</source>\n        <translation>Dodatkowe dane</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"421\"/>\n        <source>Optional</source>\n        <translation>Dodatkowe</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"434\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"437\"/>\n        <source>Optional data format</source>\n        <translation>Format danych dodatkowych</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"6\"/>\n        <source>Boot entry form</source>\n        <translation>Formularz wpisu rozruchu</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"24\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"27\"/>\n        <source>Error</source>\n        <translation>Bład</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"40\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"43\"/>\n        <source>Error note</source>\n        <translation>Notatka o błędzie</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"46\"/>\n        <source>This entry placeholder is shown here to indicate it&apos;s referenced in boot order. It won&apos;t be modified on save, just left as is.</source>\n        <translation>Ten element zastępczy jest pokazany tutaj, aby wskazać, że odwołuje się do niego opcja kolejności rozruchu. Nie zostanie zmodyfikowany podczas zapisywania, po prostu zostanie pozostawiony bez zmian.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"147\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"150\"/>\n        <source>Hot Keys</source>\n        <translation>Skróty klawiszowe</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Skróty klawiszowe&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"188\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry description.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Opis wpisu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"222\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"225\"/>\n        <source>Device path</source>\n        <translation>Ścieżka urządzenia</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ścieżka urządzenia.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"280\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"283\"/>\n        <source>Move file path up</source>\n        <translation>Przenieś ścieżkę w górę</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"286\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Przenieś ścieżkę w górę.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"305\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"308\"/>\n        <source>Move file path down</source>\n        <translation>Przenieś ścieżkę w dół</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"311\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Przenieś ścieżkę w dół.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"330\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"333\"/>\n        <source>Remove file path</source>\n        <translation>Usuń ścieżkę</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"336\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Usuń ścieżkę.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"355\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"358\"/>\n        <source>Edit file path</source>\n        <translation>Edytuj ścieżkę</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"361\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Edit file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Edytuj ścieżkę.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"380\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"383\"/>\n        <source>Add file path</source>\n        <translation>Dodaj ścieżkę</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dodaj ścieżkę.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Format danych dodatkowych.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"444\"/>\n        <source>BASE64</source>\n        <translation>BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"449\"/>\n        <source>UTF-16</source>\n        <translation>UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"454\"/>\n        <source>UTF-8</source>\n        <translation>UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"459\"/>\n        <source>HEX</source>\n        <translation>HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"484\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry optional data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dodatkowe dane wpisu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"497\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"500\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"503\"/>\n        <source>Attributes</source>\n        <translation>Atrybuty</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"623\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry category.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Kategoria wpisu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"122\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indeks wpisu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"540\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Is entry considered for automatic boot?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Czy wpis jest brany pod uwagę przy automatycznym uruchamianiu?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"569\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hidden.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ukryty.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"585\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Force reconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wymuś ponowne połączenie.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"534\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"537\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"543\"/>\n        <source>Active</source>\n        <translation>Aktywny</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"579\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"582\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"588\"/>\n        <source>Force reconnect</source>\n        <translation>Wymuś ponowne połączenie</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"563\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"566\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"572\"/>\n        <source>Hidden</source>\n        <translation>Ukryty</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"598\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"601\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"604\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"617\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"620\"/>\n        <source>Category</source>\n        <translation>Kategoria</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"627\"/>\n        <source>Boot</source>\n        <translation>Rozruch</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"632\"/>\n        <source>App</source>\n        <translation>Aplikacja</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"68\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"71\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"74\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"116\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"119\"/>\n        <source>Index</source>\n        <translation>Indeks</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentryform.cpp\" line=\"117\"/>\n        <source>Couldn&apos;t change optional data format!</source>\n        <translation>Nie można zmienić formatu danych dodatkowych!</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryListModel</name>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"88\"/>\n        <source>Set Next boot to &quot;%1&quot;</source>\n        <translation>Ustaw następny rozruch na „%1”</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"184\"/>\n        <source>index</source>\n        <translation>indeks</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"200\"/>\n        <source>description</source>\n        <translation>opis</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"237\"/>\n        <source>optional data</source>\n        <translation>dodatkowe dane</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"253\"/>\n        <source>attributes</source>\n        <translation>atrybuty</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"269\"/>\n        <source>next boot</source>\n        <translation>następny rozruch</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryWidget</name>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"12\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"221\"/>\n        <source>Boot entry</source>\n        <translation>Wpis rozruchu</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"36\"/>\n        <source>Next boot</source>\n        <translation>Następny rozruch</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"39\"/>\n        <source>Run at next boot</source>\n        <translation>Uruchom przy następnym starcie</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"42\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;When chosen, entry will run at next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Po wybraniu wpis zostanie uruchomiony przy następnym starcie.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"140\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"143\"/>\n        <source>Current boot</source>\n        <translation>Bieżący rozruch</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This entry is currently booted.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ten wpis został użyty do aktualnego uruchomienia.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"181\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indeks wpisu rozruchu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"218\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry description, human readable name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Opis wpisu rozruchu, nazwa czytelna dla człowieka.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"67\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"70\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"76\"/>\n        <source>Device path</source>\n        <translation>Ścieżka urządzenia</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"73\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ścieżka urządzenia rozruchowego.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"113\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data, arguments passed to boot executable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dodatkowe dane, argumenty przekazywane do pliku wykonywalnego rozruchu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"178\"/>\n        <source>Boot entry index</source>\n        <translation>Indeks wpisu rozruchu</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"184\"/>\n        <source>Index</source>\n        <translation>Indeks</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"212\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"215\"/>\n        <source>Boot entry description</source>\n        <translation>Opis wpisu rozruchu</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"107\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"110\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"116\"/>\n        <source>Optional data</source>\n        <translation>Dodatkowe dane</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootData</name>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"111\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"813\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1027\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1361\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1472\"/>\n        <source>%1: not found</source>\n        <translation>%1: nie znaleziono</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"120\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"821\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1387\"/>\n        <source>%1: failed deserialization</source>\n        <translation>%1: deserializacja nie powiodła się</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Error loading entries</source>\n        <translation>Błąd ładowania wpisów</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Failed to load some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>Nie udało się załadować niektórych wpisów Menedżera rozruchu EFI:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Error saving entries</source>\n        <translation>Błąd podczas zapisywania wpisów</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Entry %1(%2): duplicated index!</source>\n        <translation>Wpis %1(%2): zduplikowany indeks!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"389\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"419\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"458\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"479\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"487\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"516\"/>\n        <source>Error saving %1</source>\n        <translation>Błąd podczas zapisywania %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"407\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"470\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"504\"/>\n        <source>Error removing %1</source>\n        <translation>Błąd podczas usuwania %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Error importing boot configuration</source>\n        <translation>Błąd podczas importowania konfiguracji rozruchu</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <source>Couldn&apos;t open selected file (%1).</source>\n        <translation>Nie można otworzyć wybranego pliku (%1).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <source>Parser failed: %1</source>\n        <translation>Błąd parsowania: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <source>Invalid _Type: %1</source>\n        <translation>Niepoprawny _Type: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <source>Error exporting boot configuration</source>\n        <translation>Błąd eksportowania konfiguracji rozruchu</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <source>Couldn&apos;t open selected file (%1): %2.</source>\n        <translation>Nie można otworzyć wybranego pliku (%1): %2.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <source>Couldn&apos;t write into file (%1): %2.</source>\n        <translation>Nie można zapisać do pliku (%1): %2.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Error dumping raw EFI data</source>\n        <translation>Błąd podczas zrzucania nieprzetworzonych danych EFI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Failed to dump some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>Nie udało się zrzucić niektórych wpisów Menedżera rozruchu EFI:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"905\"/>\n        <source>Timeout</source>\n        <translation>Limit czasu</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"921\"/>\n        <source>Apple boot-args</source>\n        <translation>Argumenty rozruchowe Apple</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"937\"/>\n        <source>Firmware actions</source>\n        <translation>Działania oprogramowania układowego</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"73\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation>Ładowanie wpisów Menedżera rozruchu EFI…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"89\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"787\"/>\n        <source>Searching EFI Boot Manager entries…</source>\n        <translation>Wyszukiwanie wpisów Menedżera rozruchu EFI…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"116\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"292\"/>\n        <source>Processing EFI Boot Manager entries (%1)…</source>\n        <translation>Przetwarzanie wpisów Menedżera rozruchu EFI (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"308\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation>Zapisywanie wpisów Menedżera rozruchu EFI…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"333\"/>\n        <source>Searching old EFI Boot Manager entries…</source>\n        <translation>Wyszukiwanie starych wpisów Menedżera rozruchu EFI…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"374\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"416\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"447\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"476\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"484\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"491\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"513\"/>\n        <source>Saving EFI Boot Manager entries (%1)…</source>\n        <translation>Zapisywanie wpisów Menedżera rozruchu EFI (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"467\"/>\n        <source>Removing old EFI Boot Manager entries (%1)…</source>\n        <translation>Usuwanie starych wpisów Menedżera rozruchu EFI (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"404\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"501\"/>\n        <source>Removing EFI Boot Manager entries (%1)…</source>\n        <translation>Usuwanie wpisów Menedżera rozruchu EFI (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"94\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"338\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"792\"/>\n        <source>Couldn&apos;t load EFI Boot Manager variables</source>\n        <translation>Nie można załadować zmiennych EFI Boot Menedżera</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"100\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"799\"/>\n        <source>Couldn&apos;t find any EFI Boot Manager variables</source>\n        <translation>Nie znaleziono żadnych zmiennych EFI Boot Menedżera</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"529\"/>\n        <source>Importing boot configuration…</source>\n        <translation>Importowanie konfiguracji rozruchu…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"565\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"770\"/>\n        <source>Exporting boot configuration…</source>\n        <translation>Eksportowanie konfiguracji rozruchu…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"587\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"809\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"875\"/>\n        <source>Exporting EFI Boot Manager entries (%1)…</source>\n        <translation>Eksportowanie wpisów Menedżera rozruchu EFI (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1013\"/>\n        <source>Importing boot configuration from JSON…</source>\n        <translation>Importowanie konfiguracji rozruchu z JSON…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1032\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1366\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1477\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1531\"/>\n        <source>Importing EFI Boot Manager entries (%1)…</source>\n        <translation>Importowanie wpisów Menedżera rozruchu EFI (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1035\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1376\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>%1: %2 expected</source>\n        <translation>%1: oczekiwano %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1043\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1048\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1053\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <source>number</source>\n        <translation>liczba</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1058\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1063\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1068\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1073\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1078\"/>\n        <source>bool</source>\n        <translation>wartość logiczna</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1109\"/>\n        <source>%1: unknown boot manager capability</source>\n        <translation>%1: nieznana funkcja menedżera rozruchu</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1122\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1166\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1212\"/>\n        <source>array</source>\n        <translation>tablica</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1333\"/>\n        <source>string</source>\n        <translation>ciąg znaków</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1156\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1192\"/>\n        <source>%1: unknown os indication</source>\n        <translation>%1: nieznane wskazanie systemu operacyjnego</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1083\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1235\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1264\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1290\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1309\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1328\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>object</source>\n        <translation>obiekt</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <source>hexadecimal number</source>\n        <translation>liczba szesnastkowa</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1270\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1315\"/>\n        <source>%1: failed parsing</source>\n        <translation>%1: parsowanie nie powiodło się</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Failed to import some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>Nie udało się zaimportować niektórych wpisów Menedżera rozruchu EFI:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1347\"/>\n        <source>Importing boot configuration from raw dump…</source>\n        <translation>Importowanie konfiguracji rozruchowej z nieprzetworzonego zrzutu…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1379\"/>\n        <source>object(raw_data: string, efi_attributes: number)</source>\n        <extracomment>Expected JSON structure, thrown as error description. raw_data and efi_attributes are field names in JSON file</extracomment>\n        <translation>obiekt(raw_data: ciąg znaków, efi_attributes: liczba)</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"15\"/>\n        <source>Boot</source>\n        <translation>Rozruch</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"16\"/>\n        <source>Driver</source>\n        <translation>Sterownik</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"17\"/>\n        <source>System Preparation</source>\n        <translation>Przygotowanie systemu</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"18\"/>\n        <source>Platform Recovery</source>\n        <translation>Odzyskiwanie Platformy</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditor</name>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"18\"/>\n        <source>EFI Boot Editor</source>\n        <translation>EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"71\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"412\"/>\n        <source>Boot</source>\n        <translation>Rozruch</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"74\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"98\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"101\"/>\n        <source>Boot entries</source>\n        <translation>Wpisy rozruchu</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"77\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"104\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Boot entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Lista wpisów rozruchowych.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"133\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"415\"/>\n        <source>Driver</source>\n        <translation>Sterownik</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"136\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"160\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"163\"/>\n        <source>Driver entries</source>\n        <translation>Wpisy sterowników</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"139\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"166\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Driver entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Lista wpisów sterowników.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"195\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"418\"/>\n        <source>System Preparation</source>\n        <translation>Przygotowanie systemu</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"198\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"222\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"225\"/>\n        <source>SysPrep entries</source>\n        <translation>Wpisy SysPrep</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"201\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of SysPrep entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Lista wpisów SysPrep.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"257\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"421\"/>\n        <source>Platform Recovery</source>\n        <translation>Odzyskiwanie Platformy</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"260\"/>\n        <source>PlatformRecovery entries</source>\n        <translation>Wpisy Odzyskiwania Platformy</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"263\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of PlatformRecovery entries (READONLY).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Lista wpisów Odzyskiwania Platformy (TYLKO DO ODCZYTU).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"284\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"287\"/>\n        <source>PlatformRecovery entries (READONLY)</source>\n        <translation>Wpisy Odzyskiwania Platformy (TYLKO DO ODCZYTU)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"346\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"349\"/>\n        <source>Add new entry</source>\n        <translation>Dodaj nowy wpis</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"352\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to add new boot entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Kliknij, aby dodać nowy wpis rozruchowy.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"377\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"380\"/>\n        <source>Duplicate entry</source>\n        <translation>Zduplikuj wpis</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"383\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Duplicate entry&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Zduplikuj wpis&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"408\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"411\"/>\n        <source>Remove entry</source>\n        <translation>Usuń wpis</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"414\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to remove currently selected entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Kliknij, aby usunąć aktualnie wybrany wpis.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"439\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"442\"/>\n        <source>Move entry up</source>\n        <translation>Przenieś wpis w górę</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"445\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Kliknij, aby przenieść aktualnie wybrany wpis wyżej.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"470\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"473\"/>\n        <source>Move entry down</source>\n        <translation>Przenieś wpis w dół</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"476\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Kliknij, aby przenieść aktualnie wybrany wpis w dół.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"501\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"504\"/>\n        <source>Reorder entries</source>\n        <translation>Zmień kolejność wpisów</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"507\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click here to adjust the order of all entries based on their position on the list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Kliknij tutaj, aby dostosować kolejność wszystkich wpisów na podstawie ich pozycji na liście.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"599\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"608\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Global settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ustawienia globalne.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"602\"/>\n        <source>Global</source>\n        <translation>Globalne</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"632\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"635\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"654\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"657\"/>\n        <source>Boot manager timeout</source>\n        <translation>Limit czasu menedżera rozruchu</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"638\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"660\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot manager timeout.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Limit czasu menedżera rozruchu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"663\"/>\n        <source>s</source>\n        <translation>s</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"674\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"677\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"686\"/>\n        <source>Firmware details</source>\n        <translation>Szczegóły oprogramowania układowego</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"680\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"689\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Szczegóły oprogramowania układowego.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"683\"/>\n        <source>Firmware</source>\n        <translation>Oprogramowanie układowe</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"719\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"722\"/>\n        <source>Available firmware features</source>\n        <translation>Dostępne funkcje oprogramowania układowego</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"725\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware features.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dostępne funkcje oprogramowania układowego.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"728\"/>\n        <source>Features</source>\n        <translation>Funkcje</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"737\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"740\"/>\n        <source>Platform supports reporting of deferred capsule processing by creation of result variable</source>\n        <translation>Platforma obsługuje raportowanie odroczonego przetwarzania kapsułek poprzez utworzenie zmiennej wynikowej</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"743\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports reporting of deferred capsule processing by creation of result variable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platforma obsługuje raportowanie odroczonego przetwarzania kapsułek poprzez utworzenie zmiennej wynikowej.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"746\"/>\n        <source>Capsule Reporting</source>\n        <translation>Raportowanie kapsułkowe</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"756\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"759\"/>\n        <source>Firmware supports timestamp based revocation</source>\n        <translation>Oprogramowanie układowe obsługuje odwołanie na podstawie znacznika czasu</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"762\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware supports timestamp based revocation.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Oprogramowanie układowe obsługuje odwołanie oparte na znaczniku czasu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"765\"/>\n        <source>Timestamp based revocation</source>\n        <translation>Odwołanie oparte na znaczniku czasu</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"775\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"778\"/>\n        <source>Platform supports processing of Firmware Management Protocol update capsule</source>\n        <translation>Platforma obsługuje przetwarzanie kapsuły aktualizacyjnej Firmware Management Protocol</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"781\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of Firmware Management Protocol update capsule.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platforma obsługuje przetwarzanie pakietu aktualizacji Firmware Management Protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"784\"/>\n        <source>FMP Capsule</source>\n        <translation>Kapsuła FMP</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"794\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"797\"/>\n        <source>Platform supports processing of file capsules</source>\n        <translation>Platforma obsługuje przetwarzanie kapsuł plików</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"800\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of file capsules.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platforma obsługuje przetwarzanie kapsuł plików.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"803\"/>\n        <source>File Capsule</source>\n        <translation>Kapsuła pliku</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"828\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"831\"/>\n        <source>Available firmware actions</source>\n        <translation>Dostępne działania oprogramowania układowego</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware actions.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dostępne działania oprogramowania układowego.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"837\"/>\n        <source>Actions</source>\n        <translation>Akcje</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"846\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"849\"/>\n        <source>Stop at a firmware user interface on the next boot</source>\n        <translation>Zatrzymaj się na interfejsie użytkownika oprogramowania układowego przy następnym uruchomieniu</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Stop at a firmware user interface on the next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Zatrzymaj się na interfejsie użytkownika oprogramowania układowego przy następnym uruchomieniu. &lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"855\"/>\n        <source>Boot to firmware UI</source>\n        <translation>Uruchom do interfejsu oprogramowania układowego</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"862\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"865\"/>\n        <source>Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot</source>\n        <translation>Uruchom zbieranie bieżącej konfiguracji i zgłaszanie odświeżonych danych do tabeli konfiguracji systemu EFI przy następnym uruchomieniu</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Uruchom zbieranie bieżącej konfiguracji i zgłaszanie odświeżonych danych do tabeli konfiguracji systemu EFI przy następnym uruchomieniu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"871\"/>\n        <source>Collect current config</source>\n        <translation>Zbierz bieżącą konfigurację</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"878\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"881\"/>\n        <source>Indicate that Platform-defined recovery should commence upon reboot</source>\n        <translation>Wskaż, że odzyskiwanie zdefiniowane przez platformę powinno rozpocząć się po ponownym uruchomieniu</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"884\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that Platform-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wskaż, że odzyskiwanie zdefiniowane przez platformę powinno rozpocząć się po ponownym uruchomieniu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"887\"/>\n        <source>Start Platform recovery</source>\n        <translation>Rozpocznij odzyskiwanie platformy</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"894\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"897\"/>\n        <source>Indicate that OS-defined recovery should commence upon reboot</source>\n        <translation>Wskaż, że odzyskiwanie zdefiniowane przez system operacyjny powinno rozpocząć się po ponownym uruchomieniu</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"900\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that OS-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wskaż, że odzyskiwanie zdefiniowane przez system operacyjny powinno rozpocząć się po ponownym uruchomieniu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"903\"/>\n        <source>Start OS recovery</source>\n        <translation>Rozpocznij odzyskiwanie systemu operacyjnego</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"932\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"935\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"944\"/>\n        <source>Secure boot settings</source>\n        <translation>Ustawienia bezpiecznego rozruchu</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"938\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"947\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Secure boot settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ustawienia bezpiecznego rozruchu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"941\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1025\"/>\n        <source>Secure Boot</source>\n        <translation>Bezpieczny rozruch</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"978\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"981\"/>\n        <source>Defines whether the system is currently operating in Audit Mode</source>\n        <translation>Określa, czy system pracuje obecnie w trybie audytu</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"984\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Audit Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Określa, czy system pracuje obecnie w trybie audytu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"987\"/>\n        <source>Audit Mode</source>\n        <translation>Tryb audytu</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"997\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1000\"/>\n        <source>Defines whether the system is currently operating in Deployed Mode</source>\n        <translation>Określa, czy system pracuje obecnie w trybie wdrożonym</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1003\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Deployed Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Określa, czy system pracuje obecnie w trybie wdrożonym.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1006\"/>\n        <source>Deployed Mode</source>\n        <translation>Tryb wdrożony</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1016\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1019\"/>\n        <source>Defines whether the platform firmware is operating with Secure Boot enabled</source>\n        <translation>Określa, czy oprogramowanie układowe platformy działa z włączonym bezpiecznym rozruchem</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1022\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the platform firmware is operating with Secure Boot enabled.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Określa, czy oprogramowanie układowe platformy działa z włączonym bezpiecznym rozruchem.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1035\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1038\"/>\n        <source>Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables</source>\n        <translation>Określa, czy system powinien wymagać uwierzytelnienia w przypadku żądań do zmiennych zasad bezpiecznego rozruchu</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1041\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Określa, czy system powinien wymagać uwierzytelnienia w przypadku żądań do zmiennych zasad bezpiecznego rozruchu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1044\"/>\n        <source>Setup Mode</source>\n        <translation>Tryb konfiguracji</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1054\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1057\"/>\n        <source>Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys</source>\n        <translation>Określa, czy zmienne zasady rozruchu zabezpieczającego zostały zmodyfikowane przez kogokolwiek innego niż dostawca platformy lub posiadacz kluczy dostarczonych przez dostawcę</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Określa, czy zmienne zasady rozruchu zabezpieczającego zostały zmodyfikowane przez kogokolwiek innego niż dostawca platformy lub posiadacz kluczy dostarczonych przez dostawcę.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1063\"/>\n        <source>Vendor Keys</source>\n        <translation>Klucze dostawców</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1074\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1077\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1086\"/>\n        <source>Apple settings</source>\n        <translation>Ustawienia Apple</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1080\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apple settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ustawienia Apple.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1083\"/>\n        <source>Apple</source>\n        <translation>Apple</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1113\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1116\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1129\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1132\"/>\n        <source>macOS boot arguments</source>\n        <translation>argumenty rozruchowe systemu macOS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1119\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;macOS boot arguments.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Argumenty rozruchowe systemu macOS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1161\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1164\"/>\n        <source>Undo stack</source>\n        <translation>Historia zmian</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1167\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo stack&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Historia zmian&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1194\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Menu Plik.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1214\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Help menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Menu Pomoc.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1255\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Exit the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wyjdź z programu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1272\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apply changes to the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Zastosuj zmiany w systemie.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1289\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reloads EFI data from the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ponowne ładowanie danych EFI z systemu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1306\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Show information about the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Pokaż informacje o programie.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1320\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Export current entries into JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Eksportuj bieżące wpisy do formatu JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1337\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Import EFI data from JSON dump.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Importuj dane EFI ze zrzutu JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1354\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dumps raw EFI data for debugging purposes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Zrzuca nieprzetworzone dane EFI do celów debugowania.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1362\"/>\n        <source>&amp;Undo</source>\n        <translation>&amp;Cofnij</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1365\"/>\n        <source>Undo</source>\n        <translation>Cofnij</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1368\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Cofnij&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1371\"/>\n        <source>Ctrl+Z</source>\n        <translation>Ctrl+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1379\"/>\n        <source>&amp;Redo</source>\n        <translation>&amp;Przywróć</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1382\"/>\n        <source>Redo</source>\n        <translation>Przywróć</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1385\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Redo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Powtórz&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1388\"/>\n        <source>Ctrl+Shift+Z</source>\n        <translation>Ctrl+Shift+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1396\"/>\n        <source>Hot &amp;keys</source>\n        <translation>Skróty &amp;klawiszowe</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1399\"/>\n        <source>Hot Keys</source>\n        <translation>Skróty Klawiszowe</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1402\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Skróty Klawiszowe&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"593\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"596\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"605\"/>\n        <source>Global settings</source>\n        <translation>Globalne ustawienia</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"641\"/>\n        <source>Timeout</source>\n        <translation>Limit czasu</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1122\"/>\n        <source>Boot args</source>\n        <translation>Argumenty rozruchu</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1188\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1191\"/>\n        <source>File</source>\n        <translation>Plik</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1197\"/>\n        <source>&amp;File</source>\n        <translation>&amp;Plik</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1208\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1211\"/>\n        <source>Help</source>\n        <translation>Pomoc</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1217\"/>\n        <source>&amp;Help</source>\n        <translation>&amp;Pomoc</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1225\"/>\n        <source>&amp;Edit</source>\n        <translation>&amp;Edycja</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1249\"/>\n        <source>&amp;Quit</source>\n        <translation>&amp;Zakończ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1252\"/>\n        <source>Quit</source>\n        <translation>Zakończ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1258\"/>\n        <source>Ctrl+Q</source>\n        <translation>Ctrl+Q</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1266\"/>\n        <source>&amp;Save</source>\n        <translation>Zapi&amp;sz</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1269\"/>\n        <source>Save</source>\n        <translation>Zapisz</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1275\"/>\n        <source>Ctrl+S</source>\n        <translation>Ctrl+S</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1283\"/>\n        <source>&amp;Reload</source>\n        <translation>P&amp;rzeładuj</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1286\"/>\n        <source>Reload</source>\n        <translation>Przeładuj</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1292\"/>\n        <source>Ctrl+R</source>\n        <translation>Ctrl+R</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1300\"/>\n        <source>About &amp;EFI Boot Editor</source>\n        <translation>Informacje o &amp;EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1303\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"29\"/>\n        <source>About EFI Boot Editor</source>\n        <translation>Informajce o EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1314\"/>\n        <source>&amp;Export</source>\n        <translation>&amp;Eksportuj</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1317\"/>\n        <source>Export</source>\n        <translation>Eksportuj</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1323\"/>\n        <source>Ctrl+E</source>\n        <translation>Ctrl+E</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1331\"/>\n        <source>&amp;Import</source>\n        <translation>&amp;Importuj</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1334\"/>\n        <source>Import</source>\n        <translation>Importuj</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1340\"/>\n        <source>Ctrl+I</source>\n        <translation>Ctrl+I</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1348\"/>\n        <source>&amp;Dump raw EFI data</source>\n        <translation>Zrzuć nieprzetworzone &amp;dane EFI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1351\"/>\n        <source>Dump raw EFI data</source>\n        <translation>Zrzuć nieprzetworzone dane EFI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"26\"/>\n        <source>Working…</source>\n        <translation>Pracuję…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"92\"/>\n        <source>Undo %1</source>\n        <translation>Cofnij %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"95\"/>\n        <source>Redo %1</source>\n        <translation>Przywróć %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"137\"/>\n        <source>Are you sure you want to reload the entries?&lt;br/&gt;ALL of your changes will be lost!</source>\n        <translation>Czy na pewno chcesz ponownie załadować wpisy?&lt;br/&gt;WSZYSTKIE zmiany zostaną utracone!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"162\"/>\n        <source>Are you sure you want to reorder the boot entries?&lt;br/&gt;All indexes will be overwritten!</source>\n        <translation>Czy na pewno chcesz zmienić kolejność wpisów rozruchowych?&lt;br/&gt;Wszystkie indeksy zostaną nadpisane!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"221\"/>\n        <source>Are you sure you want to save?&lt;br/&gt;Your EFI configuration will be overwritten!</source>\n        <translation>Czy na pewno chcesz zapisać?&lt;br/&gt;Twoja konfiguracja EFI zostanie nadpisana!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <source>Open boot configuration dump</source>\n        <translation>Otwórz zrzut konfiguracji rozruchu</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>JSON documents (*.json)</source>\n        <translation>Dokumenty JSON (*.json)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <source>Save boot configuration dump</source>\n        <translation>Zapisz zrzut konfiguracji rozruchu</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>Save raw EFI dump</source>\n        <translation>Zapisz nieprzetworzony zrzut EFI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"31\"/>\n        <source>&lt;h1&gt;EFI Boot Editor&lt;/h1&gt;&lt;p&gt;Version &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Boot Editor for (U)EFI based systems.&lt;/p&gt;</source>\n        <extracomment>About dialog</extracomment>\n        <translation>&lt;h1&gt;EFI Boot Editor&lt;/h1&gt;&lt;p&gt;Wersja &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt; &lt;p&gt; Edytor rozruchu dla systemów opartych na (U)EFI.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"45\"/>\n        <source>&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;Website&lt;/a&gt;&lt;/p&gt;&lt;p&gt;The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.&lt;/p&gt;&lt;p&gt;License: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL Version 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;On Linux uses &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; for EFI variables access.&lt;/p&gt;&lt;p&gt;Uses Tango Icons as fallback icons.&lt;/p&gt;</source>\n        <extracomment>About dialog details</extracomment>\n        <translation>&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;Witryna internetowa&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Program jest dostarczany w stanie, w jakim się znajduje, BEZ ŻADNEJ GWARANCJI, W TYM GWARANCJI NA PROJEKT, PRZYDATNOŚĆ HANDLOWĄ I PRZYDATNOŚCI DO OKREŚLONEGO CELU.&lt;/p&gt;&lt;p&gt;Licencja: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL wersja 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;W systemie Linux używa &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; do dostępu do zmiennych EFI.&lt;/p&gt;&lt;p&gt;Używa ikon Tango jako ikon awaryjnych.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"330\"/>\n        <source>Reorder %1 entries</source>\n        <translation>Zmiana kolejności wpisów %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"453\"/>\n        <source>Are you sure you want to quit?</source>\n        <translation>Czy na pewno chcesz wyjść?</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"123\"/>\n        <source>EFI support required</source>\n        <translation>Wymagane wsparcie EFI</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditorCLI</name>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"13\"/>\n        <source>Boot Editor for (U)EFI based systems.</source>\n        <translation>Edytor rozruchu dla systemów opartych na (U)EFI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <source>Export configuration.</source>\n        <translation>Eksportuj konfigurację.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>FILE</source>\n        <translation>PLIK</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <source>Dump raw EFI data.</source>\n        <translation>Zrzuć nieprzetworzone dane EFI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>Import configuration from JSON (either from export or raw dump).</source>\n        <translation>Importuj konfigurację z JSON (z eksportu lub nieprzetworzonego zrzutu).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"19\"/>\n        <source>Force import, don&apos;t ask for confirmation.</source>\n        <translation>Wymuś import, nie pytaj o potwierdzenie.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"26\"/>\n        <source>EFI support required</source>\n        <translation>Wymagana obsługa EFI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"45\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation>Ładowanie wpisów Menedżera rozruchu EFI…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"47\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"57\"/>\n        <source>Exporting boot configuration…</source>\n        <translation>Eksportowanie konfiguracji rozruchu…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"67\"/>\n        <source>Importing boot configuration…</source>\n        <translation>Importowanie konfiguracji rozruchu…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Loaded %0 %1 entries</source>\n        <translation>Załadowano %0 wpisów %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <source>Boot</source>\n        <translation>Rozruch</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <source>Driver</source>\n        <translation>Sterownik</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <source>System Preparation</source>\n        <translation>Przygotowanie systemu</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Hot Key</source>\n        <translation>Skrót Klawiszowy</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"78\"/>\n        <source>Are you sure you want to save?\nYour EFI configuration will be overwritten!</source>\n        <translation>Czy na pewno chcesz zapisać?\nTwoja konfiguracja EFI zostanie nadpisana!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"86\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation>Zapisywanie wpisów Menedżera rozruchu EFI…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"98\"/>\n        <source>ERROR: %0! %1</source>\n        <translation>BŁĄD: %0! %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"114\"/>\n        <source>Finished</source>\n        <translation>Zakończono</translation>\n    </message>\n</context>\n<context>\n    <name>EFIKeySequenceEdit</name>\n    <message>\n        <location filename=\"../src/efikeysequenceedit.cpp\" line=\"109\"/>\n        <source>Press hot key</source>\n        <translation>Naciśnij klawisz skrótu</translation>\n    </message>\n</context>\n<context>\n    <name>FilePathDialog</name>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"12\"/>\n        <source>File path editor</source>\n        <translation>Edytor ścieżek plików</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"47\"/>\n        <source>PCI</source>\n        <translation>PCI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"80\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"86\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"196\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"202\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"218\"/>\n        <source>Function</source>\n        <translation>Funkcja</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"121\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"127\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"143\"/>\n        <source>Device</source>\n        <translation>Urządzenie</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"721\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"727\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"742\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"835\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"841\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"856\"/>\n        <source>HID</source>\n        <translation>HID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"761\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"767\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"782\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"896\"/>\n        <source>UID</source>\n        <translation>UID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1813\"/>\n        <source>USB</source>\n        <translation>USB</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1819\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ustawienia USB.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1893\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1909\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3688\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3710\"/>\n        <source>Interface</source>\n        <translation>Interfejs</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7442\"/>\n        <source>Vendor</source>\n        <translation>Dostawca</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7445\"/>\n        <source>Vendor settings</source>\n        <translation>Ustawienia dostawcy</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7448\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ustawienia dostawcy.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1778\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1793\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5824\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6348\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7117\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7546\"/>\n        <source>GUID</source>\n        <translation>GUID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5539\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7587\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7850\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7853\"/>\n        <source>Data format</source>\n        <translation>Format danych</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5542\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7590\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7856\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Format danych.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5546\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5869\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7860\"/>\n        <source>BASE64</source>\n        <translation>BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1168\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5551\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5874\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7865\"/>\n        <source>UTF-16</source>\n        <translation>UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1173\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5556\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7604\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7870\"/>\n        <source>UTF-8</source>\n        <translation>UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5561\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7875\"/>\n        <source>HEX</source>\n        <translation>HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5523\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5901\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7888\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7891\"/>\n        <source>Data</source>\n        <translation>Dane</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7894\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dane.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7565\"/>\n        <source>Vendor data</source>\n        <translation>Dane dostawcy</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7481\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7757\"/>\n        <source>Type</source>\n        <translation>Typ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7478\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7500\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Typ.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7504\"/>\n        <source>HW</source>\n        <translation>HW</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7509\"/>\n        <source>MSG</source>\n        <translation>MSG</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7514\"/>\n        <source>MEDIA</source>\n        <translation>MEDIA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2292\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2298\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2313\"/>\n        <source>MAC</source>\n        <translation>MAC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2265\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;MAC settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ustawienia MAC.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2374\"/>\n        <source>IPv4</source>\n        <translation>IPv4</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2380\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv4 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ustawienia IPv4.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2569\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2591\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2925\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2931\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2947\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4110\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4116\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4132\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6616\"/>\n        <source>Protocol</source>\n        <translation>Protokół</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3003\"/>\n        <source>Static</source>\n        <translation>Statyczny</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2692\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Subnet mask.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Maska podsieci.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2730\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5479\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5486\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5503\"/>\n        <source>IPv6</source>\n        <translation>IPv6</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2736\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv6 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ustawienia IPv6.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3008\"/>\n        <source>Stateless auto-configuration</source>\n        <translation>Bezstanowa autokonfiguracja</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3013\"/>\n        <source>Stateful auto-configuration</source>\n        <translation>Stanowa autokonfiguracja</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3920\"/>\n        <source>SATA</source>\n        <translation>SATA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SATA settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ustawienia SATA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1387\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1393\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1409\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1658\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1664\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1679\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3900\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4035\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4041\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4057\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4191\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4197\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4212\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4496\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4502\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4610\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4616\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4988\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5009\"/>\n        <source>LUN</source>\n        <translation>LUN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4885\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4901\"/>\n        <source>URI</source>\n        <translation>URI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6105\"/>\n        <source>Disk</source>\n        <translation>Dysk</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6102\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dysk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6123\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6126\"/>\n        <source>Choose disk</source>\n        <translation>Wybierz dysk</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6129\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Choose disk from discovered in the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wybierz dysk spośród znalezionych w systemie.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6133\"/>\n        <source>Custom</source>\n        <translation>Własny</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6147\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6150\"/>\n        <source>Reload drives</source>\n        <translation>Przeładuj dyski</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reload system drives list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Przeładuj listę dysków systemowych.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6343\"/>\n        <source>MBR</source>\n        <translation>MBR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6177\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6183\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6199\"/>\n        <source>Partition</source>\n        <translation>Partycja</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6720\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6741\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6797\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6812\"/>\n        <source>Name</source>\n        <translation>Nazwa</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7176\"/>\n        <source>BIOS Boot Specification</source>\n        <translation>Specyfikacja rozruchu systemu BIOS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7405\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7411\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7427\"/>\n        <source>Description</source>\n        <translation>Opis</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7639\"/>\n        <source>End</source>\n        <translation>Koniec</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7669\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7672\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7678\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7797\"/>\n        <source>Sub-Type</source>\n        <translation>Podtyp</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7675\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7697\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Podtyp.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7701\"/>\n        <source>End This Instance</source>\n        <translation>Koniec tej instancji</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7706\"/>\n        <source>End Entire</source>\n        <translation>Koniec całości</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7718\"/>\n        <source>Unknown</source>\n        <translation>Nieznana</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"50\"/>\n        <source>The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.</source>\n        <translation>Ścieżka urządzenia dla PCI definiuje drogę do adresu przestrzeni konfiguracyjnej PCI dla danego urządzenia PCI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"53\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ścieżka urządzenia dla PCI definiuje drogę do adresu przestrzeni konfiguracyjnej PCI dla danego urządzenia PCI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"77\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"99\"/>\n        <source>PCI Function Number.</source>\n        <translation type=\"unfinished\">PCI Function Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"83\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"105\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Function Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Function Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"118\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"140\"/>\n        <source>PCI Device Number.</source>\n        <translation type=\"unfinished\">PCI Device Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"124\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Device Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Device Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"163\"/>\n        <source>PCCARD</source>\n        <translation type=\"unfinished\">PCCARD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"166\"/>\n        <source>PCCARD Settings.</source>\n        <translation type=\"unfinished\">PCCARD Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCCARD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCCARD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"193\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"215\"/>\n        <source>Function Number (0 = First Function).</source>\n        <translation type=\"unfinished\">Function Number (0 = First Function).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"199\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"221\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Function Number (0 = First Function).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Function Number (0 = First Function).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"238\"/>\n        <source>Memory Mapped</source>\n        <translation type=\"unfinished\">Memory Mapped</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"241\"/>\n        <source>Memory Mapped Settings.</source>\n        <translation type=\"unfinished\">Memory Mapped Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Memory Mapped Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Memory Mapped Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"268\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"290\"/>\n        <source>The type of memory to allocate.</source>\n        <translation>Rodzaj pamięci do przydzielenia.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"271\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"293\"/>\n        <source>Memory Type</source>\n        <translation type=\"unfinished\">Memory Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"274\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"296\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The type of memory to allocate.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The type of memory to allocate.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"300\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1584\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1738\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1753\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3145\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3160\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4416\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4437\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6868\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6883\"/>\n        <source>Reserved</source>\n        <translation type=\"unfinished\">Reserved</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"305\"/>\n        <source>Loader Code</source>\n        <translation type=\"unfinished\">Loader Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"310\"/>\n        <source>Loader Data</source>\n        <translation type=\"unfinished\">Loader Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"315\"/>\n        <source>Boot Services Code</source>\n        <translation type=\"unfinished\">Boot Services Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"320\"/>\n        <source>Boot Services Data</source>\n        <translation type=\"unfinished\">Boot Services Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"325\"/>\n        <source>Runtime Services Code</source>\n        <translation type=\"unfinished\">Runtime Services Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"330\"/>\n        <source>Runtime Services Data</source>\n        <translation type=\"unfinished\">Runtime Services Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"335\"/>\n        <source>Conventional</source>\n        <translation type=\"unfinished\">Conventional</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"340\"/>\n        <source>Unusable</source>\n        <translation type=\"unfinished\">Unusable</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"345\"/>\n        <source>ACPI Reclaim</source>\n        <translation type=\"unfinished\">ACPI Reclaim</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"350\"/>\n        <source>ACPI Memory NVS</source>\n        <translation type=\"unfinished\">ACPI Memory NVS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"355\"/>\n        <source>Memory Mapped IO</source>\n        <translation type=\"unfinished\">Memory Mapped IO</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"360\"/>\n        <source>Memory Mapped IO Port Space</source>\n        <translation type=\"unfinished\">Memory Mapped IO Port Space</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"365\"/>\n        <source>Pal Code</source>\n        <translation type=\"unfinished\">Pal Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"370\"/>\n        <source>Persistent</source>\n        <translation type=\"unfinished\">Persistent</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"375\"/>\n        <source>Unaccepted</source>\n        <translation type=\"unfinished\">Unaccepted</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"383\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7013\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7034\"/>\n        <source>Starting Memory Address.</source>\n        <translation type=\"unfinished\">Starting Memory Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"386\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"407\"/>\n        <source>Start Address</source>\n        <translation type=\"unfinished\">Start Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"389\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7019\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7040\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"423\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7053\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7074\"/>\n        <source>Ending Memory Address.</source>\n        <translation type=\"unfinished\">Ending Memory Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"426\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"432\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"447\"/>\n        <source>End Address</source>\n        <translation type=\"unfinished\">End Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"429\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7080\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ending Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ending Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"467\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"522\"/>\n        <source>Controller</source>\n        <translation type=\"unfinished\">Controller</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"470\"/>\n        <source>Controller settings.</source>\n        <translation type=\"unfinished\">Controller settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"473\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"519\"/>\n        <source>Controller number.</source>\n        <translation type=\"unfinished\">Controller number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"525\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"542\"/>\n        <source>BMC</source>\n        <translation type=\"unfinished\">BMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"545\"/>\n        <source>The Device Path for a Baseboard Management Controller (BMC) host interface.</source>\n        <translation type=\"unfinished\">The Device Path for a Baseboard Management Controller (BMC) host interface.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"548\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for a Baseboard Management Controller (BMC) host interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for a Baseboard Management Controller (BMC) host interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"602\"/>\n        <source>The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.</source>\n        <translation type=\"unfinished\">The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"579\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"589\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2332\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2354\"/>\n        <source>Interface Type</source>\n        <translation type=\"unfinished\">Interface Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"582\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"612\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"625\"/>\n        <source>Keyboard Controller Style</source>\n        <translation type=\"unfinished\">Keyboard Controller Style</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"630\"/>\n        <source>Server Management Interface Chip</source>\n        <translation type=\"unfinished\">Server Management Interface Chip</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"635\"/>\n        <source>Block Transfer</source>\n        <translation type=\"unfinished\">Block Transfer</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"643\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"664\"/>\n        <source>Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.</source>\n        <translation type=\"unfinished\">Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"667\"/>\n        <source>Base Address</source>\n        <translation type=\"unfinished\">Base Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"670\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"688\"/>\n        <source>ACPI</source>\n        <translation type=\"unfinished\">ACPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"805\"/>\n        <source>This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.</source>\n        <translation type=\"unfinished\">This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"808\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"718\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"739\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"832\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"853\"/>\n        <source>Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.</source>\n        <translation type=\"unfinished\">Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"724\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"745\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"838\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"859\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"779\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"872\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"893\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.</source>\n        <translation type=\"unfinished\">Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"764\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"785\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"899\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"802\"/>\n        <source>Expanded</source>\n        <translation type=\"unfinished\">Expanded</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"912\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"933\"/>\n        <source>Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.</source>\n        <translation type=\"unfinished\">Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"915\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"921\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"936\"/>\n        <source>CID</source>\n        <translation type=\"unfinished\">CID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"918\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"939\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"952\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"974\"/>\n        <source>Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.</source>\n        <translation type=\"unfinished\">Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"955\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"961\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"977\"/>\n        <source>HIDSTR</source>\n        <translation type=\"unfinished\">HIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"958\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"980\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"987\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1009\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.</source>\n        <translation type=\"unfinished\">Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"990\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"996\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1012\"/>\n        <source>UIDSTR</source>\n        <translation type=\"unfinished\">UIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"993\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1015\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1044\"/>\n        <source>Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.</source>\n        <translation type=\"unfinished\">Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1025\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1031\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1047\"/>\n        <source>CIDSTR</source>\n        <translation type=\"unfinished\">CIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1028\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1050\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1061\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1094\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1100\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1115\"/>\n        <source>ADR</source>\n        <translation type=\"unfinished\">ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1064\"/>\n        <source>The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.</source>\n        <translation type=\"unfinished\">The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1067\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1091\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1112\"/>\n        <source>ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required</source>\n        <translation type=\"unfinished\">ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1097\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1118\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1131\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1192\"/>\n        <source>This device path may optionally contain more than one ADR entry.</source>\n        <translation type=\"unfinished\">This device path may optionally contain more than one ADR entry.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1195\"/>\n        <source>Additional ADR</source>\n        <translation type=\"unfinished\">Additional ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1198\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path may optionally contain more than one ADR entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path may optionally contain more than one ADR entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1153\"/>\n        <source>Additional ADR format.</source>\n        <translation type=\"unfinished\">Additional ADR format.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1156\"/>\n        <source>Additional ADR format</source>\n        <translation type=\"unfinished\">Additional ADR format</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1159\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Additional ADR format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Additional ADR format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1209\"/>\n        <source>NVDIMM</source>\n        <translation type=\"unfinished\">NVDIMM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1212\"/>\n        <source>This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.</source>\n        <translation type=\"unfinished\">This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1260\"/>\n        <source>NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.</source>\n        <translation type=\"unfinished\">NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1242\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1248\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1263\"/>\n        <source>NFIT Device Handle</source>\n        <translation type=\"unfinished\">NFIT Device Handle</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1245\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1284\"/>\n        <source>ATAPI</source>\n        <translation type=\"unfinished\">ATAPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1287\"/>\n        <source>ATAPI Settings.</source>\n        <translation type=\"unfinished\">ATAPI Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1336\"/>\n        <source>Set to zero for primary or one for secondary.</source>\n        <translation type=\"unfinished\">Set to zero for primary or one for secondary.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1317\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1323\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1339\"/>\n        <source>Primary</source>\n        <translation type=\"unfinished\">Primary</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1320\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1342\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for primary or one for secondary.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for primary or one for secondary.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1349\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1371\"/>\n        <source>Set to zero for master or one for slave mode.</source>\n        <translation type=\"unfinished\">Set to zero for master or one for slave mode.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1374\"/>\n        <source>Slave</source>\n        <translation type=\"unfinished\">Slave</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1377\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for master or one for slave mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for master or one for slave mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1384\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1406\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4054\"/>\n        <source>Logical Unit Number.</source>\n        <translation type=\"unfinished\">Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1390\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1412\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4038\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1429\"/>\n        <source>SCSI</source>\n        <translation type=\"unfinished\">SCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1432\"/>\n        <source>SCSI Settings.</source>\n        <translation type=\"unfinished\">SCSI Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1435\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1481\"/>\n        <source>Target ID on the SCSI bus (PUN).</source>\n        <translation type=\"unfinished\">Target ID on the SCSI bus (PUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1962\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1984\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4969\"/>\n        <source>Target ID</source>\n        <translation type=\"unfinished\">Target ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1465\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1487\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the SCSI bus (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the SCSI bus (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4985\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5006\"/>\n        <source>Logical Unit Number (LUN).</source>\n        <translation type=\"unfinished\">Logical Unit Number (LUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5012\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1545\"/>\n        <source>Fibre Channel</source>\n        <translation type=\"unfinished\">Fibre Channel</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1548\"/>\n        <source>Fibre Channel Settings</source>\n        <translation type=\"unfinished\">Fibre Channel Settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1551\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1596\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1750\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4434\"/>\n        <source>Reserved.</source>\n        <translation type=\"unfinished\">Reserved.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1581\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1602\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1756\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3142\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4419\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1615\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1636\"/>\n        <source>Fibre Channel World Wide Name.</source>\n        <translation type=\"unfinished\">Fibre Channel World Wide Name.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1624\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1639\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4456\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4477\"/>\n        <source>World Wide Name</source>\n        <translation type=\"unfinished\">World Wide Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1621\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1642\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel World Wide Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel World Wide Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1676\"/>\n        <source>Fibre Channel Logical Unit Number.</source>\n        <translation type=\"unfinished\">Fibre Channel Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1661\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1682\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1699\"/>\n        <source>Firewire</source>\n        <translation type=\"unfinished\">Firewire</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1702\"/>\n        <source>Firewire Settings.</source>\n        <translation type=\"unfinished\">Firewire Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1705\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firewire Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firewire Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1790\"/>\n        <source>1394 Global Unique ID (GUID)</source>\n        <translation type=\"unfinished\">1394 Global Unique ID (GUID)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1796\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 Global Unique ID (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 Global Unique ID (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1816\"/>\n        <source>USB settings.</source>\n        <translation type=\"unfinished\">USB settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1865\"/>\n        <source>USB Parent Port Number.</source>\n        <translation type=\"unfinished\">USB Parent Port Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1852\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1868\"/>\n        <source>Parent Port</source>\n        <translation type=\"unfinished\">Parent Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1871\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Parent Port Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Parent Port Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1906\"/>\n        <source>USB Interface Number.</source>\n        <translation type=\"unfinished\">USB Interface Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1912\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1929\"/>\n        <source>I2O</source>\n        <translation type=\"unfinished\">I2O</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1932\"/>\n        <source>I2O Settings</source>\n        <translation type=\"unfinished\">I2O Settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1935\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;I2O Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;I2O Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1981\"/>\n        <source>Target ID (TID) for a device.</source>\n        <translation type=\"unfinished\">Target ID (TID) for a device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1965\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1987\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID (TID) for a device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID (TID) for a device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2004\"/>\n        <source>InfiniBand</source>\n        <translation type=\"unfinished\">InfiniBand</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2007\"/>\n        <source>InfiniBand Settings.</source>\n        <translation type=\"unfinished\">InfiniBand Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2010\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;InfiniBand Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;InfiniBand Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2034\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2067\"/>\n        <source>Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.</source>\n        <translation type=\"unfinished\">Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2043\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2055\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2076\"/>\n        <source>Resource Flags</source>\n        <translation type=\"unfinished\">Resource Flags</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2046\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2079\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2098\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2119\"/>\n        <source>128-bit Global Identifier for remote fabric port</source>\n        <translation type=\"unfinished\">128-bit Global Identifier for remote fabric port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2101\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2122\"/>\n        <source>PORT GID</source>\n        <translation type=\"unfinished\">PORT GID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2104\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2125\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;128-bit Global Identifier for remote fabric port&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;128-bit Global Identifier for remote fabric port&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2135\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2156\"/>\n        <source>64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)</source>\n        <translation type=\"unfinished\">64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2138\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2144\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2159\"/>\n        <source>IOC GUID/Service ID</source>\n        <translation type=\"unfinished\">IOC GUID/Service ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2141\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2162\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2175\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2196\"/>\n        <source>64-bit persistent ID of remote IOC port.</source>\n        <translation type=\"unfinished\">64-bit persistent ID of remote IOC port.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2184\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2199\"/>\n        <source>Target Port ID</source>\n        <translation type=\"unfinished\">Target Port ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2181\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote IOC port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote IOC port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2236\"/>\n        <source>64-bit persistent ID of remote device.</source>\n        <translation type=\"unfinished\">64-bit persistent ID of remote device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2239\"/>\n        <source>Device ID</source>\n        <translation type=\"unfinished\">Device ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2259\"/>\n        <source>MAC Address</source>\n        <translation type=\"unfinished\">MAC Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2262\"/>\n        <source>MAC settings.</source>\n        <translation type=\"unfinished\">MAC settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2289\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2310\"/>\n        <source>The MAC address for a network interface padded with 0s.</source>\n        <translation type=\"unfinished\">The MAC address for a network interface padded with 0s.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2295\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2316\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The MAC address for a network interface padded with 0s.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The MAC address for a network interface padded with 0s.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2329\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2351\"/>\n        <source>Network interface type (i.e., 802.3, FDDI). See RFC 3232.</source>\n        <translation type=\"unfinished\">Network interface type (i.e., 802.3, FDDI). See RFC 3232.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2357\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network interface type (i.e., 802.3, FDDI). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network interface type (i.e., 802.3, FDDI). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2377\"/>\n        <source>IPv4 settings.</source>\n        <translation type=\"unfinished\">IPv4 settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2425\"/>\n        <source>The local IPv4 address.</source>\n        <translation type=\"unfinished\">The local IPv4 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2407\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2763\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2784\"/>\n        <source>Local IP Address</source>\n        <translation type=\"unfinished\">Local IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2431\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2465\"/>\n        <source>The remote IPv4 address.</source>\n        <translation type=\"unfinished\">The remote IPv4 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2447\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2824\"/>\n        <source>Remote IP Address</source>\n        <translation type=\"unfinished\">Remote IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2471\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2862\"/>\n        <source>The local port number.</source>\n        <translation type=\"unfinished\">The local port number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2487\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2865\"/>\n        <source>Local Port</source>\n        <translation type=\"unfinished\">Local Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2490\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2547\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2903\"/>\n        <source>The remote port number.</source>\n        <translation type=\"unfinished\">The remote port number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2550\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2906\"/>\n        <source>Remote Port</source>\n        <translation type=\"unfinished\">Remote Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2553\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2909\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2566\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2588\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2922\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2944\"/>\n        <source>The network protocol (i.e., UDP, TCP). See RFC 3232.</source>\n        <translation type=\"unfinished\">The network protocol (i.e., UDP, TCP). See RFC 3232.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2928\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2950\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The network protocol (i.e., UDP, TCP). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The network protocol (i.e., UDP, TCP). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2631\"/>\n        <source>0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.</source>\n        <translation type=\"unfinished\">0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2635\"/>\n        <source>Static IP Address</source>\n        <translation type=\"unfinished\">Static IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2667\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3083\"/>\n        <source>The Gateway IP Address.</source>\n        <translation type=\"unfinished\">The Gateway IP Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3071\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3086\"/>\n        <source>Gateway IP Address</source>\n        <translation type=\"unfinished\">Gateway IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2673\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Gateway IP Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Gateway IP Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2686\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2707\"/>\n        <source>Subnet mask.</source>\n        <translation type=\"unfinished\">Subnet mask.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2689\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2695\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2710\"/>\n        <source>Subnet Mask</source>\n        <translation type=\"unfinished\">Subnet Mask</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2733\"/>\n        <source>IPv6 settings.</source>\n        <translation type=\"unfinished\">IPv6 settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2760\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2781\"/>\n        <source>The local IPv6 address.</source>\n        <translation type=\"unfinished\">The local IPv6 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2787\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2821\"/>\n        <source>The remote IPv6 address.</source>\n        <translation type=\"unfinished\">The remote IPv6 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2963\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2989\"/>\n        <source>0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.</source>\n        <translation type=\"unfinished\">0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2976\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2994\"/>\n        <source>IP Address Origin</source>\n        <translation type=\"unfinished\">IP Address Origin</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2971\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2997\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3021\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3043\"/>\n        <source>The Prefix Length.</source>\n        <translation type=\"unfinished\">The Prefix Length.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3024\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3030\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3046\"/>\n        <source>Prefix Length</source>\n        <translation type=\"unfinished\">Prefix Length</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3027\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3049\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Prefix Length.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Prefix Length.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3106\"/>\n        <source>UART</source>\n        <translation type=\"unfinished\">UART</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3109\"/>\n        <source>UART Settings.</source>\n        <translation type=\"unfinished\">UART Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3112\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3176\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3197\"/>\n        <source>The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.</source>\n        <translation type=\"unfinished\">The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3179\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3185\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3200\"/>\n        <source>Baud Rate</source>\n        <translation type=\"unfinished\">Baud Rate</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3182\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3203\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3216\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3238\"/>\n        <source>The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.</source>\n        <translation type=\"unfinished\">The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3219\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3225\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3241\"/>\n        <source>Data Bits</source>\n        <translation type=\"unfinished\">Data Bits</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3222\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3257\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3291\"/>\n        <source>The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.</source>\n        <translation type=\"unfinished\">The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3266\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3300\"/>\n        <source>Parity</source>\n        <translation type=\"unfinished\">Parity</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3303\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3313\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3394\"/>\n        <source>Default</source>\n        <translation type=\"unfinished\">Default</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3318\"/>\n        <source>No</source>\n        <translation type=\"unfinished\">No</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3323\"/>\n        <source>Even</source>\n        <translation type=\"unfinished\">Even</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3328\"/>\n        <source>Odd</source>\n        <translation type=\"unfinished\">Odd</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3333\"/>\n        <source>Mark</source>\n        <translation type=\"unfinished\">Mark</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3338\"/>\n        <source>Space</source>\n        <translation type=\"unfinished\">Space</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3346\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3376\"/>\n        <source>The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.</source>\n        <translation type=\"unfinished\">The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3353\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3363\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3383\"/>\n        <source>Stop Bits</source>\n        <translation type=\"unfinished\">Stop Bits</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3356\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3399\"/>\n        <source>1</source>\n        <translation type=\"unfinished\">1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3404\"/>\n        <source>1.5</source>\n        <translation type=\"unfinished\">1.5</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3409\"/>\n        <source>2</source>\n        <translation type=\"unfinished\">2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3421\"/>\n        <source>USB Class</source>\n        <translation type=\"unfinished\">USB Class</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3424\"/>\n        <source>USB Class Settings.</source>\n        <translation type=\"unfinished\">USB Class Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3427\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Class Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Class Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3451\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3472\"/>\n        <source>Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.</source>\n        <translation type=\"unfinished\">Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3454\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3460\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3475\"/>\n        <source>Vendor ID</source>\n        <translation type=\"unfinished\">Vendor ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3457\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3478\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3491\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3512\"/>\n        <source>Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.</source>\n        <translation type=\"unfinished\">Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3515\"/>\n        <source>Product ID</source>\n        <translation type=\"unfinished\">Product ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3518\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3552\"/>\n        <source>The class code assigned by the USB-IF. A value of 0xFF will match any class code.</source>\n        <translation type=\"unfinished\">The class code assigned by the USB-IF. A value of 0xFF will match any class code.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3540\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3555\"/>\n        <source>Device Class</source>\n        <translation type=\"unfinished\">Device Class</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3537\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3558\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The class code assigned by the USB-IF. A value of 0xFF will match any class code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The class code assigned by the USB-IF. A value of 0xFF will match any class code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3592\"/>\n        <source>The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.</source>\n        <translation type=\"unfinished\">The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3574\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3595\"/>\n        <source>Device Subclass</source>\n        <translation type=\"unfinished\">Device Subclass</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3632\"/>\n        <source>The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.</source>\n        <translation type=\"unfinished\">The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3635\"/>\n        <source>Device Protocol</source>\n        <translation type=\"unfinished\">Device Protocol</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3617\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3655\"/>\n        <source>USB WWID</source>\n        <translation type=\"unfinished\">USB WWID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3658\"/>\n        <source>This device path describes a USB device using its serial number.</source>\n        <translation type=\"unfinished\">This device path describes a USB device using its serial number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3661\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a USB device using its serial number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a USB device using its serial number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3685\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3707\"/>\n        <source>USB interface Number.</source>\n        <translation type=\"unfinished\">USB interface Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3747\"/>\n        <source>USB vendor id of the device.</source>\n        <translation type=\"unfinished\">USB vendor id of the device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3750\"/>\n        <source>Device Vendor Id</source>\n        <translation type=\"unfinished\">Device Vendor Id</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3753\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB vendor id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB vendor id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3787\"/>\n        <source>USB product id of the device.</source>\n        <translation type=\"unfinished\">USB product id of the device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3790\"/>\n        <source>Device Product Id</source>\n        <translation type=\"unfinished\">Device Product Id</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3793\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB product id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB product id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3828\"/>\n        <source>Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).</source>\n        <translation type=\"unfinished\">Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3815\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3831\"/>\n        <source>Serial Number</source>\n        <translation type=\"unfinished\">Serial Number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3812\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3845\"/>\n        <source>Device Logical Unit</source>\n        <translation type=\"unfinished\">Device Logical Unit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3848\"/>\n        <source>Device Logical Unit Settings.</source>\n        <translation type=\"unfinished\">Device Logical Unit Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3851\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device Logical Unit Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device Logical Unit Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3897\"/>\n        <source>Logical Unit Number for the interface.</source>\n        <translation type=\"unfinished\">Logical Unit Number for the interface.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3903\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number for the interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number for the interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3923\"/>\n        <source>SATA settings.</source>\n        <translation type=\"unfinished\">SATA settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3950\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3972\"/>\n        <source>The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.</source>\n        <translation type=\"unfinished\">The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3953\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3975\"/>\n        <source>HBA Port</source>\n        <translation type=\"unfinished\">HBA Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3956\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3978\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4013\"/>\n        <source>The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.</source>\n        <translation type=\"unfinished\">The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4000\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4016\"/>\n        <source>Port Multiplier Port</source>\n        <translation type=\"unfinished\">Port Multiplier Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3997\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4019\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4077\"/>\n        <source>iSCSI</source>\n        <translation type=\"unfinished\">iSCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4080\"/>\n        <source>iSCSI Settings.</source>\n        <translation type=\"unfinished\">iSCSI Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4083\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4129\"/>\n        <source>Network Protocol (0 = TCP, 1+ = reserved).</source>\n        <translation type=\"unfinished\">Network Protocol (0 = TCP, 1+ = reserved).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4113\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network Protocol (0 = TCP, 1+ = reserved).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network Protocol (0 = TCP, 1+ = reserved).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4148\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4169\"/>\n        <source>iSCSI Login Options.</source>\n        <translation type=\"unfinished\">iSCSI Login Options.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4151\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4172\"/>\n        <source>Options</source>\n        <translation type=\"unfinished\">Options</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4154\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4175\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Login Options.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Login Options.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4188\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4209\"/>\n        <source>8 byte array containing the iSCSI Logical Unit Number.</source>\n        <translation type=\"unfinished\">8 byte array containing the iSCSI Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4194\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing the iSCSI Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing the iSCSI Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4228\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4250\"/>\n        <source>iSCSI Target Portal group tag the initiator intends to establish a session with.</source>\n        <translation type=\"unfinished\">iSCSI Target Portal group tag the initiator intends to establish a session with.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4231\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4253\"/>\n        <source>Target Portal Group</source>\n        <translation type=\"unfinished\">Target Portal Group</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4234\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4256\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Target Portal group tag the initiator intends to establish a session with.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Target Portal group tag the initiator intends to establish a session with.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4291\"/>\n        <source>iSCSI NodeTarget Name.</source>\n        <translation type=\"unfinished\">iSCSI NodeTarget Name.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4272\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4294\"/>\n        <source>Target Name</source>\n        <translation type=\"unfinished\">Target Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4275\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4297\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI NodeTarget Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI NodeTarget Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4308\"/>\n        <source>VLAN</source>\n        <translation type=\"unfinished\">VLAN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4311\"/>\n        <source>VLAN Settings.</source>\n        <translation type=\"unfinished\">VLAN Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4314\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4360\"/>\n        <source>VLAN identifier (0-4094).</source>\n        <translation type=\"unfinished\">VLAN identifier (0-4094).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4341\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4347\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4363\"/>\n        <source>Vlan ID</source>\n        <translation type=\"unfinished\">Vlan ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4344\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4366\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN identifier (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN identifier (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4383\"/>\n        <source>Fibre Channel Ex</source>\n        <translation type=\"unfinished\">Fibre Channel Ex</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4386\"/>\n        <source>The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation type=\"unfinished\">The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4389\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4474\"/>\n        <source>8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).</source>\n        <translation type=\"unfinished\">8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4480\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4514\"/>\n        <source>8 byte array containing Fibre Channel Logical Unit Number.</source>\n        <translation type=\"unfinished\">8 byte array containing Fibre Channel Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4499\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4520\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4537\"/>\n        <source>SAS Extended Messaging</source>\n        <translation type=\"unfinished\">SAS Extended Messaging</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4540\"/>\n        <source>The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation type=\"unfinished\">The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4543\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4567\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4588\"/>\n        <source>8-byte array of the SAS Address for Serial Attached SCSI Target Port.</source>\n        <translation type=\"unfinished\">8-byte array of the SAS Address for Serial Attached SCSI Target Port.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4570\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4576\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4591\"/>\n        <source>SAS Address</source>\n        <translation type=\"unfinished\">SAS Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4573\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4594\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Address for Serial Attached SCSI Target Port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Address for Serial Attached SCSI Target Port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4628\"/>\n        <source>8-byte array of the SAS Logical Unit Number.</source>\n        <translation type=\"unfinished\">8-byte array of the SAS Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4613\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4634\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4647\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4668\"/>\n        <source>More Information about the device and its interconnect.</source>\n        <translation type=\"unfinished\">More Information about the device and its interconnect.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4650\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4656\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4671\"/>\n        <source>Device and Topology Info</source>\n        <translation type=\"unfinished\">Device and Topology Info</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4653\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4674\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;More Information about the device and its interconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;More Information about the device and its interconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4687\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4709\"/>\n        <source>Relative Target Port (RTP).</source>\n        <translation type=\"unfinished\">Relative Target Port (RTP).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4690\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4696\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4712\"/>\n        <source>Relative Target Port</source>\n        <translation type=\"unfinished\">Relative Target Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4715\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Relative Target Port (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Relative Target Port (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4732\"/>\n        <source>NVM Express NS</source>\n        <translation type=\"unfinished\">NVM Express NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4735\"/>\n        <source>NVM Express Namespace Settings.</source>\n        <translation type=\"unfinished\">NVM Express Namespace Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4738\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM Express Namespace Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM Express Namespace Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4783\"/>\n        <source>Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.</source>\n        <translation type=\"unfinished\">Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4765\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4771\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4786\"/>\n        <source>NSID</source>\n        <translation type=\"unfinished\">NSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4768\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4789\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4802\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4823\"/>\n        <source>This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.</source>\n        <translation type=\"unfinished\">This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4805\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4811\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4826\"/>\n        <source>EUI-64</source>\n        <translation type=\"unfinished\">EUI-64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4808\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4829\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4849\"/>\n        <source>Refer to RFC 3986 for details on the URI contents.</source>\n        <translation type=\"unfinished\">Refer to RFC 3986 for details on the URI contents.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Refer to RFC 3986 for details on the URI contents.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Refer to RFC 3986 for details on the URI contents.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4876\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4898\"/>\n        <source>Instance of the URI pursuant to RFC 3986.</source>\n        <translation type=\"unfinished\">Instance of the URI pursuant to RFC 3986.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4882\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Instance of the URI pursuant to RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Instance of the URI pursuant to RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4915\"/>\n        <source>UFS</source>\n        <translation type=\"unfinished\">UFS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4918\"/>\n        <source>UFS Settings.</source>\n        <translation type=\"unfinished\">UFS Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4966\"/>\n        <source>Target ID on the UFS interface (PUN).</source>\n        <translation type=\"unfinished\">Target ID on the UFS interface (PUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4972\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the UFS interface (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the UFS interface (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5029\"/>\n        <source>SD</source>\n        <translation type=\"unfinished\">SD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5032\"/>\n        <source>SD Settings.</source>\n        <translation type=\"unfinished\">SD Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5035\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5081\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5299\"/>\n        <source>Slot Number</source>\n        <translation type=\"unfinished\">Slot Number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5084\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5280\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5286\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5302\"/>\n        <source>Slot</source>\n        <translation type=\"unfinished\">Slot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5087\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5283\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5305\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Slot Number&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Slot Number&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5104\"/>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\">Bluetooth</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5107\"/>\n        <source>EFI Bluetooth Settings.</source>\n        <translation type=\"unfinished\">EFI Bluetooth Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5110\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI Bluetooth Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI Bluetooth Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5155\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5373\"/>\n        <source>48-bit Bluetooth device address.</source>\n        <translation type=\"unfinished\">48-bit Bluetooth device address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5143\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5158\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5361\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5376\"/>\n        <source>Device Address</source>\n        <translation type=\"unfinished\">Device Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5161\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5379\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-bit Bluetooth device address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-bit Bluetooth device address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5178\"/>\n        <source>Wi-Fi</source>\n        <translation type=\"unfinished\">Wi-Fi</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5181\"/>\n        <source>Wi-Fi Settings.</source>\n        <translation type=\"unfinished\">Wi-Fi Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5184\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wi-Fi Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wi-Fi Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5208\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5230\"/>\n        <source>SSID in octet string.</source>\n        <translation type=\"unfinished\">SSID in octet string.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5211\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5217\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5233\"/>\n        <source>SSID</source>\n        <translation type=\"unfinished\">SSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5214\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5236\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID in octet string.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID in octet string.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5247\"/>\n        <source>eMMC</source>\n        <translation type=\"unfinished\">eMMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5250\"/>\n        <source>Embedded Multi-Media Card Settings.</source>\n        <translation type=\"unfinished\">Embedded Multi-Media Card Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5253\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Embedded Multi-Media Card Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Embedded Multi-Media Card Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5322\"/>\n        <source>BluetoothLE</source>\n        <translation type=\"unfinished\">BluetoothLE</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5325\"/>\n        <source>EFI BluetoothLE Settings.</source>\n        <translation type=\"unfinished\">EFI BluetoothLE Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5328\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI BluetoothLE Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI BluetoothLE Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5416\"/>\n        <source>0x00 - Public Device Address.\n0x01 - Random Device Address.</source>\n        <translation type=\"unfinished\">0x00 - Public Device Address.\n0x01 - Random Device Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5396\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5403\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5420\"/>\n        <source>Address Type</source>\n        <translation type=\"unfinished\">Address Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5399\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5423\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Public Device Address.\n0x01 - Random Device Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Public Device Address.\n0x01 - Random Device Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5428\"/>\n        <source>Public</source>\n        <translation type=\"unfinished\">Public</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5433\"/>\n        <source>Random</source>\n        <translation type=\"unfinished\">Random</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5445\"/>\n        <source>DNS</source>\n        <translation type=\"unfinished\">DNS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5448\"/>\n        <source>DNS Settings.</source>\n        <translation type=\"unfinished\">DNS Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5451\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DNS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DNS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5499\"/>\n        <source>0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.</source>\n        <translation type=\"unfinished\">0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5482\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5506\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5514\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5575\"/>\n        <source>One or more instances of the DNS server address in EFI_IP_ADDRESS.</source>\n        <translation type=\"unfinished\">One or more instances of the DNS server address in EFI_IP_ADDRESS.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5520\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5581\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;One or more instances of the DNS server address in EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;One or more instances of the DNS server address in EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5536\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7584\"/>\n        <source>Data format.</source>\n        <translation type=\"unfinished\">Data format.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5592\"/>\n        <source>NVDIMM NS</source>\n        <translation type=\"unfinished\">NVDIMM NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5595\"/>\n        <source>This device path describes a bootable NVDIMM namespace that is defined by a namespace label.</source>\n        <translation type=\"unfinished\">This device path describes a bootable NVDIMM namespace that is defined by a namespace label.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVDIMM namespace that is defined by a namespace label.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVDIMM namespace that is defined by a namespace label.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5622\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5643\"/>\n        <source>Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.</source>\n        <translation type=\"unfinished\">Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5646\"/>\n        <source>UUID</source>\n        <translation type=\"unfinished\">UUID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5628\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5649\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5663\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5698\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5706\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5724\"/>\n        <source>REST Service</source>\n        <translation type=\"unfinished\">REST Service</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5666\"/>\n        <source>REST Service Settings.</source>\n        <translation type=\"unfinished\">REST Service Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5669\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;REST Service Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;REST Service Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5719\"/>\n        <source>0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.</source>\n        <translation type=\"unfinished\">0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5701\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5727\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5733\"/>\n        <source>Redfish</source>\n        <translation type=\"unfinished\">Redfish</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5738\"/>\n        <source>OData</source>\n        <translation type=\"unfinished\">OData</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5743\"/>\n        <source>Vendor specific</source>\n        <translation type=\"unfinished\">Vendor specific</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5775\"/>\n        <source>0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.</source>\n        <translation type=\"unfinished\">0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5755\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5779\"/>\n        <source>Access Mode</source>\n        <translation type=\"unfinished\">Access Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5782\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5787\"/>\n        <source>In-Band</source>\n        <translation type=\"unfinished\">In-Band</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5792\"/>\n        <source>Out-of-band</source>\n        <translation type=\"unfinished\">Out-of-band</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5821\"/>\n        <source>GUID of vendor specific REST service.</source>\n        <translation type=\"unfinished\">GUID of vendor specific REST service.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID of vendor specific REST service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID of vendor specific REST service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5898\"/>\n        <source>Vendor-defined data.</source>\n        <translation type=\"unfinished\">Vendor-defined data.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5915\"/>\n        <source>NVMe-oF NS</source>\n        <translation type=\"unfinished\">NVMe-oF NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5918\"/>\n        <source>This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.</source>\n        <translation type=\"unfinished\">This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5967\"/>\n        <source>Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.</source>\n        <translation type=\"unfinished\">Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5970\"/>\n        <source>NIDT</source>\n        <translation type=\"unfinished\">NIDT</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5973\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5986\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6007\"/>\n        <source>Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.</source>\n        <translation type=\"unfinished\">Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5989\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5995\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6010\"/>\n        <source>NID</source>\n        <translation type=\"unfinished\">NID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5992\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6013\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6023\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6045\"/>\n        <source>Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.</source>\n        <translation type=\"unfinished\">Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6026\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6048\"/>\n        <source>Subsystem NQN</source>\n        <translation type=\"unfinished\">Subsystem NQN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6029\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6051\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6066\"/>\n        <source>Hard Drive</source>\n        <translation type=\"unfinished\">Hard Drive</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6069\"/>\n        <source>The Hard Drive Media Device Path is used to represent a partition on a hard drive.</source>\n        <translation type=\"unfinished\">The Hard Drive Media Device Path is used to represent a partition on a hard drive.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6072\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Hard Drive Media Device Path is used to represent a partition on a hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Hard Drive Media Device Path is used to represent a partition on a hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6174\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6196\"/>\n        <source>Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].</source>\n        <translation type=\"unfinished\">Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6180\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6236\"/>\n        <source>Starting LBA of the partition on the hard drive.</source>\n        <translation type=\"unfinished\">Starting LBA of the partition on the hard drive.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6466\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6487\"/>\n        <source>Partition Start</source>\n        <translation type=\"unfinished\">Partition Start</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting LBA of the partition on the hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting LBA of the partition on the hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6255\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6276\"/>\n        <source>Size of the partition in units of Logical Blocks.</source>\n        <translation type=\"unfinished\">Size of the partition in units of Logical Blocks.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6258\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6264\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6279\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6527\"/>\n        <source>Partition Size</source>\n        <translation type=\"unfinished\">Partition Size</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6261\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6282\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Logical Blocks.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Logical Blocks.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6295\"/>\n        <source>Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation type=\"unfinished\">Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6301\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6310\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6367\"/>\n        <source>Partition Signature</source>\n        <translation type=\"unfinished\">Partition Signature</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6304\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6322\"/>\n        <source>PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.</source>\n        <translation type=\"unfinished\">PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6328\"/>\n        <source>Signature Type</source>\n        <translation type=\"unfinished\">Signature Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6331\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6338\"/>\n        <source>None</source>\n        <translation type=\"unfinished\">None</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6361\"/>\n        <source>Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation type=\"unfinished\">Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6370\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6392\"/>\n        <source>CD-ROM</source>\n        <translation type=\"unfinished\">CD-ROM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6395\"/>\n        <source>The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.</source>\n        <translation type=\"unfinished\">The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6398\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6444\"/>\n        <source>Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.</source>\n        <translation type=\"unfinished\">Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6425\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6431\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6447\"/>\n        <source>Boot Entry</source>\n        <translation type=\"unfinished\">Boot Entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6450\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6463\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6484\"/>\n        <source>Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.</source>\n        <translation type=\"unfinished\">Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6469\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6490\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6524\"/>\n        <source>Size of the partition in units of Blocks, also called Sectors.</source>\n        <translation type=\"unfinished\">Size of the partition in units of Blocks, also called Sectors.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6530\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Blocks, also called Sectors.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Blocks, also called Sectors.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6547\"/>\n        <source>File Path</source>\n        <translation type=\"unfinished\">File Path</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6550\"/>\n        <source>File Path settings.</source>\n        <translation type=\"unfinished\">File Path settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6553\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File Path settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File Path settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6599\"/>\n        <source>Path including directory and file names.</source>\n        <translation type=\"unfinished\">Path including directory and file names.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6586\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6602\"/>\n        <source>Path Name</source>\n        <translation type=\"unfinished\">Path Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6583\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6605\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Path including directory and file names.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Path including directory and file names.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6619\"/>\n        <source>The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.</source>\n        <translation type=\"unfinished\">The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6622\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6667\"/>\n        <source>The ID of the protocol.</source>\n        <translation type=\"unfinished\">The ID of the protocol.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6673\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ID of the protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ID of the protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6687\"/>\n        <source>Firmware File</source>\n        <translation type=\"unfinished\">Firmware File</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6690\"/>\n        <source>Describes a firmware file in a firmware volume.</source>\n        <translation type=\"unfinished\">Describes a firmware file in a firmware volume.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6693\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware file in a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware file in a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6717\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6738\"/>\n        <source>Firmware file name GUID.</source>\n        <translation type=\"unfinished\">Firmware file name GUID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6723\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6744\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware file name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware file name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6758\"/>\n        <source>Firmware Volume</source>\n        <translation type=\"unfinished\">Firmware Volume</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6761\"/>\n        <source>Describes a firmware volume.</source>\n        <translation type=\"unfinished\">Describes a firmware volume.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6764\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6809\"/>\n        <source>Firmware volume name GUID.</source>\n        <translation type=\"unfinished\">Firmware volume name GUID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware volume name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware volume name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6829\"/>\n        <source>Relative Offset Range</source>\n        <translation type=\"unfinished\">Relative Offset Range</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6832\"/>\n        <source>This device path node specifies a range of offsets relative to the first byte available on the device.</source>\n        <translation type=\"unfinished\">This device path node specifies a range of offsets relative to the first byte available on the device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6835\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path node specifies a range of offsets relative to the first byte available on the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path node specifies a range of offsets relative to the first byte available on the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6880\"/>\n        <source>Reserved for future use.</source>\n        <translation type=\"unfinished\">Reserved for future use.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6886\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved for future use.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved for future use.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6899\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6920\"/>\n        <source>Offset of the first byte, relative to the parent device node.</source>\n        <translation type=\"unfinished\">Offset of the first byte, relative to the parent device node.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6902\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6908\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6923\"/>\n        <source>Starting Offset</source>\n        <translation type=\"unfinished\">Starting Offset</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6905\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the first byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the first byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6939\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6960\"/>\n        <source>Offset of the last byte, relative to the parent device node.</source>\n        <translation type=\"unfinished\">Offset of the last byte, relative to the parent device node.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6942\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6963\"/>\n        <source>Ending Offset</source>\n        <translation type=\"unfinished\">Ending Offset</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6966\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the last byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the last byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6983\"/>\n        <source>RAM Disk</source>\n        <translation type=\"unfinished\">RAM Disk</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6986\"/>\n        <source>RAM Disk Settings.</source>\n        <translation type=\"unfinished\">RAM Disk Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6989\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7016\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7037\"/>\n        <source>Starting Address</source>\n        <translation type=\"unfinished\">Starting Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7056\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7077\"/>\n        <source>Ending Address</source>\n        <translation type=\"unfinished\">Ending Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7093\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7114\"/>\n        <source>GUID that defines the type of the RAM Disk.</source>\n        <translation type=\"unfinished\">GUID that defines the type of the RAM Disk.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7120\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID that defines the type of the RAM Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID that defines the type of the RAM Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7130\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7152\"/>\n        <source>RAM Disk instance number, if supported.</source>\n        <translation type=\"unfinished\">RAM Disk instance number, if supported.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7133\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7155\"/>\n        <source>Disk Instance</source>\n        <translation type=\"unfinished\">Disk Instance</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7158\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk instance number, if supported.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk instance number, if supported.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7179\"/>\n        <source>This Device Path is used to describe the booting of non-EFI-aware operating systems.</source>\n        <translation type=\"unfinished\">This Device Path is used to describe the booting of non-EFI-aware operating systems.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7182\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path is used to describe the booting of non-EFI-aware operating systems.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path is used to describe the booting of non-EFI-aware operating systems.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7206\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7249\"/>\n        <source>An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.</source>\n        <translation type=\"unfinished\">An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7220\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7263\"/>\n        <source>Device Type</source>\n        <translation type=\"unfinished\">Device Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7223\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7290\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7347\"/>\n        <source>Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero</source>\n        <translation type=\"unfinished\">Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7311\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7368\"/>\n        <source>Status Flag</source>\n        <translation type=\"unfinished\">Status Flag</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7371\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7402\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7424\"/>\n        <source>String that describes the boot device to a user.</source>\n        <translation type=\"unfinished\">String that describes the boot device to a user.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7408\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7430\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;String that describes the boot device to a user.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;String that describes the boot device to a user.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7543\"/>\n        <source>Vendor-assigned GUID that defines the data that follows.</source>\n        <translation type=\"unfinished\">Vendor-assigned GUID that defines the data that follows.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7549\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-assigned GUID that defines the data that follows.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-assigned GUID that defines the data that follows.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7562\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7622\"/>\n        <source>Vendor-defined variable size data.</source>\n        <translation type=\"unfinished\">Vendor-defined variable size data.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7568\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7628\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined variable size data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined variable size data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7642\"/>\n        <source>Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.</source>\n        <translation type=\"unfinished\">Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7645\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7721\"/>\n        <source>Unknown file path specifier settings</source>\n        <translation>Nieznane ustawienia specyfikatora ścieżki pliku</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7724\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown file path specifier settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Nieznane ustawienia specyfikatora ścieżki pliku.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7748\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7772\"/>\n        <source>Unknown Type</source>\n        <translation>Typ nieznanej ścieżki</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7754\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7775\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Nieznany typ.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7812\"/>\n        <source>Unknown Sub-Type</source>\n        <translation>Nieznany podtyp</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Nieznany podtyp.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7828\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7831\"/>\n        <source>Unknown data</source>\n        <translation>Dane nieznanej ścieżki</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Nieznane dane.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/filepathdialog.cpp\" line=\"1569\"/>\n        <source>Couldn&apos;t change data format!</source>\n        <translation type=\"unfinished\">Couldn&apos;t change data format!</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeyListModel</name>\n    <message>\n        <location filename=\"../src/hotkeylistmodel.cpp\" line=\"100\"/>\n        <source>boot option</source>\n        <translation>opcja rozruchu</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Boot option</source>\n        <translation>Opcja rozruchu</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Hot key</source>\n        <translation>Skrót klawiszowy</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Vendor data</source>\n        <translation>Dane dostawcy</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeysDialog</name>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"20\"/>\n        <source>Hot Keys editor</source>\n        <translation>Edytor skrótów klawiszowych</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"41\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"44\"/>\n        <source>Hot Keys</source>\n        <translation>Skróty Klawiszowe</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"47\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Skróty Klawiszowe&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"125\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"128\"/>\n        <source>Index filter</source>\n        <translation>Filtr indeksu</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"131\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Index filter&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Filtr indeksu&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"163\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"166\"/>\n        <source>Remove hot key</source>\n        <translation>Usuń skrót klawiszowy</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Usuń skrót klawiszowy&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"191\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"194\"/>\n        <source>Add hot key</source>\n        <translation>Dodaj skrót klawiszowy</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"197\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dodaj skrót klawiszowy&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <location filename=\"../include/commands.h\" line=\"21\"/>\n        <location filename=\"../include/commands.h\" line=\"66\"/>\n        <source>Change %1 to &quot;%2&quot;</source>\n        <translation>Zmień %1 na &quot;%2&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"35\"/>\n        <source>Insert %1 entry &quot;%2&quot; at position %3</source>\n        <translation>Wstaw %1 wpis &quot;%2&quot; na pozycji %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"50\"/>\n        <source>Remove %1 entry &quot;%2&quot; from position %3</source>\n        <translation>Usuń %1 wpisu &quot;%2&quot; z pozycji %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"73\"/>\n        <location filename=\"../src/commands.cpp\" line=\"116\"/>\n        <source>Move %1 entry &quot;%2&quot; from position %3 to %4</source>\n        <translation>Przestaw %1 wpis &quot;%2&quot; z pozycji %3 na %4</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <location filename=\"../include/commands.h\" line=\"157\"/>\n        <location filename=\"../include/commands.h\" line=\"198\"/>\n        <source>Change %1 entry &quot;%2&quot; %3 to &quot;%4&quot;</source>\n        <translation>Zmień %1 wpis &quot;%2&quot; %3 na &quot;%4&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <source>Optional data</source>\n        <translation>Dane dodatkowe</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"227\"/>\n        <source>Insert %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation>Wstaw wpis %1 &quot;%2&quot; ścieżkę w pozycji %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"242\"/>\n        <source>Remove %1 entry &quot;%2&quot; file path from position %3</source>\n        <translation>Usuń wpisu %1 &quot;%2&quot; ścieżkę z pozycji %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"257\"/>\n        <source>Set %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation>Ustaw wpisu %1 &quot;%2&quot; ścieżkę w pozycji %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <source>Insert %1 entry at position %2</source>\n        <translation>Wstaw wpis %1 na pozycji %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>Key</source>\n        <translation>Klawisz</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <source>Remove %1 entry from position %2</source>\n        <translation>Usuń wpis %1 z pozycji %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <location filename=\"../include/commands.h\" line=\"362\"/>\n        <location filename=\"../include/commands.h\" line=\"403\"/>\n        <source>Change %1 entry at position %2 %3 to &quot;%4&quot;</source>\n        <translation>Zmień wpisu %1 na pozycji %2 %3 na &quot;%4&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>keys</source>\n        <translation>klawsize</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"293\"/>\n        <location filename=\"../src/commands.cpp\" line=\"333\"/>\n        <source>Move %1 entry &quot;%2&quot; file path from position %3 to %4</source>\n        <translation>Przeniesienie wpisu %1 &quot;%2&quot; ścieżka z pozycji %3 do %4</translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/efibooteditor_pt_BR.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"pt_BR\" sourcelanguage=\"en_US\">\n<context>\n    <name>BootEntryForm</name>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"169\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"172\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"182\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"185\"/>\n        <source>Description</source>\n        <translation>Descrição</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"198\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"201\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"204\"/>\n        <source>Path</source>\n        <translation>Caminho</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"415\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"418\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"478\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"481\"/>\n        <source>Optional data</source>\n        <translation>Dados opcionais</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"421\"/>\n        <source>Optional</source>\n        <translation>Opcional</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"434\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"437\"/>\n        <source>Optional data format</source>\n        <translation>Formato de dados opcional</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"6\"/>\n        <source>Boot entry form</source>\n        <translation>Menu de inicialização</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"24\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"27\"/>\n        <source>Error</source>\n        <translation>Erro</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"40\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"43\"/>\n        <source>Error note</source>\n        <translation>Mensagem de erro</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"46\"/>\n        <source>This entry placeholder is shown here to indicate it&apos;s referenced in boot order. It won&apos;t be modified on save, just left as is.</source>\n        <translation>Este marcador de posição é mostrado aqui para indicar que ele é referenciado na ordem de inicialização. Ele não será modificado ao salvar, permanecendo como está.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"147\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"150\"/>\n        <source>Hot Keys</source>\n        <translation>Teclas de Atalho</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Teclas de Atalhos&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"188\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry description.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Descrição da Entrada.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"222\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"225\"/>\n        <source>Device path</source>\n        <translation>Caminho do dispositivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Caminho do Dispositivo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"280\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"283\"/>\n        <source>Move file path up</source>\n        <translation>Mover o caminho do arquivo para cima</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"286\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Mover o caminho do arquivo para cima.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"305\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"308\"/>\n        <source>Move file path down</source>\n        <translation>Mover o caminho do arquivo para baixo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"311\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Mover o caminho do arquivo para baixo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"330\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"333\"/>\n        <source>Remove file path</source>\n        <translation>Remover caminho do arquivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"336\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remover caminho do arquivo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"355\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"358\"/>\n        <source>Edit file path</source>\n        <translation>Editar caminho do arquivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"361\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Edit file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Editar caminho do arquivo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"380\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"383\"/>\n        <source>Add file path</source>\n        <translation>Adicionar caminho do arquivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Adicionar caminho do arquivo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Formato de dados opcional.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"444\"/>\n        <source>BASE64</source>\n        <translation>BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"449\"/>\n        <source>UTF-16</source>\n        <translation>UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"454\"/>\n        <source>UTF-8</source>\n        <translation>UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"459\"/>\n        <source>HEX</source>\n        <translation>HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"484\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry optional data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entrada de dados opcional.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"497\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"500\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"503\"/>\n        <source>Attributes</source>\n        <translation>Atributos</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"623\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry category.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Categoria de entrada.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"122\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Índice de entrada.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"540\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Is entry considered for automatic boot?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Esta entrada será considerada para o reinicio automático?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"569\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hidden.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Oculto.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"585\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Force reconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Forçar reconexão.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"534\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"537\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"543\"/>\n        <source>Active</source>\n        <translation>Ativo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"579\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"582\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"588\"/>\n        <source>Force reconnect</source>\n        <translation>Forçar reconexão</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"563\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"566\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"572\"/>\n        <source>Hidden</source>\n        <translation>Oculto</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"598\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"601\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"604\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"617\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"620\"/>\n        <source>Category</source>\n        <translation>Categoria</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"627\"/>\n        <source>Boot</source>\n        <translation>Inicialização</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"632\"/>\n        <source>App</source>\n        <translation>Aplicativo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"68\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"71\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"74\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"116\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"119\"/>\n        <source>Index</source>\n        <translation>Índice</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentryform.cpp\" line=\"117\"/>\n        <source>Couldn&apos;t change optional data format!</source>\n        <translation>Não foi possível alterar o formato dos dados opcionais!</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryListModel</name>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"88\"/>\n        <source>Set Next boot to &quot;%1&quot;</source>\n        <translation>Defina a próxima inicialização para &quot;%1&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"184\"/>\n        <source>index</source>\n        <translation>índice</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"200\"/>\n        <source>description</source>\n        <translation>descrição</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"237\"/>\n        <source>optional data</source>\n        <translation>dado opcional</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"253\"/>\n        <source>attributes</source>\n        <translation>atributos</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"269\"/>\n        <source>next boot</source>\n        <translation>próxima inicialização</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryWidget</name>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"12\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"221\"/>\n        <source>Boot entry</source>\n        <translation>Entrada da Inicialização</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"36\"/>\n        <source>Next boot</source>\n        <translation>Próxima Inicialização</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"39\"/>\n        <source>Run at next boot</source>\n        <translation>Execute na próxima inicialização</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"42\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;When chosen, entry will run at next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Quando selecionada, a entrada será executada na próxima inicialização..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"140\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"143\"/>\n        <source>Current boot</source>\n        <translation>Inicialização atual</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This entry is currently booted.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Esta entrada está atualmente inicializada.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"181\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Índice de entrada de inicialização.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"218\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry description, human readable name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Descrição da entrada de inicialização, nome legível para humanos.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"67\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"70\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"76\"/>\n        <source>Device path</source>\n        <translation>Caminho do dispositivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"73\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Caminho do dispositivo de inicialização.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"113\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data, arguments passed to boot executable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dados opcionais, argumentos passados para o executável de inicialização.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"178\"/>\n        <source>Boot entry index</source>\n        <translation>Índice de entrada de inicialização</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"184\"/>\n        <source>Index</source>\n        <translation>Índice</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"212\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"215\"/>\n        <source>Boot entry description</source>\n        <translation>Descrição da entrada de inicialização</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"107\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"110\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"116\"/>\n        <source>Optional data</source>\n        <translation>Dados opcionais</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootData</name>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"111\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"813\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1027\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1361\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1472\"/>\n        <source>%1: not found</source>\n        <translation>%1: não encontrado</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"120\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"821\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1387\"/>\n        <source>%1: failed deserialization</source>\n        <translation>%1: falha na desserialização</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Error loading entries</source>\n        <translation>Erro ao carregar entradas</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Failed to load some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>Falha ao carregar algumas entradas do Gerenciador de Inicialização EFI:\n\n- %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Error saving entries</source>\n        <translation>Erro ao salvar entradas</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Entry %1(%2): duplicated index!</source>\n        <translation>Entrada %1(%2): índice duplicado!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"389\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"419\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"458\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"479\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"487\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"516\"/>\n        <source>Error saving %1</source>\n        <translation>Erro ao salvar %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"407\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"470\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"504\"/>\n        <source>Error removing %1</source>\n        <translation>Erro ao remover %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Error importing boot configuration</source>\n        <translation>Erro ao importar a configuração de inicialização</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <source>Couldn&apos;t open selected file (%1).</source>\n        <translation>Não foi possível abrir o arquivo selecionado (%1).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <source>Parser failed: %1</source>\n        <translation>Falha na análise sintática: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <source>Invalid _Type: %1</source>\n        <translation>Tipo_inválido: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <source>Error exporting boot configuration</source>\n        <translation>Erro ao exportar a configuração de inicialização</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <source>Couldn&apos;t open selected file (%1): %2.</source>\n        <translation>Não foi possível abrir o arquivo selecionado (%1): %2.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <source>Couldn&apos;t write into file (%1): %2.</source>\n        <translation>Não foi possível escrever no arquivo (%1): %2.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Error dumping raw EFI data</source>\n        <translation>Erro ao despejar dados EFI brutos</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Failed to dump some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>Falha ao extrair algumas entradas do Gerenciador de Inicialização EFI:\n\n- %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"905\"/>\n        <source>Timeout</source>\n        <translation>Tempo esgotado</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"921\"/>\n        <source>Apple boot-args</source>\n        <translation>Argumentos de inicialização da Apple</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"937\"/>\n        <source>Firmware actions</source>\n        <translation>Ações de firmware</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"73\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation>Carregando entradas do Gerenciador de Inicialização EFI…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"89\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"787\"/>\n        <source>Searching EFI Boot Manager entries…</source>\n        <translation>Pesquisando entradas do Gerenciador de Inicialização EFI…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"116\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"292\"/>\n        <source>Processing EFI Boot Manager entries (%1)…</source>\n        <translation>Processando entradas do Gerenciador de Inicialização EFI (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"308\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation>Salvando entradas do Gerenciador de Inicialização EFI…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"333\"/>\n        <source>Searching old EFI Boot Manager entries…</source>\n        <translation>Pesquisando entradas antigas do Gerenciador de Inicialização EFI…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"374\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"416\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"447\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"476\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"484\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"491\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"513\"/>\n        <source>Saving EFI Boot Manager entries (%1)…</source>\n        <translation>Salvando entradas do Gerenciador de Inicialização EFI (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"467\"/>\n        <source>Removing old EFI Boot Manager entries (%1)…</source>\n        <translation>Removendo entradas antigas do Gerenciador de Inicialização EFI (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"404\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"501\"/>\n        <source>Removing EFI Boot Manager entries (%1)…</source>\n        <translation>Removendo entradas do Gerenciador de Inicialização EFI (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"94\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"338\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"792\"/>\n        <source>Couldn&apos;t load EFI Boot Manager variables</source>\n        <translation>Não foi possível carregar as variáveis do Gerenciador de Inicialização EFI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"100\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"799\"/>\n        <source>Couldn&apos;t find any EFI Boot Manager variables</source>\n        <translation>Não foi possível encontrar nenhuma variável do Gerenciador de Inicialização EFI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"529\"/>\n        <source>Importing boot configuration…</source>\n        <translation>Importando a configuração de inicialização…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"565\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"770\"/>\n        <source>Exporting boot configuration…</source>\n        <translation>Exportando a configuração de inicialização…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"587\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"809\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"875\"/>\n        <source>Exporting EFI Boot Manager entries (%1)…</source>\n        <translation>Exportando entradas do Gerenciador de Inicialização EFI (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1013\"/>\n        <source>Importing boot configuration from JSON…</source>\n        <translation>Importando a configuração de inicialização do JSON…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1032\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1366\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1477\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1531\"/>\n        <source>Importing EFI Boot Manager entries (%1)…</source>\n        <translation>Importando entradas do Gerenciador de Inicialização EFI (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1035\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1376\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>%1: %2 expected</source>\n        <translation>%1: %2 esperado</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1043\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1048\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1053\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <source>number</source>\n        <translation>número</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1058\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1063\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1068\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1073\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1078\"/>\n        <source>bool</source>\n        <translation>banco de dados</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1109\"/>\n        <source>%1: unknown boot manager capability</source>\n        <translation>%1: capacidade desconhecida do gerenciador de inicialização</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1122\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1166\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1212\"/>\n        <source>array</source>\n        <translation>variedade</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1333\"/>\n        <source>string</source>\n        <translation>sequência de dados</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1156\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1192\"/>\n        <source>%1: unknown os indication</source>\n        <translation>%1: indicação desconhecida do sistema operacional</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1083\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1235\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1264\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1290\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1309\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1328\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>object</source>\n        <translation>objeto</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <source>hexadecimal number</source>\n        <translation>número hexadecimal</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1270\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1315\"/>\n        <source>%1: failed parsing</source>\n        <translation>%1: falha na análise</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Failed to import some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>Falha ao importar algumas entradas do Gerenciador de Inicialização EFI:\n\n- %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1347\"/>\n        <source>Importing boot configuration from raw dump…</source>\n        <translation>Importando a configuração de inicialização a partir do despejo bruto…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1379\"/>\n        <source>object(raw_data: string, efi_attributes: number)</source>\n        <extracomment>Expected JSON structure, thrown as error description. raw_data and efi_attributes are field names in JSON file</extracomment>\n        <translation>objeto(dados_brutos: sequências, atributos_efi: número)</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"15\"/>\n        <source>Boot</source>\n        <translation>Inicialização</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"16\"/>\n        <source>Driver</source>\n        <translation>Driver</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"17\"/>\n        <source>System Preparation</source>\n        <translation>Preparação do Sistema</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"18\"/>\n        <source>Platform Recovery</source>\n        <translation>Recuperação de plataforma</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditor</name>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"18\"/>\n        <source>EFI Boot Editor</source>\n        <translation>Editor de inicialização EFI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"71\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"412\"/>\n        <source>Boot</source>\n        <translation>Inicialização</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"74\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"98\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"101\"/>\n        <source>Boot entries</source>\n        <translation>Entradas de inicialização</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"77\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"104\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Boot entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Lista de entradas de inicialização.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"133\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"415\"/>\n        <source>Driver</source>\n        <translation>Driver</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"136\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"160\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"163\"/>\n        <source>Driver entries</source>\n        <translation>Entradas de driver</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"139\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"166\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Driver entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Lista de entradas do drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"195\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"418\"/>\n        <source>System Preparation</source>\n        <translation>Preparação do Sistema</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"198\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"222\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"225\"/>\n        <source>SysPrep entries</source>\n        <translation>Entradas do SysPrep</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"201\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of SysPrep entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Lista de entradas do SysPrep.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"257\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"421\"/>\n        <source>Platform Recovery</source>\n        <translation>Recuperação de plataforma</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"260\"/>\n        <source>PlatformRecovery entries</source>\n        <translation>Entradas de recuperação de plataforma</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"263\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of PlatformRecovery entries (READONLY).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Lista de entradas de recuperação da plataforma (SOMENTE LEITURA).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"284\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"287\"/>\n        <source>PlatformRecovery entries (READONLY)</source>\n        <translation>Entradas de recuperação da plataforma (SOMENTE LEITURA)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"346\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"349\"/>\n        <source>Add new entry</source>\n        <translation>Adicionar nova entrada</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"352\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to add new boot entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Clique aqui para adicionar uma nova entrada de inicialização.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"377\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"380\"/>\n        <source>Duplicate entry</source>\n        <translation>Entrada duplicada</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"383\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Duplicate entry&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entrada duplicada&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"408\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"411\"/>\n        <source>Remove entry</source>\n        <translation>Remover entrada</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"414\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to remove currently selected entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Clique aqui para remover a entrada selecionada.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"439\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"442\"/>\n        <source>Move entry up</source>\n        <translation>Mover entrada para cima</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"445\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Clique aqui para mover a entrada selecionada para cima.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"470\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"473\"/>\n        <source>Move entry down</source>\n        <translation>Mover entrada para baixo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"476\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Clique aqui para mover a entrada selecionada para baixo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"501\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"504\"/>\n        <source>Reorder entries</source>\n        <translation>Reordenar entradas</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"507\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click here to adjust the order of all entries based on their position on the list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Clique aqui para ajustar a ordem de todas as entradas com base em sua posição na lista.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"599\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"608\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Global settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Configurações globais.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"602\"/>\n        <source>Global</source>\n        <translation>Global</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"632\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"635\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"654\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"657\"/>\n        <source>Boot manager timeout</source>\n        <translation>Tempo limite do gerenciador de inicialização</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"638\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"660\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot manager timeout.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Tempo limite do gerenciador de inicialização.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"663\"/>\n        <source>s</source>\n        <translation>s</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"674\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"677\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"686\"/>\n        <source>Firmware details</source>\n        <translation>Detalhes do Firmware</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"680\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"689\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Detalhes do firmware&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"683\"/>\n        <source>Firmware</source>\n        <translation>Firmware</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"719\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"722\"/>\n        <source>Available firmware features</source>\n        <translation>Recursos de firmware disponíveis</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"725\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware features.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Recursos de firmware disponíveis.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"728\"/>\n        <source>Features</source>\n        <translation>Características</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"737\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"740\"/>\n        <source>Platform supports reporting of deferred capsule processing by creation of result variable</source>\n        <translation>A plataforma suporta a geração de relatórios sobre o processamento adiado de cápsulas através da criação de uma variável de resultado</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"743\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports reporting of deferred capsule processing by creation of result variable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;A plataforma suporta a geração de relatórios sobre o processamento adiado de cápsulas através da criação de uma variável de resultado..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"746\"/>\n        <source>Capsule Reporting</source>\n        <translation>Relatórios de cápsula</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"756\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"759\"/>\n        <source>Firmware supports timestamp based revocation</source>\n        <translation>O firmware suporta revogação baseada em carimbo de data/hora</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"762\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware supports timestamp based revocation.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;O firmware suporta revogação baseada em carimbo de data/hora.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"765\"/>\n        <source>Timestamp based revocation</source>\n        <translation>Revogação baseada em carimbo de data/hora</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"775\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"778\"/>\n        <source>Platform supports processing of Firmware Management Protocol update capsule</source>\n        <translation>A plataforma suporta o processamento de cápsulas de atualização do Protocolo de Gerenciamento de Firmware</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"781\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of Firmware Management Protocol update capsule.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;A plataforma suporta o processamento de cápsulas de atualização do Protocolo de Gerenciamento de Firmware.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"784\"/>\n        <source>FMP Capsule</source>\n        <translation>Cápsula FMP</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"794\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"797\"/>\n        <source>Platform supports processing of file capsules</source>\n        <translation>A plataforma suporta o processamento de cápsulas de arquivos</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"800\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of file capsules.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;A plataforma suporta o processamento de cápsulas de arquivos.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"803\"/>\n        <source>File Capsule</source>\n        <translation>Cápsula de arquivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"828\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"831\"/>\n        <source>Available firmware actions</source>\n        <translation>Ações de firmware disponíveis</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware actions.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ações de firmware disponíveis.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"837\"/>\n        <source>Actions</source>\n        <translation>Ações</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"846\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"849\"/>\n        <source>Stop at a firmware user interface on the next boot</source>\n        <translation>Na próxima inicialização, a tela para na interface de usuário do firmware</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Stop at a firmware user interface on the next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Na próxima inicialização, a tela para na interface de usuário do firmware.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"855\"/>\n        <source>Boot to firmware UI</source>\n        <translation>Inicialize na IU do firmware</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"862\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"865\"/>\n        <source>Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot</source>\n        <translation>Aciona a coleta da configuração atual e o envio dos dados atualizados para a Tabela de Configuração do Sistema EFI na próxima inicialização</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Aciona a coleta da configuração atual e o envio dos dados atualizados para a Tabela de Configuração do Sistema EFI na próxima inicialização.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"871\"/>\n        <source>Collect current config</source>\n        <translation>Coletar a configuração atual</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"878\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"881\"/>\n        <source>Indicate that Platform-defined recovery should commence upon reboot</source>\n        <translation>Indica que a recuperação definida pela plataforma deve ser iniciada após a reinicialização</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"884\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that Platform-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indica que a recuperação definida pela plataforma deve ser iniciada após a reinicialização.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"887\"/>\n        <source>Start Platform recovery</source>\n        <translation>Iniciar recuperação da plataforma</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"894\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"897\"/>\n        <source>Indicate that OS-defined recovery should commence upon reboot</source>\n        <translation>Indica que a recuperação definida pelo sistema operacional deve ser iniciada após a reinicialização</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"900\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that OS-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indica que a recuperação definida pelo sistema operacional deve ser iniciada após a reinicialização.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"903\"/>\n        <source>Start OS recovery</source>\n        <translation>Iniciar recuperação do sistema operacional</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"932\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"935\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"944\"/>\n        <source>Secure boot settings</source>\n        <translation>Configurações de inicialização segura</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"938\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"947\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Secure boot settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Configurações de inicialização segura.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"941\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1025\"/>\n        <source>Secure Boot</source>\n        <translation>Inicialização Segura</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"978\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"981\"/>\n        <source>Defines whether the system is currently operating in Audit Mode</source>\n        <translation>Define se o sistema está atualmente operando em Modo de Auditoria</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"984\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Audit Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Define se o sistema está atualmente operando em Modo de Auditoria.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"987\"/>\n        <source>Audit Mode</source>\n        <translation>Modo de Auditoria</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"997\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1000\"/>\n        <source>Defines whether the system is currently operating in Deployed Mode</source>\n        <translation>Define se o sistema está atualmente operando no Modo Implantado</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1003\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Deployed Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Define se o sistema está atualmente operando no Modo Implantado.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1006\"/>\n        <source>Deployed Mode</source>\n        <translation>Modo Implantado</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1016\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1019\"/>\n        <source>Defines whether the platform firmware is operating with Secure Boot enabled</source>\n        <translation>Define se o firmware da plataforma está operando com a Inicialização Segura ativada</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1022\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the platform firmware is operating with Secure Boot enabled.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Define se o firmware da plataforma está operando com a Inicialização Segura ativada.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1035\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1038\"/>\n        <source>Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables</source>\n        <translation>Define se o sistema deve exigir autenticação ou não em solicitações às variáveis de política de inicialização segura</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1041\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Define se o sistema deve exigir autenticação ou não em solicitações às variáveis de política de inicialização segura.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1044\"/>\n        <source>Setup Mode</source>\n        <translation>Modo de configuração</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1054\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1057\"/>\n        <source>Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys</source>\n        <translation>Define se as variáveis da política de inicialização de segurança foram modificadas por alguém que não seja o fornecedor da plataforma ou um detentor das chaves fornecidas pelo fornecedor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Define se as variáveis da política de inicialização de segurança foram modificadas por alguém que não seja o fornecedor da plataforma ou um detentor das chaves fornecidas pelo fornecedor.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1063\"/>\n        <source>Vendor Keys</source>\n        <translation>Chaves do fornecedor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1074\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1077\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1086\"/>\n        <source>Apple settings</source>\n        <translation>Configurações da Apple</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1080\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apple settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Configurações da Apple.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1083\"/>\n        <source>Apple</source>\n        <translation>Apple</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1113\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1116\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1129\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1132\"/>\n        <source>macOS boot arguments</source>\n        <translation>Argumentos de inicialização do macOS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1119\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;macOS boot arguments.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Argumentos de inicialização do macOS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1161\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1164\"/>\n        <source>Undo stack</source>\n        <translation>Desfazer pilha</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1167\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo stack&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Desfazer pilha&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1194\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Menu de arquivo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1214\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Help menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Menu Ajuda.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1255\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Exit the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Saia do programa.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1272\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apply changes to the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Aplicar alterações ao sistema.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1289\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reloads EFI data from the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Recarrega os dados EFI do sistema.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1306\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Show information about the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Exibir informações sobre o programa.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1320\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Export current entries into JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Exportar entradas atuais para JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1337\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Import EFI data from JSON dump.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Importar dados EFI de um arquivo JSON..&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1354\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dumps raw EFI data for debugging purposes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Gera um dump dos dados EFI brutos para fins de depuração.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1362\"/>\n        <source>&amp;Undo</source>\n        <translation>&amp;Desfazer</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1365\"/>\n        <source>Undo</source>\n        <translation>Desfazer</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1368\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Desfazer&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1371\"/>\n        <source>Ctrl+Z</source>\n        <translation>Ctrl+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1379\"/>\n        <source>&amp;Redo</source>\n        <translation>&amp;Refazer</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1382\"/>\n        <source>Redo</source>\n        <translation>Refazer</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1385\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Redo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Refazer&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1388\"/>\n        <source>Ctrl+Shift+Z</source>\n        <translation>Ctrl+Shift+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1396\"/>\n        <source>Hot &amp;keys</source>\n        <translation>Atalhos e teclas</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1399\"/>\n        <source>Hot Keys</source>\n        <translation>Teclas de atalho</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1402\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Teclas de atalho&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"593\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"596\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"605\"/>\n        <source>Global settings</source>\n        <translation>Configurações globais</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"641\"/>\n        <source>Timeout</source>\n        <translation>Tempo esgotado</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1122\"/>\n        <source>Boot args</source>\n        <translation>Argumentos de inicialização</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1188\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1191\"/>\n        <source>File</source>\n        <translation>Arquivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1197\"/>\n        <source>&amp;File</source>\n        <translation>&amp;Arquivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1208\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1211\"/>\n        <source>Help</source>\n        <translation>Ajuda</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1217\"/>\n        <source>&amp;Help</source>\n        <translation>&amp;Ajuda</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1225\"/>\n        <source>&amp;Edit</source>\n        <translation>&amp;Editar</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1249\"/>\n        <source>&amp;Quit</source>\n        <translation>&amp;Sair</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1252\"/>\n        <source>Quit</source>\n        <translation>Sair</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1258\"/>\n        <source>Ctrl+Q</source>\n        <translation>Ctrl+Q</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1266\"/>\n        <source>&amp;Save</source>\n        <translation>&amp;Salvar</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1269\"/>\n        <source>Save</source>\n        <translation>Salvar</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1275\"/>\n        <source>Ctrl+S</source>\n        <translation>Ctrl+S</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1283\"/>\n        <source>&amp;Reload</source>\n        <translation>&amp;Recarregar</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1286\"/>\n        <source>Reload</source>\n        <translation>Recarregar</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1292\"/>\n        <source>Ctrl+R</source>\n        <translation>Ctrl+R</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1300\"/>\n        <source>About &amp;EFI Boot Editor</source>\n        <translation>Sobre o Editor de Inicialização EFI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1303\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"29\"/>\n        <source>About EFI Boot Editor</source>\n        <translation>Sobre o Editor de Inicialização EFI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1314\"/>\n        <source>&amp;Export</source>\n        <translation>&amp;Exportar</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1317\"/>\n        <source>Export</source>\n        <translation>Exportar</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1323\"/>\n        <source>Ctrl+E</source>\n        <translation>Ctrl+E</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1331\"/>\n        <source>&amp;Import</source>\n        <translation>&amp;Importar</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1334\"/>\n        <source>Import</source>\n        <translation>Importar</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1340\"/>\n        <source>Ctrl+I</source>\n        <translation>Ctrl+I</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1348\"/>\n        <source>&amp;Dump raw EFI data</source>\n        <translation>&amp;Despejar dados EFI brutos</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1351\"/>\n        <source>Dump raw EFI data</source>\n        <translation>Despejar dados EFI brutos</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"26\"/>\n        <source>Working…</source>\n        <translation>Trabalhando…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"92\"/>\n        <source>Undo %1</source>\n        <translation>Desfazer %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"95\"/>\n        <source>Redo %1</source>\n        <translation>Refazer %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"137\"/>\n        <source>Are you sure you want to reload the entries?&lt;br/&gt;ALL of your changes will be lost!</source>\n        <translation>Tem certeza de que deseja recarregar as entradas?&lt;br/&gt;Todas as suas alterações serão perdidas!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"162\"/>\n        <source>Are you sure you want to reorder the boot entries?&lt;br/&gt;All indexes will be overwritten!</source>\n        <translation>Tem certeza de que deseja reordenar as entradas de inicialização?&lt;br/&gt;Todos os índices serão sobrescritos!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"221\"/>\n        <source>Are you sure you want to save?&lt;br/&gt;Your EFI configuration will be overwritten!</source>\n        <translation>Tem certeza de que deseja salvar?&lt;br/&gt;Sua configuração EFI será sobrescrita!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <source>Open boot configuration dump</source>\n        <translation>Abrir dump de configuração de inicialização</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>JSON documents (*.json)</source>\n        <translation>Arquivos JSON (*.json)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <source>Save boot configuration dump</source>\n        <translation>Salvar dump de configuração de inicialização</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>Save raw EFI dump</source>\n        <translation>Salvar dump EFI bruto</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"31\"/>\n        <source>&lt;h1&gt;EFI Boot Editor&lt;/h1&gt;&lt;p&gt;Version &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Boot Editor for (U)EFI based systems.&lt;/p&gt;</source>\n        <extracomment>About dialog</extracomment>\n        <translation>&lt;h1&gt;Editor de Inicialização EFI&lt;/h1&gt;&lt;p&gt;Versão &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Editor de inicialização para sistemas baseados em (U)EFI.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"45\"/>\n        <source>&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;Website&lt;/a&gt;&lt;/p&gt;&lt;p&gt;The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.&lt;/p&gt;&lt;p&gt;License: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL Version 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;On Linux uses &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; for EFI variables access.&lt;/p&gt;&lt;p&gt;Uses Tango Icons as fallback icons.&lt;/p&gt;</source>\n        <extracomment>About dialog details</extracomment>\n        <translation>&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;Website&lt;/a&gt;&lt;/p&gt;&lt;p&gt;O programa é fornecido &quot;NO ESTADO EM QUE SE ENCONTRA&quot;, SEM QUALQUER GARANTIA, INCLUINDO GARANTIAS DE DESIGN, COMERCIALIZAÇÃO E ADEQUAÇÃO A UM FIM ESPECÍFICO.&lt;/p&gt;&lt;p&gt;Licença: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL Versão 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;No Linux, utiliza &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; para acesso às variáveis EFI.&lt;/p&gt;&lt;p&gt;Utiliza ícones Tango como ícones alternativos.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"330\"/>\n        <source>Reorder %1 entries</source>\n        <translation>Reordenar %1 entradas</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"453\"/>\n        <source>Are you sure you want to quit?</source>\n        <translation>Tem certeza de que deseja sair?</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"123\"/>\n        <source>EFI support required</source>\n        <translation>Suporte EFI necessário</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditorCLI</name>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"13\"/>\n        <source>Boot Editor for (U)EFI based systems.</source>\n        <translation>Editor de inicialização para sistemas baseados em (U)EFI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <source>Export configuration.</source>\n        <translation>Exportar configuração.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>FILE</source>\n        <translation>ARQUIVO</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <source>Dump raw EFI data.</source>\n        <translation>Despejar dados EFI brutos.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>Import configuration from JSON (either from export or raw dump).</source>\n        <translation>Importar configuração de JSON (seja da exportação ou do despejo bruto).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"19\"/>\n        <source>Force import, don&apos;t ask for confirmation.</source>\n        <translation>Forçar a importação, não pedir confirmação.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"26\"/>\n        <source>EFI support required</source>\n        <translation>Suporte EFI necessário</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"45\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation>Carregando entradas do Gerenciador de Inicialização EFI…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"47\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"57\"/>\n        <source>Exporting boot configuration…</source>\n        <translation>Exportando a configuração de inicialização…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"67\"/>\n        <source>Importing boot configuration…</source>\n        <translation>Importando a configuração de inicialização…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Loaded %0 %1 entries</source>\n        <translation>Entradas carregadas %0 %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <source>Boot</source>\n        <translation>Inicialização</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <source>Driver</source>\n        <translation>Driver</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <source>System Preparation</source>\n        <translation>Preparação do Sistema</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Hot Key</source>\n        <translation>Tecla de atalho</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"78\"/>\n        <source>Are you sure you want to save?\nYour EFI configuration will be overwritten!</source>\n        <translation>Tem certeza de que deseja salvar?\nSua configuração EFI será sobrescrita!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"86\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation>Salvando entradas do Gerenciador de Inicialização EFI…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"98\"/>\n        <source>ERROR: %0! %1</source>\n        <translation>ERRO: %0! %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"114\"/>\n        <source>Finished</source>\n        <translation>Finalizado</translation>\n    </message>\n</context>\n<context>\n    <name>EFIKeySequenceEdit</name>\n    <message>\n        <location filename=\"../src/efikeysequenceedit.cpp\" line=\"109\"/>\n        <source>Press hot key</source>\n        <translation>Pressione a tecla de atalho</translation>\n    </message>\n</context>\n<context>\n    <name>FilePathDialog</name>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"12\"/>\n        <source>File path editor</source>\n        <translation>Editor de caminho de arquivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"47\"/>\n        <source>PCI</source>\n        <translation>PCI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"80\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"86\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"196\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"202\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"218\"/>\n        <source>Function</source>\n        <translation>Função</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"121\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"127\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"143\"/>\n        <source>Device</source>\n        <translation>Dispositivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"721\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"727\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"742\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"835\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"841\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"856\"/>\n        <source>HID</source>\n        <translation>HID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"761\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"767\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"782\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"896\"/>\n        <source>UID</source>\n        <translation>UID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1813\"/>\n        <source>USB</source>\n        <translation>USB</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1819\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Configurações USB.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1893\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1909\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3688\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3710\"/>\n        <source>Interface</source>\n        <translation>Interface</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7442\"/>\n        <source>Vendor</source>\n        <translation>Fornecedor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7445\"/>\n        <source>Vendor settings</source>\n        <translation>Configurações do fornecedor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7448\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Configurações do fornecedor.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1778\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1793\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5824\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6348\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7117\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7546\"/>\n        <source>GUID</source>\n        <translation>GUIA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5539\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7587\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7850\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7853\"/>\n        <source>Data format</source>\n        <translation>Formato de dados</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5542\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7590\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7856\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Formato de dados.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5546\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5869\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7860\"/>\n        <source>BASE64</source>\n        <translation>BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1168\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5551\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5874\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7865\"/>\n        <source>UTF-16</source>\n        <translation>UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1173\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5556\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7604\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7870\"/>\n        <source>UTF-8</source>\n        <translation>UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5561\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7875\"/>\n        <source>HEX</source>\n        <translation>HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5523\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5901\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7888\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7891\"/>\n        <source>Data</source>\n        <translation>Dados</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7894\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dados.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7565\"/>\n        <source>Vendor data</source>\n        <translation>Dados do fornecedor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7481\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7757\"/>\n        <source>Type</source>\n        <translation>Tipo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7478\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7500\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Tipo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7504\"/>\n        <source>HW</source>\n        <translation>HW</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7509\"/>\n        <source>MSG</source>\n        <translation>MSG</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7514\"/>\n        <source>MEDIA</source>\n        <translation>MIDIA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2292\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2298\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2313\"/>\n        <source>MAC</source>\n        <translation>MAC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2265\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;MAC settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Configurações MAC.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2374\"/>\n        <source>IPv4</source>\n        <translation>IPv4</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2380\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv4 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Configurações IPv4.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2569\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2591\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2925\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2931\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2947\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4110\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4116\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4132\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6616\"/>\n        <source>Protocol</source>\n        <translation>Protocolos</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3003\"/>\n        <source>Static</source>\n        <translation>Estatísticas</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2692\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Subnet mask.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Máscara de sub-rede.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2730\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5479\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5486\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5503\"/>\n        <source>IPv6</source>\n        <translation>IPv6</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2736\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv6 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Configurações IPv6.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3008\"/>\n        <source>Stateless auto-configuration</source>\n        <translation>Autoconfiguração sem estado</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3013\"/>\n        <source>Stateful auto-configuration</source>\n        <translation>Autoconfiguração com estado</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3920\"/>\n        <source>SATA</source>\n        <translation>SATA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SATA settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Configurações SATA .&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1387\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1393\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1409\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1658\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1664\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1679\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3900\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4035\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4041\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4057\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4191\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4197\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4212\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4496\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4502\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4610\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4616\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4988\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5009\"/>\n        <source>LUN</source>\n        <translation>LUN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4885\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4901\"/>\n        <source>URI</source>\n        <translation>URI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6105\"/>\n        <source>Disk</source>\n        <translation>Disco</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6102\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Disco.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6123\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6126\"/>\n        <source>Choose disk</source>\n        <translation>Escolha o disco</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6129\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Choose disk from discovered in the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Selecione o disco entre os detectados no sistema.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6133\"/>\n        <source>Custom</source>\n        <translation>Personalizar</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6147\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6150\"/>\n        <source>Reload drives</source>\n        <translation>Recarregar unidades</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reload system drives list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Recarregar lista de unidades do sistema.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6343\"/>\n        <source>MBR</source>\n        <translation>MBR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6177\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6183\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6199\"/>\n        <source>Partition</source>\n        <translation>Partição</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6720\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6741\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6797\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6812\"/>\n        <source>Name</source>\n        <translation>Nome</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7176\"/>\n        <source>BIOS Boot Specification</source>\n        <translation>Especificação de inicialização da BIOS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7405\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7411\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7427\"/>\n        <source>Description</source>\n        <translation>Descrição</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7639\"/>\n        <source>End</source>\n        <translation>Fim</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7669\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7672\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7678\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7797\"/>\n        <source>Sub-Type</source>\n        <translation>Subtipo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7675\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7697\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Subtipo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7701\"/>\n        <source>End This Instance</source>\n        <translation>Encerrar esta instância</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7706\"/>\n        <source>End Entire</source>\n        <translation>Terminar inteiro</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7718\"/>\n        <source>Unknown</source>\n        <translation>Desconhecido</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"50\"/>\n        <source>The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.</source>\n        <translation>O caminho do dispositivo PCI define o caminho para o endereço do espaço de configuração PCI de um dispositivo PCI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"53\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;O caminho do dispositivo PCI define o caminho para o endereço do espaço de configuração PCI de um dispositivo PCI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"77\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"99\"/>\n        <source>PCI Function Number.</source>\n        <translation>Número da função PCI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"83\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"105\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Function Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Número da função PCI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"118\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"140\"/>\n        <source>PCI Device Number.</source>\n        <translation>Número do dispositivo PCI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"124\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Device Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Número do dispositivo PCI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"163\"/>\n        <source>PCCARD</source>\n        <translation>CARTÃO PC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"166\"/>\n        <source>PCCARD Settings.</source>\n        <translation>Configurações do CARTÃO PC.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCCARD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Configurações do CARTÃO PC.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"193\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"215\"/>\n        <source>Function Number (0 = First Function).</source>\n        <translation>Número da função (0 = Primeira função).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"199\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"221\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Function Number (0 = First Function).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Número da função (0 = Primeira função).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"238\"/>\n        <source>Memory Mapped</source>\n        <translation>Memória mapeada</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"241\"/>\n        <source>Memory Mapped Settings.</source>\n        <translation>Configurações de memória mapeada.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Memory Mapped Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Configurações de memória mapeada.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"268\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"290\"/>\n        <source>The type of memory to allocate.</source>\n        <translation>O tipo de memória a ser alocada.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"271\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"293\"/>\n        <source>Memory Type</source>\n        <translation>Tipo de memória</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"274\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"296\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The type of memory to allocate.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;O tipo de memória a ser alocada.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"300\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1584\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1738\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1753\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3145\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3160\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4416\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4437\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6868\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6883\"/>\n        <source>Reserved</source>\n        <translation>Reservado</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"305\"/>\n        <source>Loader Code</source>\n        <translation>Código do carregador</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"310\"/>\n        <source>Loader Data</source>\n        <translation>Dados do carregador</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"315\"/>\n        <source>Boot Services Code</source>\n        <translation>Código de serviços de inicialização</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"320\"/>\n        <source>Boot Services Data</source>\n        <translation>Dados de serviços de inicialização</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"325\"/>\n        <source>Runtime Services Code</source>\n        <translation>Código de serviços de tempo de execução</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"330\"/>\n        <source>Runtime Services Data</source>\n        <translation>Dados de serviços de tempo de execução</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"335\"/>\n        <source>Conventional</source>\n        <translation>Convencional</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"340\"/>\n        <source>Unusable</source>\n        <translation>Inutilizável</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"345\"/>\n        <source>ACPI Reclaim</source>\n        <translation>Recuperação ACPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"350\"/>\n        <source>ACPI Memory NVS</source>\n        <translation>NVS Memória ACPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"355\"/>\n        <source>Memory Mapped IO</source>\n        <translation>E/S mapeada em memória</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"360\"/>\n        <source>Memory Mapped IO Port Space</source>\n        <translation>Espaço de porta de E/S mapeado em memória</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"365\"/>\n        <source>Pal Code</source>\n        <translation>Código amigo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"370\"/>\n        <source>Persistent</source>\n        <translation>Persistente</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"375\"/>\n        <source>Unaccepted</source>\n        <translation>Não aceito</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"383\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7013\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7034\"/>\n        <source>Starting Memory Address.</source>\n        <translation>Endereço de memória inicial.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"386\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"407\"/>\n        <source>Start Address</source>\n        <translation>Endereço de início</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"389\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7019\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7040\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Endereço de início.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"423\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7053\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7074\"/>\n        <source>Ending Memory Address.</source>\n        <translation>Endereço de Memória Final.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"426\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"432\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"447\"/>\n        <source>End Address</source>\n        <translation>Endereço de Destino</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"429\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7080\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ending Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Endereço de Memória Final.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"467\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"522\"/>\n        <source>Controller</source>\n        <translation>Controlador</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"470\"/>\n        <source>Controller settings.</source>\n        <translation>Configurações do controlador.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"473\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Configurações do controlador.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"519\"/>\n        <source>Controller number.</source>\n        <translation>Número do controlador.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"525\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Número do controlador.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"542\"/>\n        <source>BMC</source>\n        <translation>BMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"545\"/>\n        <source>The Device Path for a Baseboard Management Controller (BMC) host interface.</source>\n        <translation>O caminho do dispositivo para uma interface de host do Controlador de Gerenciamento da Placa-Mãe (BMC).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"548\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for a Baseboard Management Controller (BMC) host interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;O caminho do dispositivo para uma interface de host do Controlador de Gerenciamento da Placa-Mãe (BMC).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"602\"/>\n        <source>The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.</source>\n        <translation>Tipo de interface do host do Controlador de Gerenciamento da Placa-Mãe (BMC):\n0x00 - Desconhecido.\n0x01 - KCS: Estilo de Controlador de Teclado.\n0x02 - SMIC: Chip de Interface de Gerenciamento do Servidor.\n0x03 - BT: Transferência de Blocos.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"579\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"589\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2332\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2354\"/>\n        <source>Interface Type</source>\n        <translation>Tipo de Interface</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"582\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"612\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Tipo de interface de host do Controlador de Gerenciamento da Placa-Mãe (BMC):\n0x00 - Desconhecido.\n0x01 - KCS: Estilo de Controlador de Teclado.\n0x02 - SMIC: Chip de Interface de Gerenciamento do Servidor.\n0x03 - BT: Transferência de Blocos.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"625\"/>\n        <source>Keyboard Controller Style</source>\n        <translation>Estilo de controlador de teclado</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"630\"/>\n        <source>Server Management Interface Chip</source>\n        <translation>Chip de interface de gerenciamento do servidor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"635\"/>\n        <source>Block Transfer</source>\n        <translation>Transferência em bloco</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"643\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"664\"/>\n        <source>Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.</source>\n        <translation>Endereço base (mapeado em memória ou de E/S) do BMC. Se o bit menos significativo do campo for 1, o endereço está no espaço de E/S; caso contrário, o endereço está mapeado em memória. Consulte a Especificação da Interface IPMI para obter detalhes de uso.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"667\"/>\n        <source>Base Address</source>\n        <translation>Endereço Base</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"670\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Endereço base (mapeado em memória ou E/S) do BMC. Se o bit menos significativo do campo for 1, o endereço está no espaço de E/S; caso contrário, o endereço está mapeado em memória. Consulte a Especificação da Interface IPMI para obter detalhes de uso.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"688\"/>\n        <source>ACPI</source>\n        <translation>ACPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"805\"/>\n        <source>This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.</source>\n        <translation>Este caminho de dispositivo contém IDs de dispositivo ACPI que representam o ID de hardware Plug and Play de um dispositivo e seu ID persistente exclusivo correspondente.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"808\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Este caminho de dispositivo contém IDs de dispositivo ACPI que representam o ID de hardware Plug and Play de um dispositivo e seu ID persistente exclusivo correspondente.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"718\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"739\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"832\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"853\"/>\n        <source>Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.</source>\n        <translation>O ID de hardware PnP do dispositivo é armazenado em um ID numérico comprimido de 32 bits do tipo EISA. Esse valor deve corresponder ao HID correspondente no espaço de nomes ACPI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"724\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"745\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"838\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"859\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;O ID de hardware PnP do dispositivo é armazenado em um ID numérico de 32 bits compactado do tipo EISA. Esse valor deve corresponder ao HID correspondente no espaço de nomes ACPI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"779\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"872\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"893\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.</source>\n        <translation>Identificador único exigido pelo ACPI caso dois dispositivos possuam o mesmo HID. Esse valor também deve corresponder ao par UID/HID correspondente no espaço de nomes ACPI. Somente o tipo de valor numérico de 32 bits para UID é suportado; portanto, strings não devem ser usadas para o UID no espaço de nomes ACPI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"764\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"785\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"899\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ID exclusivo exigido pelo ACPI caso dois dispositivos possuam o mesmo HID. Esse valor também deve corresponder ao par UID/HID correspondente no espaço de nomes ACPI. Somente o tipo de valor numérico de 32 bits para UID é suportado; portanto, strings não devem ser usadas para o UID no espaço de nomes ACPI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"802\"/>\n        <source>Expanded</source>\n        <translation>Expandido</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"912\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"933\"/>\n        <source>Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.</source>\n        <translation>O ID de hardware PnP compatível com dispositivos é armazenado em um ID numérico de 32 bits compactado do tipo EISA. Esse valor deve corresponder a pelo menos um dos IDs de dispositivo compatíveis retornados pelo CID correspondente no espaço de nomes ACPI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"915\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"921\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"936\"/>\n        <source>CID</source>\n        <translation>CID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"918\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"939\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ID de hardware PnP compatível com dispositivos, armazenado em um ID numérico de 32 bits compactado do tipo EISA. Esse valor deve corresponder a pelo menos um dos IDs de dispositivo compatíveis retornados pelo CID correspondente no espaço de nomes ACPI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"952\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"974\"/>\n        <source>Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.</source>\n        <translation>O ID de hardware PnP do dispositivo é armazenado como uma string. Esse valor deve corresponder ao HID correspondente no espaço de nomes ACPI. Se o comprimento dessa string for 0, o campo HID será usado. Se o comprimento dessa string for maior que 0, esse campo substituirá o campo HID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"955\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"961\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"977\"/>\n        <source>HIDSTR</source>\n        <translation>HIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"958\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"980\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ID de hardware PnP do dispositivo armazenado como uma string. Este valor deve corresponder ao HID correspondente no espaço de nomes ACPI. Se o comprimento desta string for 0, o campo HID será usado. Se o comprimento desta string for maior que 0, este campo substituirá o campo HID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"987\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1009\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.</source>\n        <translation>Identificador único exigido pelo ACPI caso dois dispositivos possuam o mesmo HID. Esse valor também deve corresponder ao par UID/HID correspondente no espaço de nomes ACPI. Esse valor é armazenado como uma string. Se o comprimento dessa string for 0, o campo UID será utilizado. Se o comprimento dessa string for maior que 0, esse campo terá precedência sobre o campo UID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"990\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"996\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1012\"/>\n        <source>UIDSTR</source>\n        <translation>UIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"993\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1015\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ID exclusivo exigido pelo ACPI caso dois dispositivos possuam o mesmo HID. Este valor também deve corresponder ao par UID/HID correspondente no espaço de nomes ACPI. Este valor é armazenado como uma string. Se o comprimento desta string for 0, o campo UID será utilizado. Se o comprimento desta string for maior que 0, este campo terá precedência sobre o campo UID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1044\"/>\n        <source>Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.</source>\n        <translation>O ID de hardware PnP compatível com dispositivos é armazenado como uma string. Esse valor deve corresponder a pelo menos um dos IDs de dispositivo compatíveis retornados pelo CID correspondente no namespace ACPI. Se o comprimento dessa string for 0, o campo CID será usado. Se o comprimento dessa string for maior que 0, esse campo substituirá o campo CID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1025\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1031\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1047\"/>\n        <source>CIDSTR</source>\n        <translation>CIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1028\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1050\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ID de hardware PnP compatível com dispositivos, armazenado como uma string. Este valor deve corresponder a pelo menos um dos IDs de dispositivo compatíveis retornados pelo CID correspondente no namespace ACPI. Se o comprimento desta string for 0, o campo CID será usado. Se o comprimento desta string for maior que 0, este campo substituirá o campo CID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1061\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1094\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1100\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1115\"/>\n        <source>ADR</source>\n        <translation>ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1064\"/>\n        <source>The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.</source>\n        <translation>O caminho do dispositivo ADR é usado para conter atributos de dispositivo de saída de vídeo para dar suporte ao Protocolo de Saída Gráfica.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1067\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;O caminho do dispositivo ADR é usado para conter atributos de dispositivo de saída de vídeo para dar suporte ao Protocolo de Saída Gráfica.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1091\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1112\"/>\n        <source>ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required</source>\n        <translation>Valor ADR. Para dispositivos de saída de vídeo, o valor deste campo provém da Tabela B-2 da especificação ACPI 3.0. É necessário pelo menos um valor ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1097\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1118\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Valor ADR. Para dispositivos de saída de vídeo, o valor deste campo provém da Tabela B-2 da especificação ACPI 3.0. É necessário pelo menos um valor ADR.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1131\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1192\"/>\n        <source>This device path may optionally contain more than one ADR entry.</source>\n        <translation>Este caminho de dispositivo pode opcionalmente conter mais de uma entrada ADR.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1195\"/>\n        <source>Additional ADR</source>\n        <translation>ADR Adicional</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1198\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path may optionally contain more than one ADR entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Este caminho de dispositivo pode opcionalmente conter mais de uma entrada ADR.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1153\"/>\n        <source>Additional ADR format.</source>\n        <translation>Formato ADR adicional.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1156\"/>\n        <source>Additional ADR format</source>\n        <translation>Formato ADR adicional</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1159\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Additional ADR format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Formato ADR adicional.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1209\"/>\n        <source>NVDIMM</source>\n        <translation>NVDIMM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1212\"/>\n        <source>This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.</source>\n        <translation>Este caminho de dispositivo descreve um dispositivo NVDIMM usando o identificador NFIT Device Handle, definido pela especificação ACPI 6.0.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Este caminho de dispositivo descreve um dispositivo NVDIMM usando o identificador NFIT Device Handle definido pela especificação ACPI 6.0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1260\"/>\n        <source>NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.</source>\n        <translation>Identificador de dispositivo NFIT - Identificador físico exclusivo. Consulte a seção Dispositivos definidos pela ACPI e Objetos específicos do dispositivo, subcapítulo Dispositivos NVDIMM, para obter a definição específica dos campos utilizados para este identificador.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1242\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1248\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1263\"/>\n        <source>NFIT Device Handle</source>\n        <translation>Cabo do dispositivo NFIT</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1245\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Identificador de dispositivo NFIT - Identificador físico exclusivo. Consulte a seção Dispositivos definidos pela ACPI e Objetos específicos do dispositivo, subcapítulo Dispositivos NVDIMM, para obter a definição específica dos campos utilizados para este identificador.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1284\"/>\n        <source>ATAPI</source>\n        <translation>ATAPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1287\"/>\n        <source>ATAPI Settings.</source>\n        <translation>Configurações ATAPI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Configurações ATAPI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1336\"/>\n        <source>Set to zero for primary or one for secondary.</source>\n        <translation>Defina como zero para primário ou um para secundário.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1317\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1323\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1339\"/>\n        <source>Primary</source>\n        <translation>Primário</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1320\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1342\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for primary or one for secondary.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defina como zero para primário ou um para secundário.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1349\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1371\"/>\n        <source>Set to zero for master or one for slave mode.</source>\n        <translation>Defina como zero para o modo mestre ou um para o modo escravo.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1374\"/>\n        <source>Slave</source>\n        <translation>Escravo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1377\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for master or one for slave mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defina como zero para o modo mestre ou um para o modo escravo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1384\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1406\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4054\"/>\n        <source>Logical Unit Number.</source>\n        <translation>Número da Unidade Lógica.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1390\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1412\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4038\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Número da Unidade Lógica.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1429\"/>\n        <source>SCSI</source>\n        <translation>SCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1432\"/>\n        <source>SCSI Settings.</source>\n        <translation>Configurações SCSI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1435\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Configurações SCSI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1481\"/>\n        <source>Target ID on the SCSI bus (PUN).</source>\n        <translation>ID de destino no barramento SCSI (PUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1962\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1984\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4969\"/>\n        <source>Target ID</source>\n        <translation>ID do alvo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1465\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1487\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the SCSI bus (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ID de destino no barramento SCSI (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4985\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5006\"/>\n        <source>Logical Unit Number (LUN).</source>\n        <translation>Número da Unidade Lógica (LUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5012\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Número da Unidade Lógica (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1545\"/>\n        <source>Fibre Channel</source>\n        <translation>Canal de Fibra</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1548\"/>\n        <source>Fibre Channel Settings</source>\n        <translation>Configuração do Canal de Fibra</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1551\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Configuração Canal de Fibra&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1596\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1750\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4434\"/>\n        <source>Reserved.</source>\n        <translation>Reservado.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1581\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1602\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1756\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3142\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4419\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reservado&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1615\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1636\"/>\n        <source>Fibre Channel World Wide Name.</source>\n        <translation>Nome mundialmente reconhecido para Fibra Óptica.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1624\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1639\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4456\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4477\"/>\n        <source>World Wide Name</source>\n        <translation>Nome Mundial</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1621\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1642\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel World Wide Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Nome mundialmente reconhecido para Fibra Óptica&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1676\"/>\n        <source>Fibre Channel Logical Unit Number.</source>\n        <translation>Número da Unidade Lógica Fibra Óptica.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1661\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1682\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Número da Unidade Lógica Fibre Channel.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1699\"/>\n        <source>Firewire</source>\n        <translation>Firewire</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1702\"/>\n        <source>Firewire Settings.</source>\n        <translation>Configurações Firewire.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1705\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firewire Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Configurações Firewire.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1790\"/>\n        <source>1394 Global Unique ID (GUID)</source>\n        <translation>1394 Identificador Global Único (GUID)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1796\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 Global Unique ID (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 Identificador Global Único (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1816\"/>\n        <source>USB settings.</source>\n        <translation>Configurações USB.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1865\"/>\n        <source>USB Parent Port Number.</source>\n        <translation>Número da porta USB principal.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1852\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1868\"/>\n        <source>Parent Port</source>\n        <translation>Porta Principal</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1871\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Parent Port Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Número da porta USB principal.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1906\"/>\n        <source>USB Interface Number.</source>\n        <translation>Número da interface USB.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1912\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Número da interface USB.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1929\"/>\n        <source>I2O</source>\n        <translation>I2O</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1932\"/>\n        <source>I2O Settings</source>\n        <translation>Configuração do I2O</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1935\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;I2O Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Configuração do I2O&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1981\"/>\n        <source>Target ID (TID) for a device.</source>\n        <translation>Identificação de destino (TID) para um dispositivo.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1965\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1987\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID (TID) for a device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Identificação de destino (TID) para um dispositivo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2004\"/>\n        <source>InfiniBand</source>\n        <translation>Banda Infinita</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2007\"/>\n        <source>InfiniBand Settings.</source>\n        <translation>Configuração da Banda Infinita.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2010\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;InfiniBand Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Configuração da Banda Infinita.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2034\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2067\"/>\n        <source>Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.</source>\n        <translation>Sinalizadores para ajudar a identificar/gerenciar elementos do caminho do dispositivo Banda Infinita:\nBit 0 - IOC/Serviço (0b = IOC, 1b = Serviço).\nBit 1 - Extensão do Ambiente de Inicialização.\nBit 2 - Protocolo de Console.\nBit 3 - Protocolo de Armazenamento.\nBit 4 - Protocolo de Rede.\nTodos os outros bits são reservados.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2043\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2055\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2076\"/>\n        <source>Resource Flags</source>\n        <translation>Indicadores de Recursos</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2046\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2079\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flags para ajudar a identificar/gerenciar elementos do caminho do dispositivo Banda Infinita:\nBit 0 - IOC/Serviço (0b = IOC, 1b = Serviço).\nBit 1 - Ambiente de Inicialização Estendido.\nBit 2 - Protocolo de Console.\nBit 3 - Protocolo de Armazenamento.\nBit 4 - Protocolo de Rede.\nTodos os outros bits são reservados.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2098\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2119\"/>\n        <source>128-bit Global Identifier for remote fabric port</source>\n        <translation>Identificador global de 128 bits para porta de malha remota</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2101\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2122\"/>\n        <source>PORT GID</source>\n        <translation>PORTA GID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2104\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2125\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;128-bit Global Identifier for remote fabric port&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Identificador global de 128 bits para porta de malha remota&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2135\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2156\"/>\n        <source>64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)</source>\n        <translation>Identificador único de 64 bits para IOC remoto ou processo de servidor. Interpretação do campo especificado por Indicadores de Recursos (bit 0)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2138\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2144\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2159\"/>\n        <source>IOC GUID/Service ID</source>\n        <translation>GUID/ID do Serviço do COI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2141\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2162\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Identificador único de 64 bits para IOC remoto ou processo de servidor. Interpretação do campo especificado por Indicadores de Recursos (bit 0)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2175\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2196\"/>\n        <source>64-bit persistent ID of remote IOC port.</source>\n        <translation>ID persistente de 64 bits da porta IOC remota.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2184\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2199\"/>\n        <source>Target Port ID</source>\n        <translation>ID da porta de destino</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2181\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote IOC port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ID persistente de 64 bits da porta IOC remota.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2236\"/>\n        <source>64-bit persistent ID of remote device.</source>\n        <translation>ID persistente de 64 bits do dispositivo remoto.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2239\"/>\n        <source>Device ID</source>\n        <translation>ID do dispositivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ID persistente de 64 bits do dispositivo remoto.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2259\"/>\n        <source>MAC Address</source>\n        <translation>Endereço MAC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2262\"/>\n        <source>MAC settings.</source>\n        <translation>Configurações do MAC.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2289\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2310\"/>\n        <source>The MAC address for a network interface padded with 0s.</source>\n        <translation>O endereço MAC de uma interface de rede preenchido com zeros.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2295\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2316\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The MAC address for a network interface padded with 0s.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;O endereço MAC de uma interface de rede preenchido com zeros.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2329\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2351\"/>\n        <source>Network interface type (i.e., 802.3, FDDI). See RFC 3232.</source>\n        <translation>Tipo de interface de rede (ou seja, 802.3, FDDI). Consulte a RFC 3232.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2357\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network interface type (i.e., 802.3, FDDI). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Tipo de interface de rede (ou seja, 802.3, FDDI). Consulte a RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2377\"/>\n        <source>IPv4 settings.</source>\n        <translation>Configurações de IPv4.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2425\"/>\n        <source>The local IPv4 address.</source>\n        <translation>O endereço IPv4 local.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2407\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2763\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2784\"/>\n        <source>Local IP Address</source>\n        <translation>Endereço IP local</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2431\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;O endereço IPv4 local.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2465\"/>\n        <source>The remote IPv4 address.</source>\n        <translation>O endereço IPv4 remoto.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2447\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2824\"/>\n        <source>Remote IP Address</source>\n        <translation>Endereço IP remoto</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2471\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;O endereço IPv4 remoto.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2862\"/>\n        <source>The local port number.</source>\n        <translation>O número da porta local.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2487\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2865\"/>\n        <source>Local Port</source>\n        <translation>Porta Local</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2490\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;O número da porta local.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2547\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2903\"/>\n        <source>The remote port number.</source>\n        <translation>O número da porta remota.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2550\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2906\"/>\n        <source>Remote Port</source>\n        <translation>Porta Remota</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2553\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2909\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;O número da porta remota.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2566\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2588\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2922\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2944\"/>\n        <source>The network protocol (i.e., UDP, TCP). See RFC 3232.</source>\n        <translation>O protocolo de rede (ou seja, UDP, TCP). Consulte a RFC 3232.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2928\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2950\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The network protocol (i.e., UDP, TCP). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;O protocolo de rede (ou seja, UDP, TCP). Consulte a RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2631\"/>\n        <source>0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.</source>\n        <translation>0x00 - O endereço IP de origem foi atribuído via DHCP.\n0x01 - O endereço IP de origem está vinculado estaticamente.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2635\"/>\n        <source>Static IP Address</source>\n        <translation>Endereço IP estático</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - O endereço IP de origem foi atribuído via DHCP.\n0x01 - O endereço IP de origem está vinculado estaticamente.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2667\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3083\"/>\n        <source>The Gateway IP Address.</source>\n        <translation>O endereço IP do gateway.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3071\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3086\"/>\n        <source>Gateway IP Address</source>\n        <translation>Endereço IP do gateway</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2673\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Gateway IP Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Endereço IP do gateway.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2686\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2707\"/>\n        <source>Subnet mask.</source>\n        <translation>Máscara de sub-rede.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2689\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2695\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2710\"/>\n        <source>Subnet Mask</source>\n        <translation>Máscara de sub-rede</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2733\"/>\n        <source>IPv6 settings.</source>\n        <translation>Configurações de IPv6.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2760\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2781\"/>\n        <source>The local IPv6 address.</source>\n        <translation>O endereço IPv6 local.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2787\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;O endereço IPv6 local.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2821\"/>\n        <source>The remote IPv6 address.</source>\n        <translation>O endereço IPv6 remoto.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;O endereço IPv6 remoto.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2963\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2989\"/>\n        <source>0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.</source>\n        <translation>0x00 - O endereço IP local foi configurado manualmente.\n0x01 - O endereço IP local foi atribuído por meio de autoconfiguração IPv6 sem estado.\n0x02 - O endereço IP local foi atribuído por meio de configuração IPv6 com estado.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2976\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2994\"/>\n        <source>IP Address Origin</source>\n        <translation>Origem do endereço IP</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2971\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2997\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - O endereço IP local foi configurado manualmente.\n0x01 - O endereço IP local foi atribuído por meio de autoconfiguração IPv6 sem estado.\n0x02 - O endereço IP local foi atribuído por meio de configuração IPv6 com estado.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3021\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3043\"/>\n        <source>The Prefix Length.</source>\n        <translation>O comprimento do prefixo.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3024\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3030\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3046\"/>\n        <source>Prefix Length</source>\n        <translation>O comprimento do prefixo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3027\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3049\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Prefix Length.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;O comprimento do prefixo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3106\"/>\n        <source>UART</source>\n        <translation>UART</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3109\"/>\n        <source>UART Settings.</source>\n        <translation>Configurações UART.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3112\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Configurações UART.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3176\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3197\"/>\n        <source>The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.</source>\n        <translation>A configuração da taxa de transmissão (baud rate) para o dispositivo do tipo UART. Um valor de 0 significa que a taxa de transmissão padrão do dispositivo será usada.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3179\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3185\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3200\"/>\n        <source>Baud Rate</source>\n        <translation>Taxa de transmissão (Baud rate)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3182\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3203\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Configuração da taxa de transmissão (baud rate) para o dispositivo do tipo UART. Um valor de 0 significa que a taxa de transmissão padrão do dispositivo será usada.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3216\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3238\"/>\n        <source>The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.</source>\n        <translation>O número de bits de dados para o dispositivo do tipo UART. Um valor de 0 significa que o número padrão de bits de dados do dispositivo será usado.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3219\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3225\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3241\"/>\n        <source>Data Bits</source>\n        <translation>Bits de dados</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3222\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;O número de bits de dados para o dispositivo no estilo UART. Um valor de 0 significa que o número padrão de bits de dados do dispositivo será usado.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3257\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3291\"/>\n        <source>The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.</source>\n        <translation>Configuração de paridade para dispositivos do tipo UART:\n0x00 - Paridade padrão.\n0x01 - Sem paridade.\n0x02 - Paridade par.\n0x03 - Paridade ímpar.\n0x04 - Paridade de marca.\n0x05 - Paridade de espaço.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3266\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3300\"/>\n        <source>Parity</source>\n        <translation>Paridade</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3303\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Configuração de paridade para dispositivos do tipo UART:\n0x00 - Paridade padrão.\n0x01 - Sem paridade.\n0x02 - Paridade par.\n0x03 - Paridade ímpar.\n0x04 - Paridade de marca.\n0x05 - Paridade de espaço.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3313\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3394\"/>\n        <source>Default</source>\n        <translation>Padrão</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3318\"/>\n        <source>No</source>\n        <translation>Não</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3323\"/>\n        <source>Even</source>\n        <translation>Até</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3328\"/>\n        <source>Odd</source>\n        <translation>Chance</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3333\"/>\n        <source>Mark</source>\n        <translation>Marcar</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3338\"/>\n        <source>Space</source>\n        <translation>Espaço</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3346\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3376\"/>\n        <source>The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.</source>\n        <translation>Número de bits de parada para o dispositivo no estilo UART:\n0x00 - Bits de parada padrão.\n0x01 - 1 bit de parada.\n0x02 - 1,5 bits de parada.\n0x03 - 2 bits de parada.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3353\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3363\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3383\"/>\n        <source>Stop Bits</source>\n        <translation>Bits de parada</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3356\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Número de bits de parada para o dispositivo no estilo UART:\n0x00 - Bits de parada padrão.\n0x01 - 1 bit de parada.\n0x02 - 1,5 bits de parada.\n0x03 - 2 bits de parada.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3399\"/>\n        <source>1</source>\n        <translation>1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3404\"/>\n        <source>1.5</source>\n        <translation>1.5</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3409\"/>\n        <source>2</source>\n        <translation>2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3421\"/>\n        <source>USB Class</source>\n        <translation>Classe USB</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3424\"/>\n        <source>USB Class Settings.</source>\n        <translation>Configurações de classe USB.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3427\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Class Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Configurações de classe USB.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3451\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3472\"/>\n        <source>Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.</source>\n        <translation>ID do fornecedor atribuído pela USB-IF. O valor 0xFFFF corresponderá a qualquer ID de fornecedor.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3454\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3460\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3475\"/>\n        <source>Vendor ID</source>\n        <translation>ID do fornecedor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3457\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3478\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ID do fornecedor atribuído pela USB-IF. O valor 0xFFFF corresponderá a qualquer ID de fornecedor.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3491\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3512\"/>\n        <source>Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.</source>\n        <translation>ID do produto atribuído pela USB-IF. O valor 0xFFFF corresponderá a qualquer ID de produto.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3515\"/>\n        <source>Product ID</source>\n        <translation>ID do produto</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3518\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ID do produto atribuído pela USB-IF. O valor 0xFFFF corresponderá a qualquer ID de produto.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3552\"/>\n        <source>The class code assigned by the USB-IF. A value of 0xFF will match any class code.</source>\n        <translation>O código de classe atribuído pela interface USB-IF. O valor 0xFF corresponderá a qualquer código de classe.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3540\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3555\"/>\n        <source>Device Class</source>\n        <translation>Classe de dispositivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3537\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3558\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The class code assigned by the USB-IF. A value of 0xFF will match any class code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;O código de classe atribuído pela interface USB-IF. O valor 0xFF corresponderá a qualquer código de classe.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3592\"/>\n        <source>The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.</source>\n        <translation>O código da subclasse atribuído pela interface USB-IF. O valor 0xFF corresponderá a qualquer código de subclasse.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3574\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3595\"/>\n        <source>Device Subclass</source>\n        <translation>Subclasse de dispositivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;O código da subclasse atribuído pela interface USB-IF. O valor 0xFF corresponderá a qualquer código de subclasse.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3632\"/>\n        <source>The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.</source>\n        <translation>O código de protocolo atribuído pela interface USB-IF. Um valor de 0xFF corresponderá a qualquer código de protocolo.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3635\"/>\n        <source>Device Protocol</source>\n        <translation>Protocolo do dispositivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3617\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;O código de protocolo atribuído pela interface USB-IF. Um valor de 0xFF corresponderá a qualquer código de protocolo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3655\"/>\n        <source>USB WWID</source>\n        <translation>WWID USB</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3658\"/>\n        <source>This device path describes a USB device using its serial number.</source>\n        <translation>Este caminho de dispositivo descreve um dispositivo USB usando seu número de série.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3661\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a USB device using its serial number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Este caminho de dispositivo descreve um dispositivo USB usando seu número de série.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3685\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3707\"/>\n        <source>USB interface Number.</source>\n        <translation>Número da interface USB.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Número da interface USB.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3747\"/>\n        <source>USB vendor id of the device.</source>\n        <translation>Identificação do fornecedor USB do dispositivo.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3750\"/>\n        <source>Device Vendor Id</source>\n        <translation>ID do fornecedor do dispositivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3753\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB vendor id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Identificação do fornecedor USB do dispositivo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3787\"/>\n        <source>USB product id of the device.</source>\n        <translation>ID do produto USB do dispositivo.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3790\"/>\n        <source>Device Product Id</source>\n        <translation>ID do produto do dispositivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3793\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB product id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ID do produto do dispositivo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3828\"/>\n        <source>Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).</source>\n        <translation>Últimos 64 ou menos caracteres UTF-16 do número de série USB. O comprimento da string é determinado pelo campo Comprimento menos o deslocamento do campo Número de Série (10).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3815\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3831\"/>\n        <source>Serial Number</source>\n        <translation>Número de série</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3812\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Últimos 64 caracteres UTF-16 ou menos do número de série USB. O comprimento da string é determinado pelo campo Comprimento menos o deslocamento do campo Número de Série (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3845\"/>\n        <source>Device Logical Unit</source>\n        <translation>Unidade Lógica do Dispositivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3848\"/>\n        <source>Device Logical Unit Settings.</source>\n        <translation>Configurações da Unidade Lógica do Dispositivo.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3851\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device Logical Unit Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Configurações da Unidade Lógica do Dispositivo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3897\"/>\n        <source>Logical Unit Number for the interface.</source>\n        <translation>Número da unidade lógica para a interface.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3903\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number for the interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Número da Unidade Lógica para a interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3923\"/>\n        <source>SATA settings.</source>\n        <translation>Configurações SATA.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3950\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3972\"/>\n        <source>The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.</source>\n        <translation>O número da porta HBA que facilita a conexão com o dispositivo ou um multiplicador de portas. O valor 0xFFFF está reservado.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3953\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3975\"/>\n        <source>HBA Port</source>\n        <translation>Porta HBA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3956\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3978\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;O número da porta HBA que facilita a conexão com o dispositivo ou um multiplicador de portas. O valor 0xFFFF é reservado.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4013\"/>\n        <source>The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.</source>\n        <translation>O número da porta multiplicadora que facilita a conexão com o dispositivo. Deve ser definido como 0xFFFF se o dispositivo estiver conectado diretamente ao HBA.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4000\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4016\"/>\n        <source>Port Multiplier Port</source>\n        <translation>Porta Multiplicadora</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3997\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4019\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;O número da porta multiplicadora que facilita a conexão com o dispositivo. Deve ser definido como 0xFFFF se o dispositivo estiver conectado diretamente ao HBA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4077\"/>\n        <source>iSCSI</source>\n        <translation>iSCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4080\"/>\n        <source>iSCSI Settings.</source>\n        <translation>Configurações iSCSI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4083\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Configurações iSCSI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4129\"/>\n        <source>Network Protocol (0 = TCP, 1+ = reserved).</source>\n        <translation>Protocolo de rede (0 = TCP, 1+ = reservado).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4113\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network Protocol (0 = TCP, 1+ = reserved).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Protocolo de rede (0 = TCP, 1+ = reservado).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4148\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4169\"/>\n        <source>iSCSI Login Options.</source>\n        <translation>Opções de login iSCSI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4151\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4172\"/>\n        <source>Options</source>\n        <translation>Opções</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4154\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4175\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Login Options.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Opções de login iSCSI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4188\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4209\"/>\n        <source>8 byte array containing the iSCSI Logical Unit Number.</source>\n        <translation>Matriz de 8 bytes contendo o número da unidade lógica iSCSI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4194\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing the iSCSI Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Matriz de 8 bytes contendo o número da unidade lógica iSCSI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4228\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4250\"/>\n        <source>iSCSI Target Portal group tag the initiator intends to establish a session with.</source>\n        <translation>A tag do grupo Portal de Destino iSCSI indica com qual o iniciador pretende estabelecer uma sessão.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4231\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4253\"/>\n        <source>Target Portal Group</source>\n        <translation>Grupo de portais alvo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4234\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4256\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Target Portal group tag the initiator intends to establish a session with.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Etiqueta do grupo do Portal de Destino iSCSI com a qual o iniciador pretende estabelecer uma sessão.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4291\"/>\n        <source>iSCSI NodeTarget Name.</source>\n        <translation>Nome do nó iSCSI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4272\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4294\"/>\n        <source>Target Name</source>\n        <translation>Nome do alvo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4275\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4297\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI NodeTarget Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Nome do alvo do nó iSCSI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4308\"/>\n        <source>VLAN</source>\n        <translation>VLAN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4311\"/>\n        <source>VLAN Settings.</source>\n        <translation>Configurações de VLAN.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4314\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Configurações de VLAN.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4360\"/>\n        <source>VLAN identifier (0-4094).</source>\n        <translation>Identificador VLAN (0-4094).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4341\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4347\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4363\"/>\n        <source>Vlan ID</source>\n        <translation>Identificador VLAN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4344\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4366\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN identifier (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Identificador VLAN (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4383\"/>\n        <source>Fibre Channel Ex</source>\n        <translation>Canal de fibra Ex</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4386\"/>\n        <source>The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation>O caminho do dispositivo canal de fibra Ex esclarece a definição do campo Número da Unidade Lógica para estar em conformidade com a especificação T-10 SCSI Architecture Model 4.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4389\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;O caminho do dispositivo canal de fibra Ex esclarece a definição do campo Número da Unidade Lógica para estar em conformidade com a especificação T-10 SCSI Architecture Model 4.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4474\"/>\n        <source>8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).</source>\n        <translation>Matriz de 8 bytes contendo o nome da porta do dispositivo final canal de fibra (também conhecido como World Wide Name).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4480\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Matriz de 8 bytes contendo o nome da porta do dispositivo final canal de fibra (também conhecido como World Wide Name).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4514\"/>\n        <source>8 byte array containing Fibre Channel Logical Unit Number.</source>\n        <translation>Matriz de 8 bytes contendo o número da unidade lógica canal de fibra.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4499\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4520\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Matriz de 8 bytes contendo o número da unidade lógica canal de fibra.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4537\"/>\n        <source>SAS Extended Messaging</source>\n        <translation>Mensagens Estendidas SAS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4540\"/>\n        <source>The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation>O caminho do dispositivo SAS Ex esclarece a definição do campo Número da Unidade Lógica para estar em conformidade com a especificação do Modelo 4 da Arquitetura SCSI T-10.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4543\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;O caminho do dispositivo SAS Ex esclarece a definição do campo Número da Unidade Lógica para estar em conformidade com a especificação T-10 SCSI Architecture Model 4.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4567\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4588\"/>\n        <source>8-byte array of the SAS Address for Serial Attached SCSI Target Port.</source>\n        <translation>Matriz de 8 bytes do endereço SAS para a porta de destino SCSI serial.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4570\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4576\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4591\"/>\n        <source>SAS Address</source>\n        <translation>Endereço SAS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4573\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4594\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Address for Serial Attached SCSI Target Port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Matriz de 8 bytes do endereço SAS para a porta de destino SCSI serial.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4628\"/>\n        <source>8-byte array of the SAS Logical Unit Number.</source>\n        <translation>Matriz de 8 bytes do Número da Unidade Lógica SAS.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4613\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4634\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Matriz de 8 bytes do Número da Unidade Lógica SAS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4647\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4668\"/>\n        <source>More Information about the device and its interconnect.</source>\n        <translation>Mais informações sobre o dispositivo e sua interconexão.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4650\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4656\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4671\"/>\n        <source>Device and Topology Info</source>\n        <translation>Informações sobre o dispositivo e a topologia</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4653\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4674\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;More Information about the device and its interconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Mais informações sobre o dispositivo e sua interconexão.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4687\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4709\"/>\n        <source>Relative Target Port (RTP).</source>\n        <translation>Porta de destino relativa (RTP).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4690\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4696\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4712\"/>\n        <source>Relative Target Port</source>\n        <translation>Porta de destino relativa</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4715\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Relative Target Port (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Porta de destino relativa (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4732\"/>\n        <source>NVM Express NS</source>\n        <translation>NVM Express NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4735\"/>\n        <source>NVM Express Namespace Settings.</source>\n        <translation>Configurações de espaço de nomes do NVM Express.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4738\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM Express Namespace Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Configurações de espaço de nomes do NVM Express.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4783\"/>\n        <source>Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.</source>\n        <translation>Identificador de espaço de nomes (NSID). Os valores 0 e 0xFFFFFFFF são inválidos.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4765\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4771\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4786\"/>\n        <source>NSID</source>\n        <translation>NSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4768\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4789\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Identificador de espaço de nomes (NSID). Os valores 0 e 0xFFFFFFFF são inválidos.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4802\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4823\"/>\n        <source>This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.</source>\n        <translation>Este campo contém o Identificador Único Estendido IEEE (EUI-64). Dispositivos sem um valor EUI-64 devem inicializar este campo com o valor 0.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4805\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4811\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4826\"/>\n        <source>EUI-64</source>\n        <translation>EUI-64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4808\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4829\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Este campo contém o Identificador Único Estendido IEEE (EUI-64). Dispositivos sem um valor EUI-64 devem inicializar este campo com o valor 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4849\"/>\n        <source>Refer to RFC 3986 for details on the URI contents.</source>\n        <translation>Consulte a RFC 3986 para obter detalhes sobre o conteúdo do URI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Refer to RFC 3986 for details on the URI contents.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Consulte a RFC 3986 para obter detalhes sobre o conteúdo do URI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4876\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4898\"/>\n        <source>Instance of the URI pursuant to RFC 3986.</source>\n        <translation>Instância do URI de acordo com a RFC 3986.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4882\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Instance of the URI pursuant to RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Instância do URI de acordo com a RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4915\"/>\n        <source>UFS</source>\n        <translation>UFS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4918\"/>\n        <source>UFS Settings.</source>\n        <translation>Configurações UFS.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Configurações UFS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4966\"/>\n        <source>Target ID on the UFS interface (PUN).</source>\n        <translation>ID de destino na interface UFS (PUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4972\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the UFS interface (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ID de destino na interface UFS (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5029\"/>\n        <source>SD</source>\n        <translation>SD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5032\"/>\n        <source>SD Settings.</source>\n        <translation>Configurações SD.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5035\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Configurações SD.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5081\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5299\"/>\n        <source>Slot Number</source>\n        <translation>Número do slot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5084\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5280\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5286\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5302\"/>\n        <source>Slot</source>\n        <translation>Slot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5087\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5283\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5305\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Slot Number&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Número do slot&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5104\"/>\n        <source>Bluetooth</source>\n        <translation>Bluetooth</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5107\"/>\n        <source>EFI Bluetooth Settings.</source>\n        <translation>Configurações de Bluetooth da EFI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5110\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI Bluetooth Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Configurações de Bluetooth da EFI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5155\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5373\"/>\n        <source>48-bit Bluetooth device address.</source>\n        <translation>Endereço de dispositivo Bluetooth de 48 bits.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5143\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5158\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5361\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5376\"/>\n        <source>Device Address</source>\n        <translation>Endereço do dispositivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5161\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5379\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-bit Bluetooth device address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Endereço de dispositivo Bluetooth de 48 bits.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5178\"/>\n        <source>Wi-Fi</source>\n        <translation>Wi-Fi</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5181\"/>\n        <source>Wi-Fi Settings.</source>\n        <translation>Configurações de Wi-Fi.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5184\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wi-Fi Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Configurações de Wi-Fi.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5208\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5230\"/>\n        <source>SSID in octet string.</source>\n        <translation>SSID em formato de string de octetos.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5211\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5217\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5233\"/>\n        <source>SSID</source>\n        <translation>SSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5214\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5236\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID in octet string.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID em string de octetos.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5247\"/>\n        <source>eMMC</source>\n        <translation>eMMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5250\"/>\n        <source>Embedded Multi-Media Card Settings.</source>\n        <translation>Configurações de cartão multimídia integradas.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5253\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Embedded Multi-Media Card Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Configurações de cartão multimídia integradas.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5322\"/>\n        <source>BluetoothLE</source>\n        <translation>BluetoothLE</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5325\"/>\n        <source>EFI BluetoothLE Settings.</source>\n        <translation>Configurações EFI BluetoothLE.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5328\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI BluetoothLE Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Configurações EFI BluetoothLE.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5416\"/>\n        <source>0x00 - Public Device Address.\n0x01 - Random Device Address.</source>\n        <translation>0x00 - Endereço público do dispositivo.\n0x01 - Endereço aleatório do dispositivo.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5396\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5403\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5420\"/>\n        <source>Address Type</source>\n        <translation>Tipo de endereço</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5399\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5423\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Public Device Address.\n0x01 - Random Device Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Endereço público do dispositivo.\n0x01 - Endereço aleatório do dispositivo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5428\"/>\n        <source>Public</source>\n        <translation>Público</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5433\"/>\n        <source>Random</source>\n        <translation>Aleatório</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5445\"/>\n        <source>DNS</source>\n        <translation>DNS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5448\"/>\n        <source>DNS Settings.</source>\n        <translation>Configurações de DNS.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5451\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DNS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Configurações de DNS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5499\"/>\n        <source>0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.</source>\n        <translation>0x00 - O endereço do servidor DNS é um endereço IPv4.\n0x01 - O endereço do servidor DNS é um endereço IPv6.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5482\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5506\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - O endereço do servidor DNS é um endereço IPv4.\n0x01 - O endereço do servidor DNS é um endereço IPv6.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5514\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5575\"/>\n        <source>One or more instances of the DNS server address in EFI_IP_ADDRESS.</source>\n        <translation>Uma ou mais instâncias do endereço do servidor DNS em EFI_IP_ADDRESS.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5520\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5581\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;One or more instances of the DNS server address in EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Uma ou mais instâncias do endereço do servidor DNS em EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5536\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7584\"/>\n        <source>Data format.</source>\n        <translation>Formato dos dados.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5592\"/>\n        <source>NVDIMM NS</source>\n        <translation>NVDIMM NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5595\"/>\n        <source>This device path describes a bootable NVDIMM namespace that is defined by a namespace label.</source>\n        <translation>Este caminho de dispositivo descreve um espaço de nomes NVDIMM inicializável que é definido por um rótulo de espaço de nomes.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVDIMM namespace that is defined by a namespace label.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Este caminho de dispositivo descreve um espaço de nomes NVDIMM inicializável que é definido por um rótulo de espaço de nomes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5622\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5643\"/>\n        <source>Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.</source>\n        <translation>UUID (identificador único de rótulo do espaço de nomes). Consulte a descrição do UUID na seção &quot;Protocolo de Rótulos NVDIMM - Definições de Rótulos&quot; para obter detalhes sobre este campo.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5646\"/>\n        <source>UUID</source>\n        <translation>UUID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5628\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5649\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Identificador único de rótulo do espaço de nomes (UUID). Consulte a descrição do UUID na seção &quot;Definições de rótulo do Protocolo de Rótulo NVDIMM&quot; para obter detalhes sobre este campo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5663\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5698\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5706\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5724\"/>\n        <source>REST Service</source>\n        <translation>Serviço REST</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5666\"/>\n        <source>REST Service Settings.</source>\n        <translation>Configurações do serviço REST.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5669\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;REST Service Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Configurações do serviço REST.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5719\"/>\n        <source>0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.</source>\n        <translation>0x01 - Serviço REST Redfish.\n0x02 - Serviço REST OData.\n0xFF - Serviço REST específico do fornecedor.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5701\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5727\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Serviço REST Redfish.\n0x02 - Serviço REST OData.\n0xFF - Serviço REST específico do fornecedor.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5733\"/>\n        <source>Redfish</source>\n        <translation>Redfish</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5738\"/>\n        <source>OData</source>\n        <translation>OData</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5743\"/>\n        <source>Vendor specific</source>\n        <translation>Específico do fornecedor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5775\"/>\n        <source>0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.</source>\n        <translation>0x01 - Serviço REST em banda.\n0x02 - Serviço REST fora de banda.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5755\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5779\"/>\n        <source>Access Mode</source>\n        <translation>Modo de acesso</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5782\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Serviço REST em banda.\n0x02 - Serviço REST fora de banda.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5787\"/>\n        <source>In-Band</source>\n        <translation>Em Banda</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5792\"/>\n        <source>Out-of-band</source>\n        <translation>Fora de Banda</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5821\"/>\n        <source>GUID of vendor specific REST service.</source>\n        <translation>GUIA do serviço REST específico do fornecedor.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID of vendor specific REST service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUIA do serviço REST específico do fornecedor.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5898\"/>\n        <source>Vendor-defined data.</source>\n        <translation>Dados definidos pelo fornecedor.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dados definidos pelo fornecedor.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5915\"/>\n        <source>NVMe-oF NS</source>\n        <translation>NVMe-oF NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5918\"/>\n        <source>This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.</source>\n        <translation>Este caminho de dispositivo descreve um espaço de nomes NVMe sobre fibra inicializável, definido por um espaço de nomes e uma identidade NQN de subsistema exclusivos.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Este caminho de dispositivo descreve um espaço de nomes NVMe sobre fibra inicializável, definido por um espaço de nomes e uma identidade NQN de subsistema exclusivos.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5967\"/>\n        <source>Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.</source>\n        <translation>Tipo de identificador de espaço de nomes (NIDT), para valores de tipo globalmente únicos definidos no campo NIDT CNS 03h (1h, 2h ou 3h) pela especificação base NVM Express.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5970\"/>\n        <source>NIDT</source>\n        <translation>NIDT</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5973\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Tipo de identificador de espaço de nomes (NIDT), para valores de tipo globalmente únicos definidos no campo NIDT CNS 03h (1h, 2h ou 3h) pela especificação base NVM Express.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5986\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6007\"/>\n        <source>Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.</source>\n        <translation>O Identificador de Espaço de Nomes (NID, na sigla em inglês) é um valor globalmente único definido na lista de Descritores de Identificação de Espaço de Nomes (CNS 03h) pela Especificação Base do NVM Express no formato big endian.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5989\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5995\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6010\"/>\n        <source>NID</source>\n        <translation>NID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5992\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6013\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;O Identificador de Espaço de Nomes (NID, na sigla em inglês) é um valor globalmente único definido na lista de Descritores de Identificação de Espaço de Nomes (CNS 03h) pela Especificação Base do NVM Express no formato big endian.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6023\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6045\"/>\n        <source>Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.</source>\n        <translation>Identificador único de um subsistema NVM armazenado como uma string UTF-8 de n bytes, em conformidade com o Nome Qualificado NVMe na Especificação Base NVM Express. O NQN do subsistema é usado para fins de identificação e autenticação. Comprimento máximo de 224 bytes.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6026\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6048\"/>\n        <source>Subsystem NQN</source>\n        <translation>Subsistema NQN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6029\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6051\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Identificador único de um subsistema NVM armazenado como uma string UTF-8 de n bytes em conformidade com o Nome Qualificado NVMe na Especificação Base NVM Express. O NQN do subsistema é usado para fins de identificação e autenticação. Comprimento máximo de 224 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6066\"/>\n        <source>Hard Drive</source>\n        <translation>Disco rígido</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6069\"/>\n        <source>The Hard Drive Media Device Path is used to represent a partition on a hard drive.</source>\n        <translation>O caminho do dispositivo de mídia do disco rígido é usado para representar uma partição em um disco rígido.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6072\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Hard Drive Media Device Path is used to represent a partition on a hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;O caminho do dispositivo de mídia do disco rígido é usado para representar uma partição em um disco rígido.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6174\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6196\"/>\n        <source>Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].</source>\n        <translation>Descreve a entrada em uma tabela de partições, começando com a entrada 1. A partição número zero representa o dispositivo inteiro. Os números de partição válidos para uma partição MBR são [1, 4]. Os números de partição válidos para uma partição GPT são [1, NúmeroDeEntradasDePartição].</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6180\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Descreve a entrada em uma tabela de partições, começando com a entrada 1. A partição número zero representa o dispositivo inteiro. Os números de partição válidos para uma partição MBR são [1, 4]. Os números de partição válidos para uma partição GPT são [1, NúmeroDeEntradasDePartição].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6236\"/>\n        <source>Starting LBA of the partition on the hard drive.</source>\n        <translation>Inicializando o LBA da partição no disco rígido.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6466\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6487\"/>\n        <source>Partition Start</source>\n        <translation>Início da Partição</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting LBA of the partition on the hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Iniciando LBA da partição no disco rígido.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6255\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6276\"/>\n        <source>Size of the partition in units of Logical Blocks.</source>\n        <translation>Tamanho da partição em unidades de Blocos Lógicos.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6258\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6264\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6279\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6527\"/>\n        <source>Partition Size</source>\n        <translation>Tamanho da partição</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6261\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6282\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Logical Blocks.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Tamanho da partição em unidades de Blocos Lógicos.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6295\"/>\n        <source>Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation>Assinatura exclusiva desta partição:\nSe SignatureType for 0, este campo deve ser inicializado com 16 zeros.\nSe SignatureType for 1, a assinatura do MBR é armazenada nos primeiros 4 bytes deste campo. Os outros 12 bytes são inicializados com zeros.\nSe SignatureType for 2, este campo contém uma assinatura de 16 bytes.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6301\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6310\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6367\"/>\n        <source>Partition Signature</source>\n        <translation>Assinatura de Partição</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6304\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Assinatura exclusiva desta partição:\nSe SignatureType for 0, este campo deve ser inicializado com 16 zeros.\nSe SignatureType for 1, a assinatura do MBR é armazenada nos primeiros 4 bytes deste campo. Os outros 12 bytes são inicializados com zeros.\nSe SignatureType for 2, este campo contém uma assinatura de 16 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6322\"/>\n        <source>PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.</source>\n        <translation>Tipo de parte da assinatura do disco (valores não utilizados reservados):\n0x00 - Sem assinatura de disco.\n0x01 - Assinatura de 32 bits do endereço 0x1b8 do tipo 0x01 MBR.\n0x02 - Assinatura GUID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6328\"/>\n        <source>Signature Type</source>\n        <translation>Tipo de assinatura</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6331\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Tipo de parte da assinatura do disco (valores não utilizados reservados)\n            0x00 - Sem assinatura de disco.\n            0x01 - Assinatura de 32 bits do endereço 0x1b8 do MBR do tipo 0x01.\n            0x02 - Assinatura GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6338\"/>\n        <source>None</source>\n        <translation>Nenhum</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6361\"/>\n        <source>Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation>Assinatura exclusiva desta partição:\n            Se o tipo de assinatura for 0, este campo deve ser inicializado com 16 zeros.\n            Se o tipo de assinatura for 1, a assinatura do MBR é armazenada nos primeiros 4 bytes deste campo. Os outros 12 bytes são inicializados com zeros.\n            Se o tipo de assinatura for 2, este campo contém uma assinatura de 16 bytes.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6370\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Assinatura exclusiva desta partição:\n            Se o Tipo de Assinatura for 0, este campo deve ser inicializado com 16 zeros.\n            Se o Tipo de Assinatura for 1, a assinatura do MBR é armazenada nos primeiros 4 bytes deste campo. Os outros 12 bytes são inicializados com zeros.\n            Se o Tipo de Assinatura for 2, este campo contém uma assinatura de 16 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6392\"/>\n        <source>CD-ROM</source>\n        <translation>CD-ROM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6395\"/>\n        <source>The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.</source>\n        <translation>O caminho do dispositivo de mídia CD-ROM é usado para definir uma partição do sistema que existe em um CD-ROM.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6398\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;O caminho do dispositivo de mídia CD-ROM é usado para definir uma partição do sistema que existe em um CD-ROM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6444\"/>\n        <source>Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.</source>\n        <translation>Número de entrada de inicialização do Catálogo de Inicialização. A entrada inicial/padrão é definida como zero.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6425\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6431\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6447\"/>\n        <source>Boot Entry</source>\n        <translation>Entrada de inicialização</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6450\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Número de entrada de inicialização do Catálogo de Inicialização. A entrada inicial/padrão é definida como zero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6463\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6484\"/>\n        <source>Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.</source>\n        <translation>Iniciando o endereçamento RBA da partição na mídia. Os CDs usam endereçamento lógico de bloco relativo.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6469\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6490\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Iniciando o endereçamento RBA da partição na mídia. Os CDs usam endereçamento lógico de bloco relativo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6524\"/>\n        <source>Size of the partition in units of Blocks, also called Sectors.</source>\n        <translation>Dimensões da partição em unidades de blocos, também chamados de setores.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6530\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Blocks, also called Sectors.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dimensões da partição em unidades de blocos, também chamados de setores.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6547\"/>\n        <source>File Path</source>\n        <translation>Caminho do arquivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6550\"/>\n        <source>File Path settings.</source>\n        <translation>Configurações de caminho de arquivo.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6553\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File Path settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Configurações de caminho de arquivo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6599\"/>\n        <source>Path including directory and file names.</source>\n        <translation>Caminho incluindo nomes de diretórios e arquivos.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6586\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6602\"/>\n        <source>Path Name</source>\n        <translation>Nome do caminho</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6583\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6605\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Path including directory and file names.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Caminho incluindo nomes de diretório e arquivo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6619\"/>\n        <source>The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.</source>\n        <translation>O Media Protocol Device Path é usado para indicar o protocolo que está sendo usado em um caminho de dispositivo na localização do caminho especificada.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6622\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;O Media Protocol Device Path é usado para indicar o protocolo que está sendo usado em um caminho de dispositivo na localização do caminho especificada.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6667\"/>\n        <source>The ID of the protocol.</source>\n        <translation>O ID do protocolo.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6673\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ID of the protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;O ID do protocolo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6687\"/>\n        <source>Firmware File</source>\n        <translation>Arquivo de firmware</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6690\"/>\n        <source>Describes a firmware file in a firmware volume.</source>\n        <translation>Descreve um arquivo de firmware em um volume de firmware.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6693\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware file in a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Descreve um arquivo de firmware em um volume de firmware.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6717\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6738\"/>\n        <source>Firmware file name GUID.</source>\n        <translation>GUIA do nome do arquivo de firmware.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6723\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6744\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware file name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUIA do nome do arquivo de firmware.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6758\"/>\n        <source>Firmware Volume</source>\n        <translation>Volume de Firmware</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6761\"/>\n        <source>Describes a firmware volume.</source>\n        <translation>Descreve um volume de firmware.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6764\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Descreve um volume de firmware.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6809\"/>\n        <source>Firmware volume name GUID.</source>\n        <translation>GUIA do nome do volume do firmware.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware volume name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUIA do nome do volume do firmware.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6829\"/>\n        <source>Relative Offset Range</source>\n        <translation>Intervalo de deslocamento relativo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6832\"/>\n        <source>This device path node specifies a range of offsets relative to the first byte available on the device.</source>\n        <translation>Este nó de caminho do dispositivo especifica um intervalo de deslocamentos relativos ao primeiro byte disponível no dispositivo.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6835\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path node specifies a range of offsets relative to the first byte available on the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Este nó de caminho do dispositivo especifica um intervalo de deslocamentos relativos ao primeiro byte disponível no dispositivo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6880\"/>\n        <source>Reserved for future use.</source>\n        <translation>Reservado para uso futuro.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6886\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved for future use.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reservado para uso futuro.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6899\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6920\"/>\n        <source>Offset of the first byte, relative to the parent device node.</source>\n        <translation>Deslocamento do primeiro byte, em relação ao nó do dispositivo pai.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6902\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6908\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6923\"/>\n        <source>Starting Offset</source>\n        <translation>Deslocamento inicial</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6905\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the first byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Deslocamento do primeiro byte, relativo ao nó do dispositivo pai.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6939\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6960\"/>\n        <source>Offset of the last byte, relative to the parent device node.</source>\n        <translation>Deslocamento do último byte, em relação ao nó do dispositivo pai.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6942\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6963\"/>\n        <source>Ending Offset</source>\n        <translation>Deslocamento final</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6966\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the last byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Deslocamento do último byte, relativo ao nó do dispositivo pai.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6983\"/>\n        <source>RAM Disk</source>\n        <translation>Disco RAM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6986\"/>\n        <source>RAM Disk Settings.</source>\n        <translation>Configurações do disco RAM.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6989\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Configurações do disco RAM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7016\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7037\"/>\n        <source>Starting Address</source>\n        <translation>Endereço inicial</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7056\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7077\"/>\n        <source>Ending Address</source>\n        <translation>Endereço final</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7093\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7114\"/>\n        <source>GUID that defines the type of the RAM Disk.</source>\n        <translation>GUID que define o tipo do disco RAM.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7120\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID that defines the type of the RAM Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID que define o tipo do disco RAM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7130\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7152\"/>\n        <source>RAM Disk instance number, if supported.</source>\n        <translation>Número da instância do disco RAM, se compatível.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7133\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7155\"/>\n        <source>Disk Instance</source>\n        <translation>Instância de disco</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7158\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk instance number, if supported.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Número da instância do disco RAM, se compatível.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7179\"/>\n        <source>This Device Path is used to describe the booting of non-EFI-aware operating systems.</source>\n        <translation>Este caminho de dispositivo é usado para descrever a inicialização de sistemas operacionais que não são compatíveis com EFI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7182\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path is used to describe the booting of non-EFI-aware operating systems.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Este caminho de dispositivo é usado para descrever a inicialização de sistemas operacionais que não são compatíveis com EFI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7206\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7249\"/>\n        <source>An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.</source>\n        <translation>Um número de identificação que descreve o tipo de dispositivo:\n  0x00 - Reservado.\n  0x01 - Disquete.\n  0x02 - Disco rígido.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - Dispositivo USB.\n  0x06 - Rede integrada.\n  0x07..0x7F - Reservado.\n  0x80 - Dispositivo BEV.\n  0x81..0xFE - Reservado.\n  0xFF - Desconhecido.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7220\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7263\"/>\n        <source>Device Type</source>\n        <translation>Tipo de dispositivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7223\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Um número de identificação que descreve o tipo de dispositivo:\n  0x00 - Reservado.\n  0x01 - Disquete.\n  0x02 - Disco rígido.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - Dispositivo USB.\n  0x06 - Rede integrada.\n  0x07..0x7F - Reservado.\n  0x80 - Dispositivo BEV.\n  0x81..0xFE - Reservado.\n  0xFF - Desconhecido.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7290\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7347\"/>\n        <source>Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero</source>\n        <translation>Sinalizadores de status conforme definidos pela especificação de inicialização da BIOS:\n| Bits | Campo | Valor | Descrição\n|========|===============|=======|=============\n| 3..0 | Posição antiga | 0..15 | Índice desta entrada na tabela na última inicialização. Para atualizar a prioridade do IPL ou BCV se a detecção individual do dispositivo for realizada.\n|--------|-------------- |-------|-------------\n| 7..4 | (Reservado) | 0 | Reservado para uso futuro, deve ser zero.\n|--------|-------------- |-------|-------------\n| 8 | Ativado | 0..1 | 0 = A entrada será ignorada para inicialização (IPL); a entrada não será chamada para conexão de inicialização (BCV).\n| | | | 1 = Tentativa de entrada para inicialização (IPL); entrada será chamada para conexão de inicialização (BCV).\n|--------|---------------|-------|-------------\n| 9 | Falha | 0..1 | 0 = Não houve tentativa de inicialização ou não se sabe se ocorreu falha na inicialização (IPL); entrada conectada com sucesso (BCV).\n| | | | 1 = Tentativa de inicialização (IPL) com falha; tentativa de conexão (BCV) com falha.\n|--------|---------------|-------|-------------\n| 11..10 | Mídia presente | 0..3 | 0 = Nenhuma mídia inicializável presente no dispositivo.\n| | | | 1 = Não se sabe se há mídia inicializável presente.\n| | | | 2 = Mídia presente e aparentemente inicializável.\n| | | | 3 = Reservado para uso futuro.\n|--------|---------------|-------|-------------\n| 15..12 | (Reservado) | 0 | Reservado para uso futuro, deve ser zero</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7311\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7368\"/>\n        <source>Status Flag</source>\n        <translation>Indicador de status</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7371\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sinalizadores de Status conforme definidos pela Especificação de Inicialização da BIOS:\n| Bits | Campo | Valor | Descrição\n|========|===============|=======|=============\n| 3..0 | Posição Antiga | 0..15 | Índice desta entrada na tabela na última inicialização. Para atualizar a Prioridade IPL ou BCV se a detecção individual do dispositivo for realizada.\n|--------|-------------- |-------|-------------\n| 7..4 | (Reservado) | 0 | Reservado para uso futuro, deve ser zero.\n|--------|-------------- |-------|-------------\n| 8 | Ativado | 0..1 | 0 = A entrada será ignorada para inicialização (IPL); a entrada não será chamada para conexão de inicialização (BCV).\n| | | | 1 = Tentativa de entrada para inicialização (IPL); entrada será chamada para conexão de inicialização (BCV).\n|--------|---------------|-------|-------------\n| 9 | Falha | 0..1 | 0 = Não houve tentativa de inicialização ou não se sabe se ocorreu falha na inicialização (IPL); entrada conectada com sucesso (BCV).\n| | | | 1 = Tentativa de inicialização com falha (IPL); tentativa de conexão com falha (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Mídia presente | 0..3 | 0 = Nenhuma mídia inicializável presente no dispositivo.\n| | | | 1 = Não se sabe se há mídia inicializável presente.\n| | | | 2 = Mídia presente e aparentemente inicializável.\n| | | | 3 = Reservado para uso futuro.\n|--------|---------------|-------|-------------\n| 15..12 | (Reservado) | 0 | Reservado para uso futuro, deve ser zero&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7402\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7424\"/>\n        <source>String that describes the boot device to a user.</source>\n        <translation>String que descreve o dispositivo de inicialização para um usuário.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7408\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7430\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;String that describes the boot device to a user.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;String que descreve o dispositivo de inicialização para um usuário.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7543\"/>\n        <source>Vendor-assigned GUID that defines the data that follows.</source>\n        <translation>GUID atribuído pelo fornecedor que define os dados subsequentes.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7549\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-assigned GUID that defines the data that follows.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID atribuído pelo fornecedor que define os dados subsequentes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7562\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7622\"/>\n        <source>Vendor-defined variable size data.</source>\n        <translation>Dados de tamanho variável definidos pelo fornecedor.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7568\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7628\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined variable size data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dados de tamanho variável definidos pelo fornecedor.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7642\"/>\n        <source>Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.</source>\n        <translation>Dependendo do subtipo, este nó de caminho do dispositivo é usado para indicar o fim da instância do caminho do dispositivo ou da estrutura do caminho do dispositivo.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7645\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dependendo do subtipo, este nó de caminho do dispositivo é usado para indicar o fim da instância do caminho do dispositivo ou da estrutura do caminho do dispositivo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7721\"/>\n        <source>Unknown file path specifier settings</source>\n        <translation>Configurações desconhecidas do especificador de caminho de arquivo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7724\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown file path specifier settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Configurações desconhecidas do especificador de caminho de arquivo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7748\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7772\"/>\n        <source>Unknown Type</source>\n        <translation>Tipo desconhecido</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7754\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7775\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Tipo desconhecido.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7812\"/>\n        <source>Unknown Sub-Type</source>\n        <translation>Subtipo desconhecido</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Subtipo desconhecido.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7828\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7831\"/>\n        <source>Unknown data</source>\n        <translation>Dados desconhecidos</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dados desconhecidos.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/filepathdialog.cpp\" line=\"1569\"/>\n        <source>Couldn&apos;t change data format!</source>\n        <translation>Não foi possível alterar o formato dos dados!</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeyListModel</name>\n    <message>\n        <location filename=\"../src/hotkeylistmodel.cpp\" line=\"100\"/>\n        <source>boot option</source>\n        <translation>opção de inicialização</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Boot option</source>\n        <translation>Opção de inicialização</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Hot key</source>\n        <translation>Tecla de atalho</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Vendor data</source>\n        <translation>Dados do fornecedor</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeysDialog</name>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"20\"/>\n        <source>Hot Keys editor</source>\n        <translation>Editor de teclas de atalho</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"41\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"44\"/>\n        <source>Hot Keys</source>\n        <translation>Teclas de atalho</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"47\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Teclas de atalho&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"125\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"128\"/>\n        <source>Index filter</source>\n        <translation>Filtro de índice</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"131\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Index filter&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Filtro de índice&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"163\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"166\"/>\n        <source>Remove hot key</source>\n        <translation>Remover tecla de atalho</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remover tecla de atalho&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"191\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"194\"/>\n        <source>Add hot key</source>\n        <translation>Adicionar tecla de atalho</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"197\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Adicionar tecla de atalho&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <location filename=\"../include/commands.h\" line=\"21\"/>\n        <location filename=\"../include/commands.h\" line=\"66\"/>\n        <source>Change %1 to &quot;%2&quot;</source>\n        <translation>Alterar %1 para &quot;%2&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"35\"/>\n        <source>Insert %1 entry &quot;%2&quot; at position %3</source>\n        <translation>Insira %1 entrada &quot;%2&quot; na posição %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"50\"/>\n        <source>Remove %1 entry &quot;%2&quot; from position %3</source>\n        <translation>Remova a entrada %1 &quot;%2&quot; da posição %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"73\"/>\n        <location filename=\"../src/commands.cpp\" line=\"116\"/>\n        <source>Move %1 entry &quot;%2&quot; from position %3 to %4</source>\n        <translation>Mova a entrada %1 &quot;%2&quot; da posição %3 para %4</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <location filename=\"../include/commands.h\" line=\"157\"/>\n        <location filename=\"../include/commands.h\" line=\"198\"/>\n        <source>Change %1 entry &quot;%2&quot; %3 to &quot;%4&quot;</source>\n        <translation>Alterar a entrada %1 &quot;%2&quot; %3 para &quot;%4&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <source>Optional data</source>\n        <translation>Dados opcionais</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"227\"/>\n        <source>Insert %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation>Insira o caminho do arquivo &quot;%2&quot; da entrada %1 na posição %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"242\"/>\n        <source>Remove %1 entry &quot;%2&quot; file path from position %3</source>\n        <translation>Remover %1 do caminho do arquivo &quot;%2&quot; da posição %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"257\"/>\n        <source>Set %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation>Defina o caminho do arquivo &quot;%2&quot; da entrada %1 na posição %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <source>Insert %1 entry at position %2</source>\n        <translation>Insira a entrada %1 na posição %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>Key</source>\n        <translation>Chave</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <source>Remove %1 entry from position %2</source>\n        <translation>Remova a entrada %1 da posição %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <location filename=\"../include/commands.h\" line=\"362\"/>\n        <location filename=\"../include/commands.h\" line=\"403\"/>\n        <source>Change %1 entry at position %2 %3 to &quot;%4&quot;</source>\n        <translation>Alterar a entrada %1 na posição %2 %3 para &quot;%4&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>keys</source>\n        <translation>chaves</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"293\"/>\n        <location filename=\"../src/commands.cpp\" line=\"333\"/>\n        <source>Move %1 entry &quot;%2&quot; file path from position %3 to %4</source>\n        <translation>Mova o caminho do arquivo &quot;%2&quot; da entrada %1 da posição %3 para %4</translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/efibooteditor_ru.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"ru\" sourcelanguage=\"en_US\">\n<context>\n    <name>BootEntryForm</name>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"169\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"172\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"182\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"185\"/>\n        <source>Description</source>\n        <translation>Описание</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"198\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"201\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"204\"/>\n        <source>Path</source>\n        <translation>Путь</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"415\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"418\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"478\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"481\"/>\n        <source>Optional data</source>\n        <translation>Дополнительные данные</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"421\"/>\n        <source>Optional</source>\n        <translation>Опционально</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"434\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"437\"/>\n        <source>Optional data format</source>\n        <translation>Опциональный формат данных</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"6\"/>\n        <source>Boot entry form</source>\n        <translation>Форма записей загрузки</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"24\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"27\"/>\n        <source>Error</source>\n        <translation>Ошибка</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"40\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"43\"/>\n        <source>Error note</source>\n        <translation>Замечание об ошибке</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"46\"/>\n        <source>This entry placeholder is shown here to indicate it&apos;s referenced in boot order. It won&apos;t be modified on save, just left as is.</source>\n        <translation>Эта запись показана здесь, чтобы указать, что на нее ссылаются в порядке загрузки. Она не будет изменена при сохранении, просто останется как есть.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"147\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"150\"/>\n        <source>Hot Keys</source>\n        <translation>Горячие Клавиши</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Горячие Клавиши&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"188\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry description.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Описание записи.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"222\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"225\"/>\n        <source>Device path</source>\n        <translation>Путь к устройству</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Путь к устройству.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"280\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"283\"/>\n        <source>Move file path up</source>\n        <translation>Переместить путь к файлу вверх</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"286\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Переместить путь к файлу вверх.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"305\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"308\"/>\n        <source>Move file path down</source>\n        <translation>Переместить путь к файлу вниз</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"311\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Переместить путь к файлу вниз.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"330\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"333\"/>\n        <source>Remove file path</source>\n        <translation>Удалить путь к файлу</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"336\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Удалить путь к файлу.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"355\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"358\"/>\n        <source>Edit file path</source>\n        <translation>Изменить путь к файлу</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"361\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Edit file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Изменить путь к файлу.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"380\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"383\"/>\n        <source>Add file path</source>\n        <translation>Добавить путь к файлу</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Добавить путь к файлу.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Необязательный формат данных.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"444\"/>\n        <source>BASE64</source>\n        <translation>BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"449\"/>\n        <source>UTF-16</source>\n        <translation>UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"454\"/>\n        <source>UTF-8</source>\n        <translation>UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"459\"/>\n        <source>HEX</source>\n        <translation>HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"484\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry optional data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Опциональные данные записи.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"497\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"500\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"503\"/>\n        <source>Attributes</source>\n        <translation>Аттрибуты</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"623\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry category.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Категория записи.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"122\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Индекс записи.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"540\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Is entry considered for automatic boot?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Рассматривается ли запись для автоматической загрузки?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"569\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hidden.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Скрыто.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"585\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Force reconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Принудительно повторно подключиться.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"534\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"537\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"543\"/>\n        <source>Active</source>\n        <translation>Активный</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"579\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"582\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"588\"/>\n        <source>Force reconnect</source>\n        <translation>Принудительно повторно подключиться</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"563\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"566\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"572\"/>\n        <source>Hidden</source>\n        <translation>Скрыто</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"598\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"601\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"604\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"617\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"620\"/>\n        <source>Category</source>\n        <translation>Категория</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"627\"/>\n        <source>Boot</source>\n        <translation>Загрузка</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"632\"/>\n        <source>App</source>\n        <translation>Приложение</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"68\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"71\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"74\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"116\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"119\"/>\n        <source>Index</source>\n        <translation>Индекс</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentryform.cpp\" line=\"117\"/>\n        <source>Couldn&apos;t change optional data format!</source>\n        <translation>Не удалось изменить дополнительный формат данных!</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryListModel</name>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"88\"/>\n        <source>Set Next boot to &quot;%1&quot;</source>\n        <translation>Выставить Следующую загрузку на &quot;%1&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"184\"/>\n        <source>index</source>\n        <translation>индекс</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"200\"/>\n        <source>description</source>\n        <translation>описание</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"237\"/>\n        <source>optional data</source>\n        <translation>дополнительные данные</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"253\"/>\n        <source>attributes</source>\n        <translation>атрибуты</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"269\"/>\n        <source>next boot</source>\n        <translation>следующая загрузка</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryWidget</name>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"12\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"221\"/>\n        <source>Boot entry</source>\n        <translation>Запись загрузки</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"36\"/>\n        <source>Next boot</source>\n        <translation>Следующая загрузка</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"39\"/>\n        <source>Run at next boot</source>\n        <translation>Запустить после следующей загрузки</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"42\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;When chosen, entry will run at next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Если выбран, элемент будет запущен при следующей загрузке.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"140\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"143\"/>\n        <source>Current boot</source>\n        <translation>Текущая загрузка</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This entry is currently booted.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Эта запись в настоящее время загружена.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"181\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Индекс записи загрузки.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"218\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry description, human readable name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Описания записи загрузки, читабельное название.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"67\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"70\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"76\"/>\n        <source>Device path</source>\n        <translation>Путь устройства</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"73\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Путь загрузочного устройства.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"113\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data, arguments passed to boot executable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Необязательные данные, аргументы передаваемые загрузочному исполняемому.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"178\"/>\n        <source>Boot entry index</source>\n        <translation>Индекс записи загрузки</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"184\"/>\n        <source>Index</source>\n        <translation>Индекс</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"212\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"215\"/>\n        <source>Boot entry description</source>\n        <translation>Описание записи загрузки</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"107\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"110\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"116\"/>\n        <source>Optional data</source>\n        <translation>Необязательные данные</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootData</name>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"111\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"813\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1027\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1361\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1472\"/>\n        <source>%1: not found</source>\n        <translation>%1: не найдено</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"120\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"821\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1387\"/>\n        <source>%1: failed deserialization</source>\n        <translation>%1: неудачная десериализация</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Error loading entries</source>\n        <translation>Ошибка загрузки записей</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Failed to load some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>Не удалось загрузить некоторые записи EFI Boot Manager entries:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Error saving entries</source>\n        <translation>Ошибка сохранения записей</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Entry %1(%2): duplicated index!</source>\n        <translation>Запись %1(%2): дублированный индекс!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"389\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"419\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"458\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"479\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"487\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"516\"/>\n        <source>Error saving %1</source>\n        <translation>Ошибка сохранения %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"407\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"470\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"504\"/>\n        <source>Error removing %1</source>\n        <translation>Ошибка удаления %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Error importing boot configuration</source>\n        <translation>Ошибка импорта конфигурации загрузки</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <source>Couldn&apos;t open selected file (%1).</source>\n        <translation>Не удалось открыть выбранный файл (%1.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <source>Parser failed: %1</source>\n        <translation>Ошибка парсера: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <source>Invalid _Type: %1</source>\n        <translation>Неверный _Тип: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <source>Error exporting boot configuration</source>\n        <translation>Ошибка экспорта конфигурации загрузки</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <source>Couldn&apos;t open selected file (%1): %2.</source>\n        <translation>Не удалось открыть выбранный файл (%1): %2.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <source>Couldn&apos;t write into file (%1): %2.</source>\n        <translation>Невозможно записать в файл (%1): %2.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Error dumping raw EFI data</source>\n        <translation>Ошибка выгрузки необработанных данных EFI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Failed to dump some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>Не удалось выгрузить некоторые записи EFI Boot Manager:\n\n- %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"905\"/>\n        <source>Timeout</source>\n        <translation>Задержка</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"921\"/>\n        <source>Apple boot-args</source>\n        <translation>Аргументы загрузки Apple</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"937\"/>\n        <source>Firmware actions</source>\n        <translation>Действия прошивки</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"73\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation>Загрузка записей EFI Boot Manager…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"89\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"787\"/>\n        <source>Searching EFI Boot Manager entries…</source>\n        <translation>Поиск записей EFI Boot Manager…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"116\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"292\"/>\n        <source>Processing EFI Boot Manager entries (%1)…</source>\n        <translation>Обработка записей EFI Boot Manager (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"308\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation>Сохранение записей EFI Boot Manager…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"333\"/>\n        <source>Searching old EFI Boot Manager entries…</source>\n        <translation>Поиск старых записей EFI Boot Manager…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"374\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"416\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"447\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"476\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"484\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"491\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"513\"/>\n        <source>Saving EFI Boot Manager entries (%1)…</source>\n        <translation>Сохранение записей EFI Boot Manager (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"467\"/>\n        <source>Removing old EFI Boot Manager entries (%1)…</source>\n        <translation>Удаление старых записей EFI Boot Manager (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"404\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"501\"/>\n        <source>Removing EFI Boot Manager entries (%1)…</source>\n        <translation>Удаление записей EFI Boot Manager (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"94\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"338\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"792\"/>\n        <source>Couldn&apos;t load EFI Boot Manager variables</source>\n        <translation>Невозможно загрузить переменные EFI Boot Manager</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"100\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"799\"/>\n        <source>Couldn&apos;t find any EFI Boot Manager variables</source>\n        <translation>Не удалось найти переменные EFI Boot Manager</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"529\"/>\n        <source>Importing boot configuration…</source>\n        <translation>Импорт конфигурации загрузки…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"565\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"770\"/>\n        <source>Exporting boot configuration…</source>\n        <translation>Экспорт конфигурации загрузки…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"587\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"809\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"875\"/>\n        <source>Exporting EFI Boot Manager entries (%1)…</source>\n        <translation>Экспорт записей EFI Boot Manager (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1013\"/>\n        <source>Importing boot configuration from JSON…</source>\n        <translation>Импорт конфигурации загрузки из JSON…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1032\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1366\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1477\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1531\"/>\n        <source>Importing EFI Boot Manager entries (%1)…</source>\n        <translation>Импорт записей EFI Boot Manager (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1035\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1376\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>%1: %2 expected</source>\n        <translation>%1: %2 ожидалось</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1043\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1048\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1053\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <source>number</source>\n        <translation>номер</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1058\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1063\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1068\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1073\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1078\"/>\n        <source>bool</source>\n        <translation>логическое значение</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1109\"/>\n        <source>%1: unknown boot manager capability</source>\n        <translation>%1: неизвестная возможность менеджера загрузки</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1122\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1166\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1212\"/>\n        <source>array</source>\n        <translation>массив</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1333\"/>\n        <source>string</source>\n        <translation>строка</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1156\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1192\"/>\n        <source>%1: unknown os indication</source>\n        <translation>%1: неизвестная индикация os</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1083\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1235\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1264\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1290\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1309\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1328\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>object</source>\n        <translation>объект</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <source>hexadecimal number</source>\n        <translation>шестнадцатеричное число</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1270\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1315\"/>\n        <source>%1: failed parsing</source>\n        <translation>%1: не удалось выполнить разбор</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Failed to import some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>Не удалось импортировать некоторые записи EFI Boot Manager:\n\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1347\"/>\n        <source>Importing boot configuration from raw dump…</source>\n        <translation>Импорт конфигурации загрузки из необработанного дампа…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1379\"/>\n        <source>object(raw_data: string, efi_attributes: number)</source>\n        <extracomment>Expected JSON structure, thrown as error description. raw_data and efi_attributes are field names in JSON file</extracomment>\n        <translation>объект(сырые_данные: строка, efi_атрибуты: число)</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"15\"/>\n        <source>Boot</source>\n        <translation>Загрузка</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"16\"/>\n        <source>Driver</source>\n        <translation>Драйвер</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"17\"/>\n        <source>System Preparation</source>\n        <translation>Подготовка системы</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"18\"/>\n        <source>Platform Recovery</source>\n        <translation>Восстановление платформы</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditor</name>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"18\"/>\n        <source>EFI Boot Editor</source>\n        <translation>Редактор загрузки EFI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"71\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"412\"/>\n        <source>Boot</source>\n        <translation>Загрузка</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"74\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"98\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"101\"/>\n        <source>Boot entries</source>\n        <translation>Записи загрузки</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"77\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"104\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Boot entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Список записей загрузки.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"133\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"415\"/>\n        <source>Driver</source>\n        <translation>Драйвер</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"136\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"160\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"163\"/>\n        <source>Driver entries</source>\n        <translation>Записи о драйверах</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"139\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"166\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Driver entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Список записей о драйверах.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"195\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"418\"/>\n        <source>System Preparation</source>\n        <translation>Подготовка системы</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"198\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"222\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"225\"/>\n        <source>SysPrep entries</source>\n        <translation>Записи SysPrep</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"201\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of SysPrep entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Список записей SysPrep.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"257\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"421\"/>\n        <source>Platform Recovery</source>\n        <translation>Восстановление платформы</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"260\"/>\n        <source>PlatformRecovery entries</source>\n        <translation>Записи PlatformRecovery</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"263\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of PlatformRecovery entries (READONLY).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Список записей PlatformRecovery (READONLY).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"284\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"287\"/>\n        <source>PlatformRecovery entries (READONLY)</source>\n        <translation>Записи PlatformRecovery (НАЗАД)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"346\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"349\"/>\n        <source>Add new entry</source>\n        <translation>Добавить новую запись</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"352\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to add new boot entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Нажмите сюда, чтобы добавить новую запись о загрузке.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"377\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"380\"/>\n        <source>Duplicate entry</source>\n        <translation>Дублирующая запись</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"383\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Duplicate entry&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Дублирующая запись&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"408\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"411\"/>\n        <source>Remove entry</source>\n        <translation>Удалить запись</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"414\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to remove currently selected entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Нажмите сюда, чтобы удалить выбранную в данный момент запись.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"439\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"442\"/>\n        <source>Move entry up</source>\n        <translation>Переместить запись вверх</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"445\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Нажмите на эту кнопку, чтобы переместить выбранную запись вверх.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"470\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"473\"/>\n        <source>Move entry down</source>\n        <translation>Переместить запись вниз</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"476\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Нажмите на эту кнопку, чтобы переместить выбранную запись вниз.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"501\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"504\"/>\n        <source>Reorder entries</source>\n        <translation>Упорядочить записи</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"507\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click here to adjust the order of all entries based on their position on the list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Нажмите здесь, чтобы изменить порядок всех записей в зависимости от их положения в списке.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"599\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"608\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Global settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Глобальные настройки.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"602\"/>\n        <source>Global</source>\n        <translation>Глобальный</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"632\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"635\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"654\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"657\"/>\n        <source>Boot manager timeout</source>\n        <translation>Тайм-аут менеджера загрузки</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"638\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"660\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot manager timeout.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Время ожидания менеджера загрузки.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"663\"/>\n        <source>s</source>\n        <translation type=\"unfinished\">s</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"674\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"677\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"686\"/>\n        <source>Firmware details</source>\n        <translation>Сведения о микропрограмме</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"680\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"689\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Данные о прошивке.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"683\"/>\n        <source>Firmware</source>\n        <translation>Прошивка</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"719\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"722\"/>\n        <source>Available firmware features</source>\n        <translation>Доступные функции микропрограммы</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"725\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware features.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Доступные функции прошивки.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"728\"/>\n        <source>Features</source>\n        <translation>Характеристики</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"737\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"740\"/>\n        <source>Platform supports reporting of deferred capsule processing by creation of result variable</source>\n        <translation>Платформа поддерживает отчетность по отложенной обработке капсул путем создания переменной результата</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"743\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports reporting of deferred capsule processing by creation of result variable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Платформа поддерживает отчет об отложенной обработке капсулы путем создания переменной результата.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"746\"/>\n        <source>Capsule Reporting</source>\n        <translation>Капсульная отчетность</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"756\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"759\"/>\n        <source>Firmware supports timestamp based revocation</source>\n        <translation>Встроенное программное обеспечение поддерживает отзыв по временной метке</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"762\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware supports timestamp based revocation.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Прошивка поддерживает отзыв по метке времени.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"765\"/>\n        <source>Timestamp based revocation</source>\n        <translation>Отзыв на основе временной метки</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"775\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"778\"/>\n        <source>Platform supports processing of Firmware Management Protocol update capsule</source>\n        <translation>Платформа поддерживает обработку капсулы обновления протокола управления микропрограммой</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"781\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of Firmware Management Protocol update capsule.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Платформа поддерживает обработку капсулы обновления протокола управления прошивкой.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"784\"/>\n        <source>FMP Capsule</source>\n        <translation>Капсула FMP</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"794\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"797\"/>\n        <source>Platform supports processing of file capsules</source>\n        <translation>Платформа поддерживает обработку капсул с файлами</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"800\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of file capsules.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Платформа поддерживает обработку файловых капсул.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"803\"/>\n        <source>File Capsule</source>\n        <translation>Файловая капсула</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"828\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"831\"/>\n        <source>Available firmware actions</source>\n        <translation>Доступные действия с микропрограммой</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware actions.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Доступные действия с прошивкой.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"837\"/>\n        <source>Actions</source>\n        <translation>Действия</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"846\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"849\"/>\n        <source>Stop at a firmware user interface on the next boot</source>\n        <translation>Остановитесь на пользовательском интерфейсе микропрограммы при следующей загрузке</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Stop at a firmware user interface on the next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;При следующей загрузке остановитесь на пользовательском интерфейсе прошивки.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"855\"/>\n        <source>Boot to firmware UI</source>\n        <translation>Загрузка в пользовательский интерфейс прошивки</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"862\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"865\"/>\n        <source>Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot</source>\n        <translation>Триггер, собирающий текущую конфигурацию и сообщающий обновленные данные в таблицу конфигурации системы EFI при следующей загрузке</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Триггер собирает текущую конфигурацию и сообщает обновленные данные в EFI Системную таблицу конфигурации при следующей загрузке.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"871\"/>\n        <source>Collect current config</source>\n        <translation>Собрать текущую конфигурацию</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"878\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"881\"/>\n        <source>Indicate that Platform-defined recovery should commence upon reboot</source>\n        <translation>Укажите, что восстановление, определяемое платформой, должно начинаться после перезагрузки</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"884\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that Platform-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Укажите, что восстановление, определяемое платформой, должно начинаться при перезагрузке.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"887\"/>\n        <source>Start Platform recovery</source>\n        <translation>Начать восстановление платформы</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"894\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"897\"/>\n        <source>Indicate that OS-defined recovery should commence upon reboot</source>\n        <translation>Укажите, что восстановление, определяемое ОС, должно начинаться при перезагрузке</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"900\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that OS-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Укажите, что восстановление, определяемое ОС, должно начинаться при перезагрузке.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"903\"/>\n        <source>Start OS recovery</source>\n        <translation>Запуск восстановления ОС</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"932\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"935\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"944\"/>\n        <source>Secure boot settings</source>\n        <translation>Настройки безопасной загрузки</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"938\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"947\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Secure boot settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Настройки безопасной загрузки.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"941\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1025\"/>\n        <source>Secure Boot</source>\n        <translation>Безопасная загрузка</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"978\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"981\"/>\n        <source>Defines whether the system is currently operating in Audit Mode</source>\n        <translation>Определяет, работает ли система в данный момент в режиме аудита</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"984\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Audit Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Определяет, работает ли система в данный момент в режиме аудита.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"987\"/>\n        <source>Audit Mode</source>\n        <translation>Режим аудита</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"997\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1000\"/>\n        <source>Defines whether the system is currently operating in Deployed Mode</source>\n        <translation>Определяет, работает ли система в данный момент в развернутом режиме</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1003\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Deployed Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Определяет, работает ли система в данный момент в развернутом режиме.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1006\"/>\n        <source>Deployed Mode</source>\n        <translation>Развернутый режим</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1016\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1019\"/>\n        <source>Defines whether the platform firmware is operating with Secure Boot enabled</source>\n        <translation>Определяет, работает ли микропрограмма платформы с включенным режимом безопасной загрузки</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1022\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the platform firmware is operating with Secure Boot enabled.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Определяет, работает ли микропрограмма платформы с включенной безопасной загрузкой.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1035\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1038\"/>\n        <source>Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables</source>\n        <translation>Определяет, должна ли система требовать аутентификацию или нет при запросах к переменным политики безопасной загрузки</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1041\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Определяет, должна ли система требовать аутентификацию или нет при запросах к переменным политики безопасной загрузки.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1044\"/>\n        <source>Setup Mode</source>\n        <translation>Режим настройки</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1054\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1057\"/>\n        <source>Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys</source>\n        <translation>Определяет, были ли переменные политики безопасности загрузки изменены кем-либо, кроме поставщика платформы или владельца ключей, предоставленных поставщиком</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Определяет, были ли переменные политики безопасности загрузки изменены кем-либо, кроме поставщика платформы или владельца ключей, предоставленных поставщиком.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1063\"/>\n        <source>Vendor Keys</source>\n        <translation>Ключи поставщика</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1074\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1077\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1086\"/>\n        <source>Apple settings</source>\n        <translation>Настройки Apple</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1080\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apple settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Настройки Apple.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1083\"/>\n        <source>Apple</source>\n        <translation>Apple</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1113\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1116\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1129\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1132\"/>\n        <source>macOS boot arguments</source>\n        <translation>Аргументы для загрузки macOS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1119\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;macOS boot arguments.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;аргументы загрузки macOS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1161\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1164\"/>\n        <source>Undo stack</source>\n        <translation>Отмена стека</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1167\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo stack&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Отменить стек&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1194\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Файловое меню.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1214\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Help menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Меню Помощь.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1255\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Exit the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Выйти из программы.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1272\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apply changes to the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Применить изменения в системе.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1289\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reloads EFI data from the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Удаляет данные EFI из системы.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1306\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Show information about the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Показать информацию о программе.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1320\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Export current entries into JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Экспорт текущих записей в JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1337\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Import EFI data from JSON dump.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Импорт данных EFI из JSON-дампа.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1354\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dumps raw EFI data for debugging purposes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Дает необработанные данные EFI для отладки.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1362\"/>\n        <source>&amp;Undo</source>\n        <translation>О&amp;тменить</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1365\"/>\n        <source>Undo</source>\n        <translation>Отменить</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1368\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1371\"/>\n        <source>Ctrl+Z</source>\n        <translation>Ctrl+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1379\"/>\n        <source>&amp;Redo</source>\n        <translation>&amp;Повторить</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1382\"/>\n        <source>Redo</source>\n        <translation>Повторить</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1385\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Redo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Redo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1388\"/>\n        <source>Ctrl+Shift+Z</source>\n        <translation>Ctrl+Shift+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1396\"/>\n        <source>Hot &amp;keys</source>\n        <translation>Горячие &amp;клавиши</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1399\"/>\n        <source>Hot Keys</source>\n        <translation>Горячие клавиши</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1402\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Горячие клавиши&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"593\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"596\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"605\"/>\n        <source>Global settings</source>\n        <translation>Глобальные настройки</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"641\"/>\n        <source>Timeout</source>\n        <translation>Тайм-аут</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1122\"/>\n        <source>Boot args</source>\n        <translation>Параметры загрузки</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1188\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1191\"/>\n        <source>File</source>\n        <translation>Файл</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1197\"/>\n        <source>&amp;File</source>\n        <translation>&amp;Файл</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1208\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1211\"/>\n        <source>Help</source>\n        <translation>Помощь</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1217\"/>\n        <source>&amp;Help</source>\n        <translation>&amp;Помощь</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1225\"/>\n        <source>&amp;Edit</source>\n        <translation>&amp;Редактировать</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1249\"/>\n        <source>&amp;Quit</source>\n        <translation>&amp;Выход</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1252\"/>\n        <source>Quit</source>\n        <translation>Выход</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1258\"/>\n        <source>Ctrl+Q</source>\n        <translation>Ctrl+Q</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1266\"/>\n        <source>&amp;Save</source>\n        <translation>&amp;Сохранить</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1269\"/>\n        <source>Save</source>\n        <translation>Сохранить</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1275\"/>\n        <source>Ctrl+S</source>\n        <translation>Ctrl+S</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1283\"/>\n        <source>&amp;Reload</source>\n        <translation>&amp;Перезагрузка</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1286\"/>\n        <source>Reload</source>\n        <translation>Перезагрузка</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1292\"/>\n        <source>Ctrl+R</source>\n        <translation>Ctrl+R</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1300\"/>\n        <source>About &amp;EFI Boot Editor</source>\n        <translation>О программе &amp;EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1303\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"29\"/>\n        <source>About EFI Boot Editor</source>\n        <translation>О программе EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1314\"/>\n        <source>&amp;Export</source>\n        <translation>&amp;Экспорт</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1317\"/>\n        <source>Export</source>\n        <translation>Экспорт</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1323\"/>\n        <source>Ctrl+E</source>\n        <translation>Ctrl+E</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1331\"/>\n        <source>&amp;Import</source>\n        <translation>&amp;Импорт</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1334\"/>\n        <source>Import</source>\n        <translation>Импортировать</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1340\"/>\n        <source>Ctrl+I</source>\n        <translation>Ctrl+I</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1348\"/>\n        <source>&amp;Dump raw EFI data</source>\n        <translation>&amp;Дамп необработанных данных EFI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1351\"/>\n        <source>Dump raw EFI data</source>\n        <translation>Дамп необработанных данных EFI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"26\"/>\n        <source>Working…</source>\n        <translation>Работает…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"92\"/>\n        <source>Undo %1</source>\n        <translation>Отменить %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"95\"/>\n        <source>Redo %1</source>\n        <translation>Повторить %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"137\"/>\n        <source>Are you sure you want to reload the entries?&lt;br/&gt;ALL of your changes will be lost!</source>\n        <translation>Вы уверены, что хотите перезагрузить записи? &lt;br/&gt;Все ваши изменения будут потеряны!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"162\"/>\n        <source>Are you sure you want to reorder the boot entries?&lt;br/&gt;All indexes will be overwritten!</source>\n        <translation>Вы уверены, что хотите изменить порядок записей в загрузке? &lt;br/&gt;Все индексы будут перезаписаны!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"221\"/>\n        <source>Are you sure you want to save?&lt;br/&gt;Your EFI configuration will be overwritten!</source>\n        <translation>Вы уверены, что хотите сохранить? &lt;br/&gt;Ваша конфигурация EFI будет перезаписана!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <source>Open boot configuration dump</source>\n        <translation>Открыть дамп конфигурации загрузки</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>JSON documents (*.json)</source>\n        <translation>Документы JSON (*.json)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <source>Save boot configuration dump</source>\n        <translation>Сохранить дамп конфигурации загрузки</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>Save raw EFI dump</source>\n        <translation>Сохранить необработанный дамп EFI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"31\"/>\n        <source>&lt;h1&gt;EFI Boot Editor&lt;/h1&gt;&lt;p&gt;Version &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Boot Editor for (U)EFI based systems.&lt;/p&gt;</source>\n        <extracomment>About dialog</extracomment>\n        <translation>&lt;h1&gt;EFI Boot Editor&lt;/h1&gt;&lt;p&gt;Версия &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Редактор загрузки для систем на базе (U)EFI.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"45\"/>\n        <source>&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;Website&lt;/a&gt;&lt;/p&gt;&lt;p&gt;The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.&lt;/p&gt;&lt;p&gt;License: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL Version 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;On Linux uses &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; for EFI variables access.&lt;/p&gt;&lt;p&gt;Uses Tango Icons as fallback icons.&lt;/p&gt;</source>\n        <extracomment>About dialog details</extracomment>\n        <translation>&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;Веб-сайт&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Программа предоставляется КАК ЕСТЬ без каких-либо гарантий, включая гарантии дизайна, товарной пригодности и пригодности для определенной цели.&lt;/p&gt;&lt;p&gt;License: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL Version 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;На Linux используется &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; для доступа к переменным EFI.&lt;/p&gt;&lt;p&gt;Использует иконки Tango Icons в качестве резервных иконок.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"330\"/>\n        <source>Reorder %1 entries</source>\n        <translation>Упорядочить %1 записей</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"453\"/>\n        <source>Are you sure you want to quit?</source>\n        <translation>Вы уверены, что хотите бросить?</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"123\"/>\n        <source>EFI support required</source>\n        <translation>Требуется поддержка EFI</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditorCLI</name>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"13\"/>\n        <source>Boot Editor for (U)EFI based systems.</source>\n        <translation>Редактор загрузки для систем на базе (U)EFI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <source>Export configuration.</source>\n        <translation>Экспорт конфигурации.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>FILE</source>\n        <translation>ФАЙЛ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <source>Dump raw EFI data.</source>\n        <translation>Сброс необработанных данных EFI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>Import configuration from JSON (either from export or raw dump).</source>\n        <translation>Импорт конфигурации из JSON (либо из экспорта, либо из необработанного дампа).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"19\"/>\n        <source>Force import, don&apos;t ask for confirmation.</source>\n        <translation>Принудительный импорт, не спрашивайте подтверждения.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"26\"/>\n        <source>EFI support required</source>\n        <translation>Требуется поддержка EFI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"45\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation>Загрузка записей диспетчера загрузки EFI…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"47\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"57\"/>\n        <source>Exporting boot configuration…</source>\n        <translation>Экспорт конфигурации загрузки…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"67\"/>\n        <source>Importing boot configuration…</source>\n        <translation>Импорт конфигурации загрузки…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Loaded %0 %1 entries</source>\n        <translation>Загружено %0 %1 записей</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <source>Boot</source>\n        <translation>Загрузка</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <source>Driver</source>\n        <translation>Драйвер</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <source>System Preparation</source>\n        <translation>Подготовка системы</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Hot Key</source>\n        <translation>Горячая клавиша</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"78\"/>\n        <source>Are you sure you want to save?\nYour EFI configuration will be overwritten!</source>\n        <translation>Вы уверены, что хотите сохранить?\n\nВаша конфигурация EFI будет перезаписана!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"86\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation>Сохранение записей менеджера загрузки EFI…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"98\"/>\n        <source>ERROR: %0! %1</source>\n        <translation>ОШИБКА: %0! %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"114\"/>\n        <source>Finished</source>\n        <translation>Готово</translation>\n    </message>\n</context>\n<context>\n    <name>EFIKeySequenceEdit</name>\n    <message>\n        <location filename=\"../src/efikeysequenceedit.cpp\" line=\"109\"/>\n        <source>Press hot key</source>\n        <translation>Нажмите горячую клавишу</translation>\n    </message>\n</context>\n<context>\n    <name>FilePathDialog</name>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"12\"/>\n        <source>File path editor</source>\n        <translation>Редактор путей к файлам</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"47\"/>\n        <source>PCI</source>\n        <translation type=\"unfinished\">PCI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"80\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"86\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"196\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"202\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"218\"/>\n        <source>Function</source>\n        <translation>Функция</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"121\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"127\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"143\"/>\n        <source>Device</source>\n        <translation>Устройство</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"721\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"727\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"742\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"835\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"841\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"856\"/>\n        <source>HID</source>\n        <translation type=\"unfinished\">HID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"761\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"767\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"782\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"896\"/>\n        <source>UID</source>\n        <translation type=\"unfinished\">UID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1813\"/>\n        <source>USB</source>\n        <translation>USB</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1819\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Настройки USB.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1893\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1909\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3688\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3710\"/>\n        <source>Interface</source>\n        <translation>Интерфейс</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7442\"/>\n        <source>Vendor</source>\n        <translation>Производитель</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7445\"/>\n        <source>Vendor settings</source>\n        <translation>Параметры поставщика</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7448\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Настройки поставщика.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1778\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1793\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5824\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6348\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7117\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7546\"/>\n        <source>GUID</source>\n        <translation type=\"unfinished\">GUID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5539\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7587\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7850\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7853\"/>\n        <source>Data format</source>\n        <translation>Формат данных</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5542\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7590\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7856\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Формат данных.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5546\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5869\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7860\"/>\n        <source>BASE64</source>\n        <translation type=\"unfinished\">BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1168\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5551\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5874\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7865\"/>\n        <source>UTF-16</source>\n        <translation>UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1173\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5556\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7604\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7870\"/>\n        <source>UTF-8</source>\n        <translation>UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5561\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7875\"/>\n        <source>HEX</source>\n        <translation>HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5523\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5901\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7888\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7891\"/>\n        <source>Data</source>\n        <translation>Данные</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7894\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Данные.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7565\"/>\n        <source>Vendor data</source>\n        <translation>Данные поставщиков</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7481\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7757\"/>\n        <source>Type</source>\n        <translation>Тип</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7478\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7500\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Тип.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7504\"/>\n        <source>HW</source>\n        <translation type=\"unfinished\">HW</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7509\"/>\n        <source>MSG</source>\n        <translation type=\"unfinished\">MSG</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7514\"/>\n        <source>MEDIA</source>\n        <translation>МЕДИА</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2292\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2298\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2313\"/>\n        <source>MAC</source>\n        <translation type=\"unfinished\">MAC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2265\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;MAC settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Настройки MAC.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2374\"/>\n        <source>IPv4</source>\n        <translation>IPv4</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2380\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv4 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Настройки IPv4.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2569\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2591\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2925\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2931\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2947\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4110\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4116\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4132\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6616\"/>\n        <source>Protocol</source>\n        <translation>Протокол</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3003\"/>\n        <source>Static</source>\n        <translation>Статический</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2692\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Subnet mask.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Маска подсети.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2730\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5479\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5486\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5503\"/>\n        <source>IPv6</source>\n        <translation>IPv6</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2736\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv6 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Настройки IPv6.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3008\"/>\n        <source>Stateless auto-configuration</source>\n        <translation>Автоконфигурация без изменения состояния</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3013\"/>\n        <source>Stateful auto-configuration</source>\n        <translation>Автоматическое конфигурирование с учетом состояния</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3920\"/>\n        <source>SATA</source>\n        <translation>SATA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SATA settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Настройки SATA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1387\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1393\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1409\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1658\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1664\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1679\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3900\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4035\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4041\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4057\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4191\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4197\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4212\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4496\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4502\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4610\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4616\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4988\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5009\"/>\n        <source>LUN</source>\n        <translation type=\"unfinished\">LUN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4885\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4901\"/>\n        <source>URI</source>\n        <translation type=\"unfinished\">URI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6105\"/>\n        <source>Disk</source>\n        <translation>Диск</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6102\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Диск.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6123\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6126\"/>\n        <source>Choose disk</source>\n        <translation>Выберите диск</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6129\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Choose disk from discovered in the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Выберите диск из обнаруженных в системе.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6133\"/>\n        <source>Custom</source>\n        <translation>Пользовательский</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6147\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6150\"/>\n        <source>Reload drives</source>\n        <translation>Перезагрузка дисков</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reload system drives list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Перезагрузите список системных дисков.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6343\"/>\n        <source>MBR</source>\n        <translation>MBR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6177\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6183\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6199\"/>\n        <source>Partition</source>\n        <translation>Раздел</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6720\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6741\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6797\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6812\"/>\n        <source>Name</source>\n        <translation>Название</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7176\"/>\n        <source>BIOS Boot Specification</source>\n        <translation>Спецификация загрузки BIOS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7405\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7411\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7427\"/>\n        <source>Description</source>\n        <translation>Описание</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7639\"/>\n        <source>End</source>\n        <translation>Конец</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7669\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7672\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7678\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7797\"/>\n        <source>Sub-Type</source>\n        <translation>Подтип</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7675\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7697\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Подтип.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7701\"/>\n        <source>End This Instance</source>\n        <translation>Завершить этот экземпляр</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7706\"/>\n        <source>End Entire</source>\n        <translation>Конец полный</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7718\"/>\n        <source>Unknown</source>\n        <translation>Неизвестный</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"50\"/>\n        <source>The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.</source>\n        <translation>Путь устройства для PCI определяет путь к адресу конфигурационного пространства PCI для устройства PCI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"53\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Путь устройства для PCI определяет путь к адресу конфигурационного пространства PCI для устройства PCI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"77\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"99\"/>\n        <source>PCI Function Number.</source>\n        <translation>Номер функции PCI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"83\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"105\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Function Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Номер функцииPCI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"118\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"140\"/>\n        <source>PCI Device Number.</source>\n        <translation>Номер устройства PCI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"124\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Device Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Номер устройстваPCI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"163\"/>\n        <source>PCCARD</source>\n        <translation type=\"unfinished\">PCCARD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"166\"/>\n        <source>PCCARD Settings.</source>\n        <translation>Настройки PCCARD.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCCARD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Настройки PCCARD.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"193\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"215\"/>\n        <source>Function Number (0 = First Function).</source>\n        <translation>Номер функции (0 = первая функция).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"199\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"221\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Function Number (0 = First Function).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Номер функции (0 = первая функция).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"238\"/>\n        <source>Memory Mapped</source>\n        <translation>Сопоставление с памятью</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"241\"/>\n        <source>Memory Mapped Settings.</source>\n        <translation>Настройки с отображением памяти.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Memory Mapped Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Настройки отображения памяти.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"268\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"290\"/>\n        <source>The type of memory to allocate.</source>\n        <translation>Тип выделяемой памяти.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"271\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"293\"/>\n        <source>Memory Type</source>\n        <translation>Тип памяти</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"274\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"296\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The type of memory to allocate.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Тип выделяемой памяти.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"300\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1584\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1738\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1753\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3145\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3160\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4416\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4437\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6868\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6883\"/>\n        <source>Reserved</source>\n        <translation>Зарезервировано</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"305\"/>\n        <source>Loader Code</source>\n        <translation>Код загрузки</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"310\"/>\n        <source>Loader Data</source>\n        <translation>Данные загрузки</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"315\"/>\n        <source>Boot Services Code</source>\n        <translation>Код службы загрузки</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"320\"/>\n        <source>Boot Services Data</source>\n        <translation>Данные служб загрузки</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"325\"/>\n        <source>Runtime Services Code</source>\n        <translation>Код служб выполнения</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"330\"/>\n        <source>Runtime Services Data</source>\n        <translation>Данные служб выполнения</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"335\"/>\n        <source>Conventional</source>\n        <translation>Обычный</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"340\"/>\n        <source>Unusable</source>\n        <translation>Неиспользуемый</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"345\"/>\n        <source>ACPI Reclaim</source>\n        <translation>Восстановление ACPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"350\"/>\n        <source>ACPI Memory NVS</source>\n        <translation>ACPI Память NVS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"355\"/>\n        <source>Memory Mapped IO</source>\n        <translation>IO с отображением в памяти</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"360\"/>\n        <source>Memory Mapped IO Port Space</source>\n        <translation>Пространство порта ввода-вывода, отображаемое на память</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"365\"/>\n        <source>Pal Code</source>\n        <translation>Пал Код</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"370\"/>\n        <source>Persistent</source>\n        <translation>Постоянно</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"375\"/>\n        <source>Unaccepted</source>\n        <translation>Неприемлемые</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"383\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7013\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7034\"/>\n        <source>Starting Memory Address.</source>\n        <translation>Начальный адрес памяти.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"386\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"407\"/>\n        <source>Start Address</source>\n        <translation>Стартовый адрес</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"389\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7019\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7040\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Адрес начальной памяти.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"423\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7053\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7074\"/>\n        <source>Ending Memory Address.</source>\n        <translation>Адрес конечной памяти.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"426\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"432\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"447\"/>\n        <source>End Address</source>\n        <translation>Конечный адрес</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"429\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7080\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ending Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Адрес завершающей памяти.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"467\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"522\"/>\n        <source>Controller</source>\n        <translation>Контроллер</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"470\"/>\n        <source>Controller settings.</source>\n        <translation>Настройки контроллера.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"473\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Настройки контроллера.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"519\"/>\n        <source>Controller number.</source>\n        <translation>Номер контроллера.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"525\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Номер контроллера.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"542\"/>\n        <source>BMC</source>\n        <translation type=\"unfinished\">BMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"545\"/>\n        <source>The Device Path for a Baseboard Management Controller (BMC) host interface.</source>\n        <translation>Путь устройства для хост-интерфейса контроллера управления базовой платой (BMC).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"548\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for a Baseboard Management Controller (BMC) host interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Путь устройства для интерфейса хоста контроллера управления базовой платой (BMC).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"602\"/>\n        <source>The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.</source>\n        <translation>Тип интерфейса хост-контроллера управления базовой платой (BMC):\n\n0x00 - Неизвестно.\n\n0x01 - KCS: Клавиатура Контроллер Стиль.\n\n0x02 - SMIC: микросхема интерфейса управления сервером.\n\n0x03 - BT: передача блока.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"579\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"589\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2332\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2354\"/>\n        <source>Interface Type</source>\n        <translation>Тип интерфейса</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"582\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"612\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Тип интерфейса хоста контроллера управления базовой платой (BMC):\n\n0x00 - Неизвестно.\n\n0x01 - KCS: Стиль контроллера клавиатуры.\n\n0x02 - SMIC: микросхема интерфейса управления сервером.\n\n0x03 - BT: Блок-передача.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"625\"/>\n        <source>Keyboard Controller Style</source>\n        <translation>Стиль клавиатурного контроллера</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"630\"/>\n        <source>Server Management Interface Chip</source>\n        <translation>Микросхема интерфейса управления сервером</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"635\"/>\n        <source>Block Transfer</source>\n        <translation>Передача блока</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"643\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"664\"/>\n        <source>Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.</source>\n        <translation>Базовый адрес (с привязкой к памяти или вводу/выводу) BMC. Если младший бит поля равен 1, адрес находится в пространстве ввода/вывода; в противном случае адрес находится в памяти. Подробности использования см. в спецификации интерфейса IPMI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"667\"/>\n        <source>Base Address</source>\n        <translation>Базовый адрес</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"670\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Базовый адрес (с привязкой к памяти или вводу/выводу) BMC. Если младший бит поля равен 1, адрес находится в пространстве ввода-вывода; в противном случае адрес отображается в памяти. Подробности использования см. в спецификации интерфейса IPMI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"688\"/>\n        <source>ACPI</source>\n        <translation type=\"unfinished\">ACPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"805\"/>\n        <source>This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.</source>\n        <translation>Этот путь устройства содержит идентификаторы устройств ACPI, которые представляют собой идентификатор оборудования Plug and Play и соответствующий ему уникальный постоянный идентификатор.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"808\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Этот путь устройства содержит идентификаторы устройств ACPI, которые представляют собой идентификатор оборудования Plug and Play устройства и соответствующий уникальный постоянный идентификатор.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"718\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"739\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"832\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"853\"/>\n        <source>Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.</source>\n        <translation>Устройства Идентификатор оборудования PnP, хранящийся в виде числового 32-битного сжатого идентификатора типа EISA. Это значение должно совпадать с соответствующим HID в пространстве имен ACPI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"724\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"745\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"838\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"859\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Идентификатор оборудования PnP-устройства, хранящийся в виде числового 32-битного сжатого идентификатора типа EISA. Это значение должно совпадать с соответствующим HID в пространстве имен ACPI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"779\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"872\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"893\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.</source>\n        <translation>Уникальный идентификатор, который требуется ACPI, если два устройства имеют одинаковый HID. Это значение также должно совпадать с соответствующей парой UID/HID в пространстве имен ACPI. Поддерживается только 32-битный тип числового значения UID; таким образом, строки не должны использоваться для UID в пространстве имен ACPI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"764\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"785\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"899\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Уникальный идентификатор, который требуется ACPI, если два устройства имеют одинаковый HID. Это значение также должно совпадать с соответствующей парой UID/HID в пространстве имен ACPI. Поддерживается только 32-битный тип числового значения UID; поэтому строки не должны использоваться для UID в пространстве имен ACPI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"802\"/>\n        <source>Expanded</source>\n        <translation>Расширенный</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"912\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"933\"/>\n        <source>Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.</source>\n        <translation>Идентификатор совместимого оборудования PnP-устройств, хранящийся в числовом 32-битном сжатом идентификаторе типа EISA. Это значение должно совпадать хотя бы с одним из совместимых идентификаторов устройств, возвращаемых соответствующим CID в пространстве имен ACPI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"915\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"921\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"936\"/>\n        <source>CID</source>\n        <translation type=\"unfinished\">CID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"918\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"939\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Идентификатор PnP-устройства, совместимого с аппаратным обеспечением, хранящийся в числовом 32-битном сжатом идентификаторе типа EISA. Это значение должно совпадать хотя бы с одним из совместимых идентификаторов устройств, возвращаемых соответствующим CID в пространстве имен ACPI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"952\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"974\"/>\n        <source>Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.</source>\n        <translation>Идентификатор оборудования PnP устройства, хранящийся в виде строки. Это значение должно совпадать с соответствующим HID в пространстве имен ACPI. Если длина этой строки равна 0, то используется поле HID. Если длина этой строки больше 0, то это поле заменяет поле HID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"955\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"961\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"977\"/>\n        <source>HIDSTR</source>\n        <translation type=\"unfinished\">HIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"958\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"980\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Идентификатор оборудования PnP устройства, хранящийся в виде строки. Это значение должно совпадать с соответствующим HID в пространстве имен ACPI. Если длина этой строки равна 0, то используется поле HID. Если длина этой строки больше 0, то это поле заменяет поле HID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"987\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1009\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.</source>\n        <translation>Уникальный идентификатор, который требуется ACPI, если два устройства имеют одинаковый HID. Это значение также должно совпадать с соответствующей парой UID/HID в пространстве имен ACPI. Это значение хранится в виде строки. Если длина этой строки равна 0, то используется поле UID. Если длина этой строки больше 0, то это поле заменяет поле UID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"990\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"996\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1012\"/>\n        <source>UIDSTR</source>\n        <translation type=\"unfinished\">UIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"993\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1015\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Уникальный идентификатор, который требуется ACPI, если два устройства имеют одинаковый HID. Это значение также должно совпадать с соответствующей парой UID/HID в пространстве имен ACPI. Это значение хранится в виде строки. Если длина этой строки равна 0, то используется поле UID. Если длина этой строки больше 0, то это поле заменяет поле UID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1044\"/>\n        <source>Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.</source>\n        <translation>Идентификатор совместимого PnP-устройства, хранящийся в виде строки. Это значение должно совпадать хотя бы с одним из совместимых идентификаторов устройств, возвращаемых соответствующим CID в пространстве имен ACPI. Если длина этой строки равна 0, то используется поле CID. Если длина этой строки больше 0, то это поле заменяет поле CID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1025\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1031\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1047\"/>\n        <source>CIDSTR</source>\n        <translation type=\"unfinished\">CIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1028\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1050\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Идентификатор совместимого PnP-устройства, хранящийся в виде строки. Это значение должно совпадать хотя бы с одним из совместимых идентификаторов устройств, возвращаемых соответствующим CID в пространстве имен ACPI. Если длина этой строки равна 0, то используется поле CID. Если длина этой строки больше 0, то это поле заменяет поле CID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1061\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1094\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1100\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1115\"/>\n        <source>ADR</source>\n        <translation type=\"unfinished\">ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1064\"/>\n        <source>The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.</source>\n        <translation>Путь устройства ADR используется для содержания атрибутов устройства вывода видео для поддержки протокола вывода графики.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1067\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Путь к устройству ADR используется для содержания атрибутов устройства вывода видео для поддержки протокола вывода графики.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1091\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1112\"/>\n        <source>ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required</source>\n        <translation>Значение ADR. Для устройств видеовывода значение этого поля берется из таблицы B-2 спецификации ACPI 3.0. Требуется хотя бы одно значение ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1097\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1118\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ЗначениеADR. Для устройств видеовывода значение этого поля берется из таблицы B-2 спецификации ACPI 3.0. Требуется хотя бы одно значение ADR&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1131\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1192\"/>\n        <source>This device path may optionally contain more than one ADR entry.</source>\n        <translation>Этот путь устройства может содержать более одной записи ADR.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1195\"/>\n        <source>Additional ADR</source>\n        <translation>Дополнительный ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1198\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path may optionally contain more than one ADR entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;По желанию этот путь к устройству может содержать более одной записи ADR.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1153\"/>\n        <source>Additional ADR format.</source>\n        <translation>Дополнительный формат ADR.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1156\"/>\n        <source>Additional ADR format</source>\n        <translation>Дополнительный формат ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1159\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Additional ADR format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Дополнительный формат ADR.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1209\"/>\n        <source>NVDIMM</source>\n        <translation type=\"unfinished\">NVDIMM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1212\"/>\n        <source>This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.</source>\n        <translation>Этот путь устройства описывает устройство NVDIMM, используя в качестве идентификатора NFIT Device Handle, определенный спецификацией ACPI 6.0.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Этот путь устройства описывает устройство NVDIMM, используя в качестве идентификатора NFIT Device Handle, определенный спецификацией ACPI 6.0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1260\"/>\n        <source>NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.</source>\n        <translation>NFIT Device Handle - уникальный физический идентификатор. Определение полей, используемых для этого дескриптора, смотрите в разделе ACPI Определенные устройства и специфические объекты устройств, подраздел Устройства NVDIMM.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1242\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1248\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1263\"/>\n        <source>NFIT Device Handle</source>\n        <translation>Ручка устройства NFIT</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1245\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFIT Device Handle - уникальный физический идентификатор. Конкретное определение полей, используемых для этого хэндла, см. в разделе ACPI Определенные устройства и специфические объекты устройств, подраздел Устройства NVDIMM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1284\"/>\n        <source>ATAPI</source>\n        <translation type=\"unfinished\">ATAPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1287\"/>\n        <source>ATAPI Settings.</source>\n        <translation>Настройки ATAPI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI Настройки.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1336\"/>\n        <source>Set to zero for primary or one for secondary.</source>\n        <translation>Установите ноль для первичных или единицу для вторичных.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1317\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1323\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1339\"/>\n        <source>Primary</source>\n        <translation>Основной</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1320\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1342\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for primary or one for secondary.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Установите ноль для первичных или единицу для вторичных.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1349\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1371\"/>\n        <source>Set to zero for master or one for slave mode.</source>\n        <translation>Установите ноль для режима ведущего или единицу для режима ведомого.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1374\"/>\n        <source>Slave</source>\n        <translation>Ведомый</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1377\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for master or one for slave mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Установите ноль для режима ведущего или единицу для режима ведомого.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1384\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1406\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4054\"/>\n        <source>Logical Unit Number.</source>\n        <translation>Номер логического блока.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1390\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1412\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4038\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Номер логической единицы.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1429\"/>\n        <source>SCSI</source>\n        <translation type=\"unfinished\">SCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1432\"/>\n        <source>SCSI Settings.</source>\n        <translation>Настройки SCSI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1435\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Настройки SCSI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1481\"/>\n        <source>Target ID on the SCSI bus (PUN).</source>\n        <translation>Идентификатор цели на шине SCSI (PUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1962\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1984\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4969\"/>\n        <source>Target ID</source>\n        <translation>Идентификатор цели</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1465\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1487\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the SCSI bus (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Идентификатор цели на шине SCSI (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4985\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5006\"/>\n        <source>Logical Unit Number (LUN).</source>\n        <translation>Номер логического блока (LUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5012\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Номер логического блока (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1545\"/>\n        <source>Fibre Channel</source>\n        <translation>Волоконный канал</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1548\"/>\n        <source>Fibre Channel Settings</source>\n        <translation>Настройки волоконного канала</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1551\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Настройки оптоволоконного канала&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1596\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1750\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4434\"/>\n        <source>Reserved.</source>\n        <translation>Зарезервировано.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1581\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1602\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1756\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3142\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4419\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Зарезервировано.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1615\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1636\"/>\n        <source>Fibre Channel World Wide Name.</source>\n        <translation>Всемирное название канала волоконной связи.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1624\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1639\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4456\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4477\"/>\n        <source>World Wide Name</source>\n        <translation>Всемирное название</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1621\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1642\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel World Wide Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Всемирное название волоконно-оптического канала.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1676\"/>\n        <source>Fibre Channel Logical Unit Number.</source>\n        <translation>Номер логического блока канала волоконной связи.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1661\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1682\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Номер логического блока волоконно-оптического канала.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1699\"/>\n        <source>Firewire</source>\n        <translation type=\"unfinished\">Firewire</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1702\"/>\n        <source>Firewire Settings.</source>\n        <translation>Настройки Firewire.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1705\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firewire Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Настройки Firewire.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1790\"/>\n        <source>1394 Global Unique ID (GUID)</source>\n        <translation>1394 Глобальный уникальный идентификатор (GUID)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1796\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 Global Unique ID (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 Глобальный уникальный идентификатор (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1816\"/>\n        <source>USB settings.</source>\n        <translation>Настройка USB.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1865\"/>\n        <source>USB Parent Port Number.</source>\n        <translation>Номер родительского порта USB.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1852\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1868\"/>\n        <source>Parent Port</source>\n        <translation>Родительский порт</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1871\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Parent Port Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Номер родительского порта USB.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1906\"/>\n        <source>USB Interface Number.</source>\n        <translation>USB Номер интерфейса.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1912\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Номер интерфейса USB.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1929\"/>\n        <source>I2O</source>\n        <translation type=\"unfinished\">I2O</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1932\"/>\n        <source>I2O Settings</source>\n        <translation>Настройки I2O</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1935\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;I2O Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Настройки I2O&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1981\"/>\n        <source>Target ID (TID) for a device.</source>\n        <translation>Идентификатор цели (TID) для устройства.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1965\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1987\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID (TID) for a device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Идентификатор цели (TID) для устройства.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2004\"/>\n        <source>InfiniBand</source>\n        <translation type=\"unfinished\">InfiniBand</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2007\"/>\n        <source>InfiniBand Settings.</source>\n        <translation>Настройки InfiniBand.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2010\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;InfiniBand Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Настройки InfiniBand.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2034\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2067\"/>\n        <source>Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.</source>\n        <translation>Флаги, помогающие идентифицировать/управлять элементами тракта устройства InfiniBand:\n\nБит 0 - IOC/Сервис (0b = IOC, 1b = Сервис).\n\nБит 1 - Расширение среды загрузки.\n\nБит 2 - протокол консоли.\n\nБит 3 - Протокол хранения данных.\n\nБит 4 - сетевой протокол.\n\nВсе остальные биты зарезервированы.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2043\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2055\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2076\"/>\n        <source>Resource Flags</source>\n        <translation>Флаги ресурсов</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2046\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2079\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Флаги, помогающие идентифицировать/управлять элементами тракта устройства InfiniBand:\n\nБит 0 - IOC/Сервис (0b = IOC, 1b = Сервис).\n\nБит 1 - расширить среду загрузки.\n\nБит 2 - протокол консоли.\n\nБит 3 - Протокол хранения данных.\n\nБит 4 - сетевой протокол.\n\nВсе остальные биты зарезервированы.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2098\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2119\"/>\n        <source>128-bit Global Identifier for remote fabric port</source>\n        <translation>128-битный глобальный идентификатор для удаленного порта ткани</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2101\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2122\"/>\n        <source>PORT GID</source>\n        <translation>ПОРТ GID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2104\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2125\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;128-bit Global Identifier for remote fabric port&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;128-битный глобальный идентификатор для удаленного порта ткани&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2135\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2156\"/>\n        <source>64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)</source>\n        <translation>64-битный уникальный идентификатор удаленного IOC или серверного процесса. Интерпретация поля, указанного флагами ресурса (бит 0)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2138\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2144\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2159\"/>\n        <source>IOC GUID/Service ID</source>\n        <translation>IOC GUID/Идентификатор службы</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2141\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2162\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-битный уникальный идентификатор удаленного IOC или серверного процесса. Интерпретация поля задается флагами ресурса (бит 0)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2175\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2196\"/>\n        <source>64-bit persistent ID of remote IOC port.</source>\n        <translation>64-битный постоянный идентификатор удаленного порта IOC.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2184\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2199\"/>\n        <source>Target Port ID</source>\n        <translation>Идентификатор целевого порта</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2181\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote IOC port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-битный постоянный идентификатор удаленного IOC-порта.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2236\"/>\n        <source>64-bit persistent ID of remote device.</source>\n        <translation>64-битный постоянный идентификатор удаленного устройства.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2239\"/>\n        <source>Device ID</source>\n        <translation>Идентификатор устройства</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-битный постоянный идентификатор удаленного устройства.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2259\"/>\n        <source>MAC Address</source>\n        <translation>MAC-адрес</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2262\"/>\n        <source>MAC settings.</source>\n        <translation>Настройки MAC.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2289\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2310\"/>\n        <source>The MAC address for a network interface padded with 0s.</source>\n        <translation>MAC-адрес сетевого интерфейса с добавлением 0.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2295\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2316\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The MAC address for a network interface padded with 0s.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Мак-адрес сетевого интерфейса, дополненный 0s.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2329\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2351\"/>\n        <source>Network interface type (i.e., 802.3, FDDI). See RFC 3232.</source>\n        <translation>Тип сетевого интерфейса (например, 802.3, FDDI). Смотрите RFC 3232.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2357\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network interface type (i.e., 802.3, FDDI). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Тип сетевого интерфейса (например, 802.3, FDDI). Смотрите RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2377\"/>\n        <source>IPv4 settings.</source>\n        <translation>Настройки IPv4.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2425\"/>\n        <source>The local IPv4 address.</source>\n        <translation>Локальный IPv4-адрес.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2407\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2763\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2784\"/>\n        <source>Local IP Address</source>\n        <translation>Локальный IP-адрес</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2431\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Локальный IPv4-адрес.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2465\"/>\n        <source>The remote IPv4 address.</source>\n        <translation>Удаленный IPv4-адрес.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2447\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2824\"/>\n        <source>Remote IP Address</source>\n        <translation>Удаленный IP-адрес</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2471\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Удаленный IPv4-адрес.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2862\"/>\n        <source>The local port number.</source>\n        <translation>Локальный номер порта.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2487\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2865\"/>\n        <source>Local Port</source>\n        <translation>Локальный порт</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2490\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Номер локального порта.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2547\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2903\"/>\n        <source>The remote port number.</source>\n        <translation>Номер удаленного порта.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2550\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2906\"/>\n        <source>Remote Port</source>\n        <translation>Удаленный порт</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2553\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2909\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Номер удаленного порта.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2566\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2588\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2922\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2944\"/>\n        <source>The network protocol (i.e., UDP, TCP). See RFC 3232.</source>\n        <translation>Сетевой протокол (т.е. UDP, TCP). Смотрите RFC 3232.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2928\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2950\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The network protocol (i.e., UDP, TCP). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Сетевой протокол (т.е. UDP, TCP). Смотрите RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2631\"/>\n        <source>0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.</source>\n        <translation>0x00 - IP-адрес источника был назначен по протоколу DHCP.\n\n0x01 - IP-адрес источника статически привязан.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2635\"/>\n        <source>Static IP Address</source>\n        <translation>Статический IP-адрес</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - IP-адрес источника был назначен по протоколу DHCP.\n\n0x01 - IP-адрес источника статически привязан.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2667\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3083\"/>\n        <source>The Gateway IP Address.</source>\n        <translation>IP-адрес шлюза.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3071\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3086\"/>\n        <source>Gateway IP Address</source>\n        <translation>IP-адрес шлюза</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2673\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Gateway IP Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IP-адрес шлюза.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2686\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2707\"/>\n        <source>Subnet mask.</source>\n        <translation>Маска подсети.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2689\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2695\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2710\"/>\n        <source>Subnet Mask</source>\n        <translation>Маска подсети</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2733\"/>\n        <source>IPv6 settings.</source>\n        <translation>Настройки IPv6.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2760\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2781\"/>\n        <source>The local IPv6 address.</source>\n        <translation>Локальный IPv6-адрес.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2787\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Локальный IPv6-адрес.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2821\"/>\n        <source>The remote IPv6 address.</source>\n        <translation>Удаленный IPv6-адрес.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Удаленный IPv6-адрес.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2963\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2989\"/>\n        <source>0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.</source>\n        <translation>0x00 - Локальный IP-адрес был сконфигурирован вручную.\n\n0x01 - Локальный IP-адрес назначен через IPv6 с помощью автоконфигурации без состояния.\n\n0x02 - Локальный IP-адрес назначен через IPv6 конфигурацию с сохранением состояния.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2976\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2994\"/>\n        <source>IP Address Origin</source>\n        <translation>Происхождение IP-адреса</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2971\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2997\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Локальный IP-адрес был сконфигурирован вручную.\n\n0x01 - Локальный IP-адрес назначен с помощью автоконфигурации IPv6 без состояния.\n\n0x02 - Локальный IP-адрес назначен через IPv6 конфигурацию с сохранением состояния.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3021\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3043\"/>\n        <source>The Prefix Length.</source>\n        <translation>Длина префикса.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3024\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3030\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3046\"/>\n        <source>Prefix Length</source>\n        <translation>Длина префикса</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3027\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3049\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Prefix Length.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Длина префикса.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3106\"/>\n        <source>UART</source>\n        <translation type=\"unfinished\">UART</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3109\"/>\n        <source>UART Settings.</source>\n        <translation>Настройки UART.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3112\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Настройки UART.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3176\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3197\"/>\n        <source>The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.</source>\n        <translation>Настройка скорости передачи данных для устройства в стиле UART. Значение 0 означает, что будет использоваться скорость передачи данных устройства по умолчанию.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3179\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3185\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3200\"/>\n        <source>Baud Rate</source>\n        <translation>Скорость передачи данных</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3182\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3203\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Настройка скорости передачи данных для устройства в стиле UART. Значение 0 означает, что будет использоваться скорость передачи данных устройства по умолчанию.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3216\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3238\"/>\n        <source>The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.</source>\n        <translation>Количество битов данных для устройства в стиле UART. Значение 0 означает, что будет использоваться стандартное количество битов данных устройства.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3219\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3225\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3241\"/>\n        <source>Data Bits</source>\n        <translation>Биты данных</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3222\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Количество битов данных для устройства в стиле UART. Значение 0 означает, что будет использоваться стандартное количество битов данных устройства.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3257\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3291\"/>\n        <source>The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.</source>\n        <translation>Настройка четности для устройства в стиле UART:\n\n0x00 - Четность по умолчанию.\n\n0x01 - Нет четности.\n\n0x02 - Четный паритет.\n\n0x03 - Нечетная четность.\n\n0x04 - Знак четности.\n\n0x05 - Пробельный паритет.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3266\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3300\"/>\n        <source>Parity</source>\n        <translation>Паритет</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3303\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Настройка четности для устройства в стиле UART:\n\n0x00 - Четность по умолчанию.\n\n0x01 - Нет четности.\n\n0x02 - Четная четность.\n\n0x03 - Нечетная четность.\n\n0x04 - четность по знаку.\n\n0x05 - пробельный паритет.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3313\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3394\"/>\n        <source>Default</source>\n        <translation>По умолчанию</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3318\"/>\n        <source>No</source>\n        <translation>Нет</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3323\"/>\n        <source>Even</source>\n        <translation>Даже</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3328\"/>\n        <source>Odd</source>\n        <translation>Странно</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3333\"/>\n        <source>Mark</source>\n        <translation>Знак</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3338\"/>\n        <source>Space</source>\n        <translation>Пространство</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3346\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3376\"/>\n        <source>The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.</source>\n        <translation>Количество стоп-битов для устройства в стиле UART:\n\n0x00 - стоп-биты по умолчанию.\n\n0x01 - 1 стоп-бит.\n\n0x02 - 1,5 стоп-бита.\n\n0x03 - 2 стоп-бита.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3353\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3363\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3383\"/>\n        <source>Stop Bits</source>\n        <translation>Стоп-биты</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3356\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Количество стоп-битов для устройства в стиле UART:\n\n0x00 - Стоп-биты по умолчанию.\n\n0x01 - 1 стоп-бит.\n\n0x02 - 1,5 стоп-бита.\n\n0x03 - 2 стоп-бита.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3399\"/>\n        <source>1</source>\n        <translation>1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3404\"/>\n        <source>1.5</source>\n        <translation>1.5</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3409\"/>\n        <source>2</source>\n        <translation>2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3421\"/>\n        <source>USB Class</source>\n        <translation>USB Класс</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3424\"/>\n        <source>USB Class Settings.</source>\n        <translation>USB Настройка класса.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3427\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Class Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Настройки класса USB.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3451\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3472\"/>\n        <source>Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.</source>\n        <translation>Идентификатор поставщика, присвоенный USB-IF. Значение 0xFFFF будет соответствовать любому идентификатору поставщика.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3454\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3460\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3475\"/>\n        <source>Vendor ID</source>\n        <translation>ID поставщика</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3457\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3478\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Идентификатор поставщика, присвоенный USB-IF. Значение 0xFFFF будет соответствовать любому идентификатору поставщика.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3491\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3512\"/>\n        <source>Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.</source>\n        <translation>Идентификатор продукта, присвоенный USB-IF. Значение 0xFFFF будет соответствовать любому идентификатору продукта.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3515\"/>\n        <source>Product ID</source>\n        <translation>ID продукта</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3518\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Идентификатор продукта, присвоенный USB-IF. Значение 0xFFFF будет соответствовать любому идентификатору продукта.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3552\"/>\n        <source>The class code assigned by the USB-IF. A value of 0xFF will match any class code.</source>\n        <translation>Код класса, присвоенный USB-IF. Значение 0xFF будет соответствовать любому коду класса.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3540\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3555\"/>\n        <source>Device Class</source>\n        <translation>Класс устройств</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3537\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3558\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The class code assigned by the USB-IF. A value of 0xFF will match any class code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Код класса, присвоенный USB-IF. Значение 0xFF будет соответствовать любому коду класса.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3592\"/>\n        <source>The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.</source>\n        <translation>Код подкласса, присвоенный USB-IF. Значение 0xFF будет соответствовать любому коду подкласса.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3574\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3595\"/>\n        <source>Device Subclass</source>\n        <translation>Устройство Подкласс</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Код подкласса, присвоенный USB-IF. Значение 0xFF будет соответствовать любому коду подкласса.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3632\"/>\n        <source>The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.</source>\n        <translation>Код протокола, присвоенный USB-IF. Значение 0xFF будет соответствовать любому коду протокола.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3635\"/>\n        <source>Device Protocol</source>\n        <translation>Протокол устройства</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3617\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Код протокола, присвоенный USB-IF. Значение 0xFF будет соответствовать любому коду протокола.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3655\"/>\n        <source>USB WWID</source>\n        <translation type=\"unfinished\">USB WWID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3658\"/>\n        <source>This device path describes a USB device using its serial number.</source>\n        <translation>Этот путь устройства описывает USB-устройство с помощью его серийного номера.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3661\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a USB device using its serial number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Этот путь устройства описывает USB-устройство, используя его серийный номер.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3685\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3707\"/>\n        <source>USB interface Number.</source>\n        <translation>USB-интерфейс Номер.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Номер интерфейса USB.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3747\"/>\n        <source>USB vendor id of the device.</source>\n        <translation>Идентификатор производителя USB-устройства.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3750\"/>\n        <source>Device Vendor Id</source>\n        <translation>Идентификатор поставщика устройства</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3753\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB vendor id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Идентификатор производителя USB-устройства.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3787\"/>\n        <source>USB product id of the device.</source>\n        <translation>Идентификатор USB-продукта устройства.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3790\"/>\n        <source>Device Product Id</source>\n        <translation>Идентификатор продукта устройства</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3793\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB product id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Идентификатор USB-устройства.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3828\"/>\n        <source>Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).</source>\n        <translation>Последние 64 или менее символов UTF-16 серийного номера USB. Длина строки определяется полем Длина за вычетом смещения поля Серийный номер (10).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3815\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3831\"/>\n        <source>Serial Number</source>\n        <translation>Серийный номер</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3812\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Последние 64 или менее символов UTF-16 серийного номера USB. Длина строки определяется полем Длина за вычетом смещения поля Серийный номер (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3845\"/>\n        <source>Device Logical Unit</source>\n        <translation>Логическая единица устройства</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3848\"/>\n        <source>Device Logical Unit Settings.</source>\n        <translation>Настройки логического блока устройства.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3851\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device Logical Unit Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Настройки логического блока устройства.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3897\"/>\n        <source>Logical Unit Number for the interface.</source>\n        <translation>Номер логической единицы для интерфейса.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3903\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number for the interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Номер логической единицы для интерфейса.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3923\"/>\n        <source>SATA settings.</source>\n        <translation>Настройки SATA.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3950\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3972\"/>\n        <source>The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.</source>\n        <translation>Номер порта HBA, облегчающий подключение к устройству, или множитель порта. Значение 0xFFFF зарезервировано.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3953\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3975\"/>\n        <source>HBA Port</source>\n        <translation>Порт HBA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3956\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3978\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Номер порта HBA, который облегчает подключение к устройству, или множитель порта. Значение 0xFFFF зарезервировано.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4013\"/>\n        <source>The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.</source>\n        <translation>Номер порта с множителем порта, который облегчает подключение к устройству. Должно быть установлено значение 0xFFFF, если устройство напрямую подключено к HBA.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4000\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4016\"/>\n        <source>Port Multiplier Port</source>\n        <translation>Множитель порта Порт</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3997\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4019\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Номер порта с множителем порта, который облегчает подключение к устройству. Должно быть установлено значение 0xFFFF, если устройство напрямую подключено к HBA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4077\"/>\n        <source>iSCSI</source>\n        <translation type=\"unfinished\">iSCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4080\"/>\n        <source>iSCSI Settings.</source>\n        <translation>Настройки iSCSI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4083\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Настройки.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4129\"/>\n        <source>Network Protocol (0 = TCP, 1+ = reserved).</source>\n        <translation>Сетевой протокол (0 = TCP, 1+ = зарезервировано).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4113\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network Protocol (0 = TCP, 1+ = reserved).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Сетевой протокол (0 = TCP, 1+ = зарезервировано).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4148\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4169\"/>\n        <source>iSCSI Login Options.</source>\n        <translation>iSCSI Параметры входа.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4151\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4172\"/>\n        <source>Options</source>\n        <translation>Опции</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4154\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4175\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Login Options.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Вход Опции.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4188\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4209\"/>\n        <source>8 byte array containing the iSCSI Logical Unit Number.</source>\n        <translation>Массив из 8 байт, содержащий номер логического блока iSCSI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4194\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing the iSCSI Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-байтовый массив, содержащий номер логического блока iSCSI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4228\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4250\"/>\n        <source>iSCSI Target Portal group tag the initiator intends to establish a session with.</source>\n        <translation>Метка группы портала iSCSI Target, с которой инициатор намерен установить сеанс.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4231\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4253\"/>\n        <source>Target Portal Group</source>\n        <translation>Целевая группа портала</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4234\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4256\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Target Portal group tag the initiator intends to establish a session with.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Тег группы портала iSCSI Target, с которым инициатор намерен установить сеанс.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4291\"/>\n        <source>iSCSI NodeTarget Name.</source>\n        <translation>Узел iSCSIНазвание цели.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4272\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4294\"/>\n        <source>Target Name</source>\n        <translation>Название цели</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4275\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4297\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI NodeTarget Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI название узла-цели.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4308\"/>\n        <source>VLAN</source>\n        <translation>VLAN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4311\"/>\n        <source>VLAN Settings.</source>\n        <translation>Настройки VLAN.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4314\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Настройки виртуальной локальной сети.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4360\"/>\n        <source>VLAN identifier (0-4094).</source>\n        <translation>Идентификатор VLAN (0-4094).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4341\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4347\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4363\"/>\n        <source>Vlan ID</source>\n        <translation type=\"unfinished\">Vlan ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4344\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4366\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN identifier (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Идентификатор виртуальной локальной сети (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4383\"/>\n        <source>Fibre Channel Ex</source>\n        <translation>Волоконно-оптический канал Ex</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4386\"/>\n        <source>The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation>Путь устройства Fibre Channel Ex уточняет определение поля Логический номер устройства в соответствии со спецификацией T-10 SCSI Architecture Model 4.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4389\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Путь устройства Fibre Channel Ex уточняет определение поля Логический номер единицы для соответствия спецификации T-10 SCSI Architecture Model 4.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4474\"/>\n        <source>8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).</source>\n        <translation>Массив из 8 байт, содержащий название порта конечного устройства канала Fibre Channel (также известное как всемирное название).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4480\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-байтовый массив, содержащий имя порта конечного устройства Fibre Channel (также известное как всемирное название).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4514\"/>\n        <source>8 byte array containing Fibre Channel Logical Unit Number.</source>\n        <translation>Массив из 8 байт, содержащий номер логического блока Fibre Channel.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4499\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4520\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-байтовый массив, содержащий номер логического блока Fibre Channel.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4537\"/>\n        <source>SAS Extended Messaging</source>\n        <translation>Расширенная передача сообщений SAS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4540\"/>\n        <source>The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation>Путь устройства SAS Ex уточняет определение поля Номер логического блока в соответствии со спецификацией T-10 SCSI Architecture Model 4.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4543\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Путь к устройству SAS Ex уточняет определение поля номера логического блока в соответствии со спецификацией T-10 SCSI Architecture Model 4.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4567\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4588\"/>\n        <source>8-byte array of the SAS Address for Serial Attached SCSI Target Port.</source>\n        <translation>8-байтовый массив адресов SAS для целевого порта Serial Attached SCSI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4570\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4576\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4591\"/>\n        <source>SAS Address</source>\n        <translation>Адрес SAS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4573\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4594\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Address for Serial Attached SCSI Target Port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-байтовый массив адресов SAS для целевого порта Serial Attached SCSI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4628\"/>\n        <source>8-byte array of the SAS Logical Unit Number.</source>\n        <translation>8-байтовый массив, содержащий номер логического блока SAS.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4613\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4634\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-байтовый массив номера логического блока SAS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4647\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4668\"/>\n        <source>More Information about the device and its interconnect.</source>\n        <translation>Дополнительная информация об устройстве и его взаимосвязи.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4650\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4656\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4671\"/>\n        <source>Device and Topology Info</source>\n        <translation>Информация об устройстве и топологии</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4653\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4674\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;More Information about the device and its interconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Большая информация об устройстве и его взаимосвязи.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4687\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4709\"/>\n        <source>Relative Target Port (RTP).</source>\n        <translation>Относительный целевой порт (RTP).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4690\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4696\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4712\"/>\n        <source>Relative Target Port</source>\n        <translation>Относительный целевой порт</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4715\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Relative Target Port (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Относительный целевой порт (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4732\"/>\n        <source>NVM Express NS</source>\n        <translation>NVM Экспресс NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4735\"/>\n        <source>NVM Express Namespace Settings.</source>\n        <translation>NVM Express Namespace Settings.Настройки пространства имен NVM Express.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4738\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM Express Namespace Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Настройки пространства имен NVM Express.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4783\"/>\n        <source>Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.</source>\n        <translation>Идентификатор пространства имен (NSID). Значения 0 и 0xFFFFFF недействительны.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4765\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4771\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4786\"/>\n        <source>NSID</source>\n        <translation type=\"unfinished\">NSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4768\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4789\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Идентификатор пространства имен (NSID). Значения 0 и 0xFFFFFFFF недопустимы.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4802\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4823\"/>\n        <source>This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.</source>\n        <translation>Это поле содержит расширенный уникальный идентификатор IEEE (EUI-64). Устройства, не имеющие значения EUI-64, должны инициализировать это поле значением 0.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4805\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4811\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4826\"/>\n        <source>EUI-64</source>\n        <translation type=\"unfinished\">EUI-64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4808\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4829\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Это поле содержит расширенный уникальный идентификатор IEEE (EUI-64). Устройства, не имеющие значения EUI-64, должны инициализировать это поле значением 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4849\"/>\n        <source>Refer to RFC 3986 for details on the URI contents.</source>\n        <translation>Подробнее о содержании URI смотрите в RFC 3986.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Refer to RFC 3986 for details on the URI contents.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Для получения подробной информации о содержании URI обратитесь к RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4876\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4898\"/>\n        <source>Instance of the URI pursuant to RFC 3986.</source>\n        <translation>Экземпляр URI в соответствии с RFC 3986.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4882\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Instance of the URI pursuant to RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Экземпляр URI в соответствии с RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4915\"/>\n        <source>UFS</source>\n        <translation type=\"unfinished\">UFS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4918\"/>\n        <source>UFS Settings.</source>\n        <translation>Настройки UFS.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Настройки UFS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4966\"/>\n        <source>Target ID on the UFS interface (PUN).</source>\n        <translation>Идентификатор цели на интерфейсе UFS (PUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4972\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the UFS interface (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Идентификатор цели на интерфейсе UFS (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5029\"/>\n        <source>SD</source>\n        <translation>SD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5032\"/>\n        <source>SD Settings.</source>\n        <translation>Настройки SD.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5035\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Настройки SD.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5081\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5299\"/>\n        <source>Slot Number</source>\n        <translation>Номер слота</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5084\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5280\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5286\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5302\"/>\n        <source>Slot</source>\n        <translation>Слот</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5087\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5283\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5305\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Slot Number&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Номер слота&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5104\"/>\n        <source>Bluetooth</source>\n        <translation>Bluetooth</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5107\"/>\n        <source>EFI Bluetooth Settings.</source>\n        <translation>Настройки EFI Bluetooth.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5110\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI Bluetooth Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Настройки Bluetooth EFI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5155\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5373\"/>\n        <source>48-bit Bluetooth device address.</source>\n        <translation>48-битный адрес устройства Bluetooth.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5143\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5158\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5361\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5376\"/>\n        <source>Device Address</source>\n        <translation>Адрес устройства</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5161\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5379\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-bit Bluetooth device address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-битный адрес устройства Bluetooth.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5178\"/>\n        <source>Wi-Fi</source>\n        <translation>Wi-Fi</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5181\"/>\n        <source>Wi-Fi Settings.</source>\n        <translation>Настройки Wi-Fi.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5184\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wi-Fi Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Настройки Wi-Fi.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5208\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5230\"/>\n        <source>SSID in octet string.</source>\n        <translation>SSID в октетной строке.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5211\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5217\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5233\"/>\n        <source>SSID</source>\n        <translation>SSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5214\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5236\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID in octet string.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID в октетной строке.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5247\"/>\n        <source>eMMC</source>\n        <translation type=\"unfinished\">eMMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5250\"/>\n        <source>Embedded Multi-Media Card Settings.</source>\n        <translation>Настройки встроенной мультимедийной карты.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5253\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Embedded Multi-Media Card Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Настройки встроенной мультимедийной карты.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5322\"/>\n        <source>BluetoothLE</source>\n        <translation type=\"unfinished\">BluetoothLE</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5325\"/>\n        <source>EFI BluetoothLE Settings.</source>\n        <translation>Настройки EFI BluetoothLE.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5328\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI BluetoothLE Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Настройки BluetoothLEEFI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5416\"/>\n        <source>0x00 - Public Device Address.\n0x01 - Random Device Address.</source>\n        <translation>0x00 - Публичный адрес устройства.\n\n0x01 - Случайный адрес устройства.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5396\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5403\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5420\"/>\n        <source>Address Type</source>\n        <translation>Тип адреса</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5399\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5423\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Public Device Address.\n0x01 - Random Device Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Публичный адрес устройства.\n\n0x01 - Случайный адрес устройства.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5428\"/>\n        <source>Public</source>\n        <translation>Публичный</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5433\"/>\n        <source>Random</source>\n        <translation>Случайный</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5445\"/>\n        <source>DNS</source>\n        <translation>DNS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5448\"/>\n        <source>DNS Settings.</source>\n        <translation>Настройки DNS.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5451\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DNS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Настройки DNS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5499\"/>\n        <source>0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.</source>\n        <translation>0x00 - Адрес DNS-сервера является адресом IPv4.\n\n0x01 - Адрес DNS-сервера является адресом IPv6.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5482\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5506\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Адрес DNS-сервера является IPv4-адресом.\n\n0x01 - адрес DNS-сервера является IPv6-адресом.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5514\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5575\"/>\n        <source>One or more instances of the DNS server address in EFI_IP_ADDRESS.</source>\n        <translation>Один или несколько экземпляров адреса DNS-сервера в EFI_IP_ADDRESS.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5520\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5581\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;One or more instances of the DNS server address in EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Один или несколько экземпляров адреса DNS-сервера в EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5536\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7584\"/>\n        <source>Data format.</source>\n        <translation>Формат данных.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5592\"/>\n        <source>NVDIMM NS</source>\n        <translation type=\"unfinished\">NVDIMM NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5595\"/>\n        <source>This device path describes a bootable NVDIMM namespace that is defined by a namespace label.</source>\n        <translation>Этот путь к устройству описывает загрузочное пространство имен NVDIMM, которое определяется меткой пространства имен.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVDIMM namespace that is defined by a namespace label.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Этот путь устройства описывает загружаемое пространство имен NVDIMM, которое определяется меткой пространства имен.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5622\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5643\"/>\n        <source>Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.</source>\n        <translation>Уникальный идентификатор метки пространства имен UUID. Подробнее об этом поле см. в описании Uuid в разделе Протокол меток NVDIMM - Определения меток.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5646\"/>\n        <source>UUID</source>\n        <translation type=\"unfinished\">UUID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5628\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5649\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Уникальный идентификатор метки пространства имен UUID. Подробнее об этом поле см. описание Uuid в разделе Протокол меток NVDIMM - Определения меток.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5663\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5698\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5706\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5724\"/>\n        <source>REST Service</source>\n        <translation>REST Сервис</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5666\"/>\n        <source>REST Service Settings.</source>\n        <translation>Настройки службы REST.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5669\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;REST Service Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Настройки REST-сервиса.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5719\"/>\n        <source>0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.</source>\n        <translation>0x01 - REST-сервис Redfish.\n\n0x02 - REST-сервис OData.\n\n0xFF - REST-сервис для конкретного поставщика.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5701\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5727\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Redfish REST Сервис.\n\n0x02 - OData REST Сервис.\n\n0xFF - REST-сервис для конкретного поставщика.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5733\"/>\n        <source>Redfish</source>\n        <translation type=\"unfinished\">Redfish</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5738\"/>\n        <source>OData</source>\n        <translation type=\"unfinished\">OData</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5743\"/>\n        <source>Vendor specific</source>\n        <translation>По конкретным поставщикам</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5775\"/>\n        <source>0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.</source>\n        <translation>0x01 - Внутриполосный REST-сервис.\n\n0x02 - внеполосный REST-сервис.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5755\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5779\"/>\n        <source>Access Mode</source>\n        <translation>Режим доступа</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5782\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Внутриполосный REST-сервис.\n\n0x02 - Внеполосный REST-сервис.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5787\"/>\n        <source>In-Band</source>\n        <translation type=\"unfinished\">In-Band</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5792\"/>\n        <source>Out-of-band</source>\n        <translation type=\"unfinished\">Out-of-band</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5821\"/>\n        <source>GUID of vendor specific REST service.</source>\n        <translation>GUID конкретного REST-сервиса поставщика.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID of vendor specific REST service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID REST-сервиса конкретного производителя.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5898\"/>\n        <source>Vendor-defined data.</source>\n        <translation>Данные, определяемые поставщиком.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Данные, определяемые поставщиком.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5915\"/>\n        <source>NVMe-oF NS</source>\n        <translation type=\"unfinished\">NVMe-oF NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5918\"/>\n        <source>This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.</source>\n        <translation>Этот путь устройства описывает загрузочное пространство имен NVMe over Fiber, которое определяется уникальным идентификатором NQN пространства имен и подсистемы.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Этот путь к устройству описывает загрузочное пространство имен NVMe over Fiber, которое определяется уникальным идентификатором NQN пространства имен и подсистемы.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5967\"/>\n        <source>Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.</source>\n        <translation>Namespace Identifier Type (NIDT), для глобально уникальных значений типа, определенных в поле CNS 03h NIDT (1h, 2h или 3h) базовой спецификацией NVM Express.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5970\"/>\n        <source>NIDT</source>\n        <translation type=\"unfinished\">NIDT</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5973\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Тип идентификатора пространства имен (NIDT), для глобально уникальных значений типа, определенных в поле CNS 03h NIDT (1h, 2h или 3h) базовой спецификацией NVM Express.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5986\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6007\"/>\n        <source>Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.</source>\n        <translation>Идентификатор пространства имен (NID), глобально уникальное значение, определенное в списке дескрипторов идентификации пространства имен (CNS 03h) в спецификации NVM Express Base Specification в формате big endian.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5989\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5995\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6010\"/>\n        <source>NID</source>\n        <translation type=\"unfinished\">NID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5992\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6013\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Идентификатор пространства имен (NID), глобально уникальное значение, определенное в списке дескрипторов идентификации пространства имен (CNS 03h) в спецификации NVM Express Base Specification в формате big endian.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6023\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6045\"/>\n        <source>Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.</source>\n        <translation>Уникальный идентификатор подсистемы NVM, хранящийся в виде строки UTF-8 из n байт в соответствии с NVMe Qualified Name в спецификации NVM Express Base Specification. NQN подсистемы используется для целей идентификации и аутентификации. Максимальная длина - 224 байта.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6026\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6048\"/>\n        <source>Subsystem NQN</source>\n        <translation>Подсистема NQN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6029\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6051\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Уникальный идентификатор NVM-подсистемы, хранящийся в виде строки UTF-8 из n байт в соответствии с NVMe Qualified Name в спецификации NVM Express Base Specification. NQN подсистемы используется для целей идентификации и аутентификации. Максимальная длина - 224 байта.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6066\"/>\n        <source>Hard Drive</source>\n        <translation>Жесткий диск</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6069\"/>\n        <source>The Hard Drive Media Device Path is used to represent a partition on a hard drive.</source>\n        <translation>Путь устройства носителя жесткого диска используется для представления раздела на жестком диске.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6072\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Hard Drive Media Device Path is used to represent a partition on a hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Путь к устройству носителя жесткого диска используется для представления раздела на жестком диске.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6174\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6196\"/>\n        <source>Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].</source>\n        <translation>Описывает запись в таблице разделов, начиная с записи 1. Нулевой номер раздела представляет все устройство. Допустимые номера разделов для MBR-раздела - [1, 4]. Допустимые номера разделов для раздела GPT - [1, NumberOfPartitionEntries].</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6180\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Описывает запись в таблице разделов, начиная с записи 1. Нулевой номер раздела представляет все устройство. Допустимые номера разделов для MBR-раздела - [1, 4]. Допустимые номера разделов для GPT-раздела - [1, NumberOfPartitionEntries].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6236\"/>\n        <source>Starting LBA of the partition on the hard drive.</source>\n        <translation>Начальный LBA раздела на жестком диске.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6466\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6487\"/>\n        <source>Partition Start</source>\n        <translation>Запуск раздела</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting LBA of the partition on the hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Начальный LBA раздела на жестком диске.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6255\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6276\"/>\n        <source>Size of the partition in units of Logical Blocks.</source>\n        <translation>Размер раздела в единицах логических блоков.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6258\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6264\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6279\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6527\"/>\n        <source>Partition Size</source>\n        <translation>Размер раздела</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6261\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6282\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Logical Blocks.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Размер раздела в единицах логических блоков.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6295\"/>\n        <source>Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation>Подпись, уникальная для данного раздела:\n\nЕсли SignatureType равен 0, это поле должно быть инициализировано 16 нулями.\n\nЕсли SignatureType равен 1, подпись MBR хранится в первых 4 байтах этого поля. Остальные 12 байт инициализируются нулями.\n\nЕсли SignatureType равен 2, это поле содержит 16-байтовую подпись.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6301\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6310\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6367\"/>\n        <source>Partition Signature</source>\n        <translation>Сигнатура раздела</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6304\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Подпись, уникальная для данного раздела:\n\nЕсли SignatureType равен 0, это поле должно быть инициализировано 16 нулями.\n\nЕсли SignatureType равен 1, подпись MBR хранится в первых 4 байтах этого поля. Остальные 12 байт инициализируются нулями.\n\nЕсли SignatureType равен 2, это поле содержит 16-байтовую подпись.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6322\"/>\n        <source>PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.</source>\n        <translation>PartType подписи диска (неиспользуемые значения зарезервированы):\n\n            0x00 - Нет подписи диска.\n\n            0x01 - 32-битная подпись с адреса 0x1b8 типа 0x01 MBR.\n\n            0x02 - GUID-подпись.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6328\"/>\n        <source>Signature Type</source>\n        <translation>Тип подписи</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6331\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Тип части подписи диска (неиспользуемые значения зарезервированы):\n\n            0x00 - Нет подписи диска.\n\n            0x01 - 32-битная подпись с адреса 0x1b8 типа 0x01 MBR.\n\n            0x02 - GUID-подпись.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6338\"/>\n        <source>None</source>\n        <translation>Нет</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6361\"/>\n        <source>Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation>Подпись, уникальная для данного раздела:\n\n            Если SignatureType равен 0, это поле должно быть инициализировано 16 нулями.\n\n            Если SignatureType равен 1, подпись MBR хранится в первых 4 байтах этого поля. Остальные 12 байт инициализируются нулями.\n\n            Если SignatureType равен 2, это поле содержит 16-байтовую подпись.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6370\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Подпись, уникальная для данного раздела:\n\n            Если SignatureType равен 0, это поле должно быть инициализировано 16 нулями.\n\n            Если SignatureType равен 1, подпись MBR хранится в первых 4 байтах этого поля. Остальные 12 байт инициализируются нулями.\n\n            Если SignatureType равен 2, это поле содержит 16-байтовую подпись.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6392\"/>\n        <source>CD-ROM</source>\n        <translation>CD-ROM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6395\"/>\n        <source>The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.</source>\n        <translation>Путь устройства носителя CD-ROM используется для определения системного раздела, существующего на CD-ROM.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6398\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Путь устройства носителя CD-ROM используется для определения системного раздела, который существует на CD-ROM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6444\"/>\n        <source>Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.</source>\n        <translation>Номер записи загрузки из каталога загрузки. Начальная/дефолтная запись определяется как ноль.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6425\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6431\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6447\"/>\n        <source>Boot Entry</source>\n        <translation type=\"unfinished\">Boot Entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6450\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Номер загрузочной записи из каталога загрузки. Начальная запись/запись по умолчанию определяется как ноль.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6463\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6484\"/>\n        <source>Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.</source>\n        <translation>Начальный RBA раздела на носителе. CD-ROM используют относительную логическую адресацию блоков.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6469\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6490\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Запуск RBA раздела на носителе. В CD-ROM используется относительная логическая адресация блоков.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6524\"/>\n        <source>Size of the partition in units of Blocks, also called Sectors.</source>\n        <translation>Размер раздела в единицах блоков, также называемых секторами.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6530\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Blocks, also called Sectors.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Размер раздела в единицах Блоков, также называемых Секторами.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6547\"/>\n        <source>File Path</source>\n        <translation>Путь файла</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6550\"/>\n        <source>File Path settings.</source>\n        <translation>Настройки пути файла.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6553\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File Path settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Параметры пути к файлу.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6599\"/>\n        <source>Path including directory and file names.</source>\n        <translation>Путь, включающий имена каталогов и файлов.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6586\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6602\"/>\n        <source>Path Name</source>\n        <translation>Название пути</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6583\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6605\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Path including directory and file names.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Путь, включающий имена каталогов и файлов.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6619\"/>\n        <source>The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.</source>\n        <translation>Путь устройства протокола мультимедиа используется для обозначения протокола, который используется в пути устройства в указанном месте пути.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6622\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Путь устройства медиапротокола используется для обозначения протокола, который используется в пути устройства в месте указанного пути.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6667\"/>\n        <source>The ID of the protocol.</source>\n        <translation>Идентификатор протокола.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6673\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ID of the protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Идентификатор протокола.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6687\"/>\n        <source>Firmware File</source>\n        <translation>Файл прошивки</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6690\"/>\n        <source>Describes a firmware file in a firmware volume.</source>\n        <translation>Описание файла микропрограммы в томе микропрограммы.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6693\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware file in a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Описание файла прошивки в томе прошивки.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6717\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6738\"/>\n        <source>Firmware file name GUID.</source>\n        <translation>GUID названия файла прошивки.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6723\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6744\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware file name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Имя файла прошивки GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6758\"/>\n        <source>Firmware Volume</source>\n        <translation>Объем прошивки</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6761\"/>\n        <source>Describes a firmware volume.</source>\n        <translation>Описание тома микропрограммы.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6764\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Описание тома прошивки.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6809\"/>\n        <source>Firmware volume name GUID.</source>\n        <translation>GUID названия тома прошивки.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware volume name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Имя тома прошивки GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6829\"/>\n        <source>Relative Offset Range</source>\n        <translation>Диапазон относительного смещения</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6832\"/>\n        <source>This device path node specifies a range of offsets relative to the first byte available on the device.</source>\n        <translation>Этот узел пути устройства задает диапазон смещений относительно первого байта, доступного на устройстве.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6835\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path node specifies a range of offsets relative to the first byte available on the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Этот узел пути к устройству задает диапазон смещений относительно первого байта, доступного на устройстве.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6880\"/>\n        <source>Reserved for future use.</source>\n        <translation>Зарезервировано для будущего использования.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6886\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved for future use.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Зарезервировано для будущего использования.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6899\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6920\"/>\n        <source>Offset of the first byte, relative to the parent device node.</source>\n        <translation>Смещение первого байта относительно родительского узла устройства.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6902\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6908\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6923\"/>\n        <source>Starting Offset</source>\n        <translation>Начальное смещение</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6905\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the first byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Смещение первого байта относительно родительского узла устройства.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6939\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6960\"/>\n        <source>Offset of the last byte, relative to the parent device node.</source>\n        <translation>Смещение последнего байта относительно родительского узла устройства.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6942\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6963\"/>\n        <source>Ending Offset</source>\n        <translation>Конечное смещение</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6966\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the last byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Смещение последнего байта относительно родительского узла устройства.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6983\"/>\n        <source>RAM Disk</source>\n        <translation>RAM Диск</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6986\"/>\n        <source>RAM Disk Settings.</source>\n        <translation>RAM Настройка диска.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6989\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Настройки RAM-диска.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7016\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7037\"/>\n        <source>Starting Address</source>\n        <translation>Начальный адрес</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7056\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7077\"/>\n        <source>Ending Address</source>\n        <translation>Конечный адрес</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7093\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7114\"/>\n        <source>GUID that defines the type of the RAM Disk.</source>\n        <translation>GUID, определяющий тип диска RAM.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7120\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID that defines the type of the RAM Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID, определяющий тип RAM диска.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7130\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7152\"/>\n        <source>RAM Disk instance number, if supported.</source>\n        <translation>Номер экземпляра RAM диска, если поддерживается.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7133\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7155\"/>\n        <source>Disk Instance</source>\n        <translation>Экземпляр диска</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7158\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk instance number, if supported.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Номер экземпляра диска с оперативной памятью, если поддерживается.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7179\"/>\n        <source>This Device Path is used to describe the booting of non-EFI-aware operating systems.</source>\n        <translation>Этот путь устройства используется для описания загрузки операционных систем, не поддерживающих EFI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7182\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path is used to describe the booting of non-EFI-aware operating systems.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Этот путь устройства используется для описания загрузки операционных систем, не поддерживающих EFI.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7206\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7249\"/>\n        <source>An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.</source>\n        <translation>Идентификационный номер, описывающий тип устройства:\n\n  0x00 - Зарезервировано.\n\n  0x01 - дискета.\n\n  0x02 - Жесткий диск.\n\n  0x03 - CD-ROM.\n\n  0x04 - PCMCIA.\n\n  0x05 - USB-устройство.\n\n  0x06 - Встроенная сеть.\n\n  0x07..0x7F - Зарезервировано.\n\n  0x80 - Устройство BEV.\n\n  0x81..0xFE - Зарезервировано.\n\n  0xFF - Неизвестно.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7220\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7263\"/>\n        <source>Device Type</source>\n        <translation>Тип устройства</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7223\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Идентификационный номер, описывающий тип устройства:\n\n  0x00 - Зарезервировано.\n\n  0x01 - дискета.\n\n  0x02 - Жесткий диск.\n\n  0x03 - CD-ROM.\n\n  0x04 - PCMCIA.\n\n  0x05 - USB-устройство.\n\n  0x06 - Встроенная сеть.\n\n  0x07..0x7F - Зарезервировано.\n\n  0x80 - Устройство BEV.\n\n  0x81..0xFE - Зарезервировано.\n\n  0xFF - Неизвестно.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7290\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7347\"/>\n        <source>Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero</source>\n        <translation>Флаги состояния, определенные спецификацией загрузки BIOS:\n\n| Биты | Поле | Значение | Описание\n\n|========|===============|=======|=============\n\n| 3..0 | Old Position | 0..15 | Индекс этой записи в таблице при последней загрузке. Для обновления приоритета IPL или BCV, если выполняется обнаружение отдельных устройств.\n\n|--------|-------------- |-------|-------------\n\n| 7..4 | (Зарезервировано) | 0 | Зарезервировано для будущего использования, должно быть равно нулю.\n\n|--------|-------------- |-------|-------------\n\n| 8 | Enabled | 0..1 | 0 = Запись будет игнорироваться при загрузке (IPL); запись не будет вызываться при подключении загрузки (BCV).\n\n| | | | | | 1 = Запись будет пытаться загрузиться (IPL); запись будет вызвана для загрузочного соединения (BCV).\n\n|--------|---------------|-------|-------------\n\n| 9 | Failed | 0..1 | 0 = Попытка загрузки не предпринималась, или неизвестно, произошел ли сбой загрузки (IPL); запись успешно подключилась (BCV).\n\n| | | | | | 1 = Неудачная попытка загрузки (IPL); неудачная попытка подключения (BCV).\n\n|--------|---------------|-------|-------------\n\n| 11..10 | Media Present | 0..3 | 0 = Загрузочный носитель на устройстве отсутствует.\n\n| | | | | 1 = Неизвестно, присутствует ли загрузочный носитель.\n\n| | | | | 2 = Носитель присутствует и кажется загрузочным.\n\n| | | | | 3 = Зарезервировано для будущего использования.\n\n|--------|---------------|-------|-------------\n\n| 15..12 | (Зарезервировано) | 0 | Зарезервировано для будущего использования, должно быть равно нулю</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7311\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7368\"/>\n        <source>Status Flag</source>\n        <translation>Флаг состояния</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7371\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Флаги состояния, определенные спецификацией загрузки BIOS:\n\n| Биты | Поле | Значение | Описание\n\n|========|===============|=======|=============\n\n| 3..0 | Старая позиция | 0..15 | Индекс этой записи в таблице при последней загрузке. Для обновления приоритета IPL или BCV, если выполняется обнаружение отдельных устройств.\n\n|--------|-------------- |-------|-------------\n\n| 7..4 | (Зарезервировано) | 0 | Зарезервировано для будущего использования, должно быть равно нулю.\n\n|--------|-------------- |-------|-------------\n\n| 8 | Enabled | 0..1 | 0 = Запись будет игнорироваться при загрузке (IPL); запись не будет вызываться при подключении загрузки (BCV).\n\n| | | | | | 1 = Запись будет пытаться загрузиться (IPL); запись будет вызвана для загрузочного соединения (BCV).\n\n|--------|---------------|-------|-------------\n\n| 9 | Failed | 0..1 | 0 = Попытка загрузки не предпринималась, или неизвестно, произошел ли сбой загрузки (IPL); запись успешно подключилась (BCV).\n\n| | | | | | 1 = Неудачная попытка загрузки (IPL); неудачная попытка подключения (BCV).\n\n|--------|---------------|-------|-------------\n\n| 11..10 | Media Present | 0..3 | 0 = Загрузочный носитель на устройстве отсутствует.\n\n| | | | | 1 = Неизвестно, присутствует ли загрузочный носитель.\n\n| | | | | 2 = Носитель присутствует и кажется загрузочным.\n\n| | | | | 3 = Зарезервировано для будущего использования.\n\n|--------|---------------|-------|-------------\n\n| 15..12 | (Зарезервировано) | 0 | Зарезервировано для будущего использования, должно быть равно нулю&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7402\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7424\"/>\n        <source>String that describes the boot device to a user.</source>\n        <translation>Строка, описывающая загрузочное устройство для пользователя.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7408\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7430\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;String that describes the boot device to a user.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Строка, описывающая загрузочное устройство для пользователя.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7543\"/>\n        <source>Vendor-assigned GUID that defines the data that follows.</source>\n        <translation>Назначенный поставщиком GUID, определяющий следующие данные.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7549\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-assigned GUID that defines the data that follows.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Назначенный поставщиком GUID, определяющий данные, которые следуют за ним.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7562\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7622\"/>\n        <source>Vendor-defined variable size data.</source>\n        <translation>Данные переменного размера, определяемые поставщиком.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7568\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7628\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined variable size data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Данные переменного размера, определяемые поставщиком.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7642\"/>\n        <source>Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.</source>\n        <translation>В зависимости от подтипа, этот узел пути устройства используется для указания конца экземпляра пути устройства или структуры пути устройства.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7645\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;В зависимости от подтипа, этот узел пути устройства используется для указания конца экземпляра пути устройства или структуры пути устройства.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7721\"/>\n        <source>Unknown file path specifier settings</source>\n        <translation>Неизвестные параметры спецификатора пути к файлу</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7724\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown file path specifier settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Неизвестные параметры спецификатора пути к файлу.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7748\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7772\"/>\n        <source>Unknown Type</source>\n        <translation>Неизвестный тип</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7754\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7775\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Неизвестный тип.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7812\"/>\n        <source>Unknown Sub-Type</source>\n        <translation>Неизвестный подтип</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Неизвестный подтип.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7828\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7831\"/>\n        <source>Unknown data</source>\n        <translation>Неизвестные данные</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Неизвестные данные.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/filepathdialog.cpp\" line=\"1569\"/>\n        <source>Couldn&apos;t change data format!</source>\n        <translation>Не удалось изменить формат данных!</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeyListModel</name>\n    <message>\n        <location filename=\"../src/hotkeylistmodel.cpp\" line=\"100\"/>\n        <source>boot option</source>\n        <translation>опция загрузки</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Boot option</source>\n        <translation>Опция загрузки</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Hot key</source>\n        <translation>Горячая клавиша</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Vendor data</source>\n        <translation>Данные поставщика</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeysDialog</name>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"20\"/>\n        <source>Hot Keys editor</source>\n        <translation>Редактор горячих клавиш</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"41\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"44\"/>\n        <source>Hot Keys</source>\n        <translation>Горячие клавиши</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"47\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Горячие клавиши&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"125\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"128\"/>\n        <source>Index filter</source>\n        <translation>Индексный фильтр</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"131\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Index filter&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Индексный фильтр&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"163\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"166\"/>\n        <source>Remove hot key</source>\n        <translation>Удалить горячую клавишу</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Удалить горячую клавишу&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"191\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"194\"/>\n        <source>Add hot key</source>\n        <translation>Добавить горячую клавишу</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"197\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Добавить горячую клавишу&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <location filename=\"../include/commands.h\" line=\"21\"/>\n        <location filename=\"../include/commands.h\" line=\"66\"/>\n        <source>Change %1 to &quot;%2&quot;</source>\n        <translation>Изменить %1 на &quot;%2&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"35\"/>\n        <source>Insert %1 entry &quot;%2&quot; at position %3</source>\n        <translation>Вставить запись %1 &quot;%2&quot; в позицию %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"50\"/>\n        <source>Remove %1 entry &quot;%2&quot; from position %3</source>\n        <translation>Удалить запись %1 &quot;%2&quot; из позиции %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"73\"/>\n        <location filename=\"../src/commands.cpp\" line=\"116\"/>\n        <source>Move %1 entry &quot;%2&quot; from position %3 to %4</source>\n        <translation>Переместить запись %1 &quot;%2&quot; из позиции %3 в %4</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <location filename=\"../include/commands.h\" line=\"157\"/>\n        <location filename=\"../include/commands.h\" line=\"198\"/>\n        <source>Change %1 entry &quot;%2&quot; %3 to &quot;%4&quot;</source>\n        <translation>Изменить %1 запись &quot;%2&quot; %3 на &quot;%4&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <source>Optional data</source>\n        <translation>Дополнительные данные</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"227\"/>\n        <source>Insert %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation>Вставьте %1 запись &quot;%2&quot; пути к файлу в позицию %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"242\"/>\n        <source>Remove %1 entry &quot;%2&quot; file path from position %3</source>\n        <translation>Удалить %1 запись &quot;%2&quot; пути к файлу из позиции %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"257\"/>\n        <source>Set %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation>Установить путь к файлу %1 записи &quot;%2&quot; в позиции %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <source>Insert %1 entry at position %2</source>\n        <translation>Вставить запись %1 в позицию %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>Key</source>\n        <translation>Ключ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <source>Remove %1 entry from position %2</source>\n        <translation>Удалить запись %1 из позиции %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <location filename=\"../include/commands.h\" line=\"362\"/>\n        <location filename=\"../include/commands.h\" line=\"403\"/>\n        <source>Change %1 entry at position %2 %3 to &quot;%4&quot;</source>\n        <translation>Изменить запись %1 в позиции %2 %3 на &quot;%4&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>keys</source>\n        <translation>клавиши</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"293\"/>\n        <location filename=\"../src/commands.cpp\" line=\"333\"/>\n        <source>Move %1 entry &quot;%2&quot; file path from position %3 to %4</source>\n        <translation>Переместите путь файла %1 записи &quot;%2&quot; из позиции %3 в позицию %4</translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/efibooteditor_sk.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"sk\" sourcelanguage=\"en_US\">\n<context>\n    <name>BootEntryForm</name>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"169\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"172\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"182\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"185\"/>\n        <source>Description</source>\n        <translation>Popis</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"198\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"201\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"204\"/>\n        <source>Path</source>\n        <translation>Cesta</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"415\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"418\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"478\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"481\"/>\n        <source>Optional data</source>\n        <translation>Nepovinné údaje</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"421\"/>\n        <source>Optional</source>\n        <translation>Voliteľné</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"434\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"437\"/>\n        <source>Optional data format</source>\n        <translation>Voliteľný formát údajov</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"6\"/>\n        <source>Boot entry form</source>\n        <translation>Bootovací formulár</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"24\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"27\"/>\n        <source>Error</source>\n        <translation>Error</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"40\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"43\"/>\n        <source>Error note</source>\n        <translation>Poznámka o chybe</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"46\"/>\n        <source>This entry placeholder is shown here to indicate it&apos;s referenced in boot order. It won&apos;t be modified on save, just left as is.</source>\n        <translation>Tento zástupný symbol položky sa tu zobrazuje na označenie, že sa na ňu odkazuje v štartovacom poradí. Pri ukladaní sa nemení, len sa ponechá tak, ako je.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"147\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"150\"/>\n        <source>Hot Keys</source>\n        <translation type=\"unfinished\">Hot Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"188\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry description.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Zadať popis.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"222\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"225\"/>\n        <source>Device path</source>\n        <translation>Cesta k zariadeniu</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Cesta zariadenia.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"280\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"283\"/>\n        <source>Move file path up</source>\n        <translation>Presuňte cestu k súboru nahor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"286\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Presuňte cestu k súboru nahor.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"305\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"308\"/>\n        <source>Move file path down</source>\n        <translation>Presunúť cestu k súboru nadol</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"311\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Presunúť cestu k súboru nadol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"330\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"333\"/>\n        <source>Remove file path</source>\n        <translation>Odstrániť cestu k súboru</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"336\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Odstrániť cestu k súboru.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"355\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"358\"/>\n        <source>Edit file path</source>\n        <translation>Upravte cestu k súboru</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"361\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Edit file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Upraviť cestu k súboru.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"380\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"383\"/>\n        <source>Add file path</source>\n        <translation>Pridajte cestu k súboru</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Pridať cestu k súboru.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Voliteľný formát údajov.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"444\"/>\n        <source>BASE64</source>\n        <translation>ZÁKLAD64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"449\"/>\n        <source>UTF-16</source>\n        <translation>UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"454\"/>\n        <source>UTF-8</source>\n        <translation>UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"459\"/>\n        <source>HEX</source>\n        <translation>HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"484\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry optional data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Zadanie voliteľných údajov.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"497\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"500\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"503\"/>\n        <source>Attributes</source>\n        <translation>Atribúty</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"623\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry category.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vstupná kategória.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"122\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Index záznamu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"540\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Is entry considered for automatic boot?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Zvažuje sa položka pre automatické spustenie?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"569\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hidden.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Skryté.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"585\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Force reconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vynútiť opätovné pripojenie.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"534\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"537\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"543\"/>\n        <source>Active</source>\n        <translation>Aktívne</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"579\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"582\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"588\"/>\n        <source>Force reconnect</source>\n        <translation>Vynútiť opätovné pripojenie</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"563\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"566\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"572\"/>\n        <source>Hidden</source>\n        <translation>Skrytý</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"598\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"601\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"604\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"617\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"620\"/>\n        <source>Category</source>\n        <translation>Kategória</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"627\"/>\n        <source>Boot</source>\n        <translation>Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"632\"/>\n        <source>App</source>\n        <translation>App</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"68\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"71\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"74\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"116\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"119\"/>\n        <source>Index</source>\n        <translation>Register</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentryform.cpp\" line=\"117\"/>\n        <source>Couldn&apos;t change optional data format!</source>\n        <translation>Nepodarilo sa zmeniť voliteľný formát údajov!</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryListModel</name>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"88\"/>\n        <source>Set Next boot to &quot;%1&quot;</source>\n        <translation>Nastavte Next boot na &quot;%1&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"184\"/>\n        <source>index</source>\n        <translation type=\"unfinished\">index</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"200\"/>\n        <source>description</source>\n        <translation type=\"unfinished\">description</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"237\"/>\n        <source>optional data</source>\n        <translation type=\"unfinished\">optional data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"253\"/>\n        <source>attributes</source>\n        <translation type=\"unfinished\">attributes</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"269\"/>\n        <source>next boot</source>\n        <translation type=\"unfinished\">next boot</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryWidget</name>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"12\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"221\"/>\n        <source>Boot entry</source>\n        <translation>Bootovací vstup</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"36\"/>\n        <source>Next boot</source>\n        <translation>Ďalšie spustenie</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"39\"/>\n        <source>Run at next boot</source>\n        <translation>Spustiť pri ďalšom reštarte</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"42\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;When chosen, entry will run at next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ak je vybraný, položka sa spustí pri ďalšom spustení systému.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"140\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"143\"/>\n        <source>Current boot</source>\n        <translation>Aktuálne spustené</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This entry is currently booted.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Tento záznam je momentálne spustený.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"181\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Index spúšťacej položky.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"218\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry description, human readable name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Popis spúšťacej položky, ľudsky čitateľný názov.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"67\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"70\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"76\"/>\n        <source>Device path</source>\n        <translation>Cesta k zariadeniu</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"73\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Cesta k spúšťaciemu zariadeniu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"113\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data, arguments passed to boot executable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Voliteľné údaje, argumenty odovzdané spúšťaciemu súboru.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"178\"/>\n        <source>Boot entry index</source>\n        <translation>Index spúšťacej položky</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"184\"/>\n        <source>Index</source>\n        <translation>Index</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"212\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"215\"/>\n        <source>Boot entry description</source>\n        <translation>Popis spúšťacieho záznamu</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"107\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"110\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"116\"/>\n        <source>Optional data</source>\n        <translation>Nepovinné údaje</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootData</name>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"111\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"813\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1027\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1361\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1472\"/>\n        <source>%1: not found</source>\n        <translation>%1: nenájdené</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"120\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"821\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1387\"/>\n        <source>%1: failed deserialization</source>\n        <translation>%1: neúspešná deserializácia</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Error loading entries</source>\n        <translation>Chyba pri načítaní záznamov</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Failed to load some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>Nepodarilo sa načítať niektoré položky EFI Boot Manager:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Error saving entries</source>\n        <translation>Chyba pri ukladaní záznamov</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Entry %1(%2): duplicated index!</source>\n        <translation>Záznam %1(%2): duplikovaný index!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"389\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"419\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"458\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"479\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"487\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"516\"/>\n        <source>Error saving %1</source>\n        <translation>Chyba pri ukladaní %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"407\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"470\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"504\"/>\n        <source>Error removing %1</source>\n        <translation>Chyba pri odstraňovaní %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Error importing boot configuration</source>\n        <translation>Chyba pri importovaní spúšťacej konfigurácie</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <source>Couldn&apos;t open selected file (%1).</source>\n        <translation>Vybraný súbor sa nepodarilo otvoriť (%1).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <source>Parser failed: %1</source>\n        <translation>Analyzátor zlyhal: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <source>Invalid _Type: %1</source>\n        <translation>Neplatný _Type: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <source>Error exporting boot configuration</source>\n        <translation>Chyba pri exportovaní spúšťacej konfigurácie</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <source>Couldn&apos;t open selected file (%1): %2.</source>\n        <translation>Vybraný súbor sa nepodarilo otvoriť (%1): %2.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <source>Couldn&apos;t write into file (%1): %2.</source>\n        <translation>Nepodaril sa zápis do súboru (%1): %2.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Error dumping raw EFI data</source>\n        <translation>Chyba výpisu nespracovaných dát EFI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Failed to dump some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>Nepodarilo sa vypísať niektoré položky EFI Boot Manager:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"905\"/>\n        <source>Timeout</source>\n        <translation>Časový limit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"921\"/>\n        <source>Apple boot-args</source>\n        <translation>Argumenty spúšťania Apple</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"937\"/>\n        <source>Firmware actions</source>\n        <translation>Akcie firmvéru</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"73\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation>Načítanie položiek EFI Boot Manager…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"89\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"787\"/>\n        <source>Searching EFI Boot Manager entries…</source>\n        <translation>Vyhľadávanie položiek EFI Boot Manager…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"116\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"292\"/>\n        <source>Processing EFI Boot Manager entries (%1)…</source>\n        <translation>Spracovanie položiek EFI Boot Manager (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"308\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation>Ukladanie položiek EFI Boot Manager…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"333\"/>\n        <source>Searching old EFI Boot Manager entries…</source>\n        <translation>Vyhľadávanie starých položiek EFI Boot Manager…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"374\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"416\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"447\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"476\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"484\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"491\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"513\"/>\n        <source>Saving EFI Boot Manager entries (%1)…</source>\n        <translation>Ukladanie položiek EFI Boot Manager (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"467\"/>\n        <source>Removing old EFI Boot Manager entries (%1)…</source>\n        <translation>Odstraňovanie starých položiek EFI Boot Manager (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"404\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"501\"/>\n        <source>Removing EFI Boot Manager entries (%1)…</source>\n        <translation>Odstraňovanie položiek EFI Boot Manager (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"94\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"338\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"792\"/>\n        <source>Couldn&apos;t load EFI Boot Manager variables</source>\n        <translation type=\"unfinished\">Couldn&apos;t load EFI Boot Manager variables</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"100\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"799\"/>\n        <source>Couldn&apos;t find any EFI Boot Manager variables</source>\n        <translation type=\"unfinished\">Couldn&apos;t find any EFI Boot Manager variables</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"529\"/>\n        <source>Importing boot configuration…</source>\n        <translation>Importovanie spúšťacej konfigurácie…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"565\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"770\"/>\n        <source>Exporting boot configuration…</source>\n        <translation>Exportovanie spúšťacej konfigurácie…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"587\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"809\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"875\"/>\n        <source>Exporting EFI Boot Manager entries (%1)…</source>\n        <translation>Exportovanie položiek EFI Boot Manager (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1013\"/>\n        <source>Importing boot configuration from JSON…</source>\n        <translation>Importovať konfiguráciu spúšťania z JSON…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1032\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1366\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1477\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1531\"/>\n        <source>Importing EFI Boot Manager entries (%1)…</source>\n        <translation>Importovanie položiek EFI Boot Manager (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1035\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1376\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>%1: %2 expected</source>\n        <translation>%1: očakáva sa %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1043\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1048\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1053\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <source>number</source>\n        <translation>číslo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1058\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1063\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1068\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1073\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1078\"/>\n        <source>bool</source>\n        <translation>bool</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1109\"/>\n        <source>%1: unknown boot manager capability</source>\n        <translation>%1: neznáma funkcia správcu spúšťania</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1122\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1166\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1212\"/>\n        <source>array</source>\n        <translation>pole</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1333\"/>\n        <source>string</source>\n        <translation>reťazec</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1156\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1192\"/>\n        <source>%1: unknown os indication</source>\n        <translation>%1: neznáma indikácia os</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1083\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1235\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1264\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1290\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1309\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1328\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>object</source>\n        <translation>objekt</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <source>hexadecimal number</source>\n        <translation>hexadecimálne číslo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1270\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1315\"/>\n        <source>%1: failed parsing</source>\n        <translation>%1: neúspešná analýza</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Failed to import some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>Nepodarilo sa importovať niektoré položky EFI Boot Manager:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1347\"/>\n        <source>Importing boot configuration from raw dump…</source>\n        <translation>Importovať konfiguráciu spúšťania zo surového výpisu…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1379\"/>\n        <source>object(raw_data: string, efi_attributes: number)</source>\n        <extracomment>Expected JSON structure, thrown as error description. raw_data and efi_attributes are field names in JSON file</extracomment>\n        <translation>object(raw_data: string, efi_attributes: number)</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"15\"/>\n        <source>Boot</source>\n        <translation>Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"16\"/>\n        <source>Driver</source>\n        <translation>Ovládač</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"17\"/>\n        <source>System Preparation</source>\n        <translation>Príprava systému</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"18\"/>\n        <source>Platform Recovery</source>\n        <translation>Obnova platformy</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditor</name>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"18\"/>\n        <source>EFI Boot Editor</source>\n        <translation>Editor spúšťania EFI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"71\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"412\"/>\n        <source>Boot</source>\n        <translation>Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"74\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"98\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"101\"/>\n        <source>Boot entries</source>\n        <translation>Spúšťacie položky</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"77\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"104\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Boot entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Zoznam spúšťacích položiek.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"133\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"415\"/>\n        <source>Driver</source>\n        <translation>Ovládač</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"136\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"160\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"163\"/>\n        <source>Driver entries</source>\n        <translation>Záznamy o ovládači</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"139\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"166\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Driver entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Zoznam záznamov ovládača.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"195\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"418\"/>\n        <source>System Preparation</source>\n        <translation>Príprava systému</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"198\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"222\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"225\"/>\n        <source>SysPrep entries</source>\n        <translation>Záznamy SysPrep</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"201\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of SysPrep entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Zoznam záznamov SysPrep.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"257\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"421\"/>\n        <source>Platform Recovery</source>\n        <translation>Obnova platformy</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"260\"/>\n        <source>PlatformRecovery entries</source>\n        <translation>Záznamy PlatformRecovery</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"263\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of PlatformRecovery entries (READONLY).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Zoznam záznamov SysPrep (LEN NA ČÍTANIE).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"284\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"287\"/>\n        <source>PlatformRecovery entries (READONLY)</source>\n        <translation>Záznamy PlatformRecovery (LEN NA ČÍTANIE)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"346\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"349\"/>\n        <source>Add new entry</source>\n        <translation>Pridať nový záznam</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"352\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to add new boot entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Kliknutím tu pridáte novú položku spúšťania.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"377\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"380\"/>\n        <source>Duplicate entry</source>\n        <translation type=\"unfinished\">Duplicate entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"383\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Duplicate entry&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Duplicate entry&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"408\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"411\"/>\n        <source>Remove entry</source>\n        <translation>Odstrániť položku</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"414\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to remove currently selected entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Kliknutím tu odstránite aktuálne vybranú položku.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"439\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"442\"/>\n        <source>Move entry up</source>\n        <translation>Posun položky hore</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"445\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Kliknutím tu presuniete aktuálne vybranú položku hore.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"470\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"473\"/>\n        <source>Move entry down</source>\n        <translation>Posun položky dole</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"476\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Kliknutím na túto položku presuniete aktuálne vybranú položku nadol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"501\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"504\"/>\n        <source>Reorder entries</source>\n        <translation>Zmena poradia položiek</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"507\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click here to adjust the order of all entries based on their position on the list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Kliknutím sem upravíte poradie všetkých záznamov na základe ich pozície v zozname.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"599\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"608\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Global settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Globálne nastavenia.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"602\"/>\n        <source>Global</source>\n        <translation>Globálne</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"632\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"635\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"654\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"657\"/>\n        <source>Boot manager timeout</source>\n        <translation>Časový limit správcu spúšťania</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"638\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"660\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot manager timeout.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Časový limit správcu spúšťania.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"663\"/>\n        <source>s</source>\n        <translation>sek.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"674\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"677\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"686\"/>\n        <source>Firmware details</source>\n        <translation>Detaily o firmvéri</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"680\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"689\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Detaily o firmvéri.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"683\"/>\n        <source>Firmware</source>\n        <translation>Firmvér</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"719\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"722\"/>\n        <source>Available firmware features</source>\n        <translation>Dostupné funkcie firmvéru</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"725\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware features.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dostupné funkcie firmvéru.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"728\"/>\n        <source>Features</source>\n        <translation>Funkcie</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"737\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"740\"/>\n        <source>Platform supports reporting of deferred capsule processing by creation of result variable</source>\n        <translation>Platforma podporuje vykazovanie odloženého spracovania kapsúl vytvorením premennej výsledku</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"743\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports reporting of deferred capsule processing by creation of result variable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platforma podporuje vykazovanie odloženého spracovania kapsúl vytvorením premennej výsledku.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"746\"/>\n        <source>Capsule Reporting</source>\n        <translation>Hlásenie o kapsulách</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"756\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"759\"/>\n        <source>Firmware supports timestamp based revocation</source>\n        <translation>Firmvér podporuje odvolanie na základe časovej značky</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"762\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware supports timestamp based revocation.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmvér podporuje odvolanie na základe časovej značky.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"765\"/>\n        <source>Timestamp based revocation</source>\n        <translation>Odvolanie na základe časovej značky</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"775\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"778\"/>\n        <source>Platform supports processing of Firmware Management Protocol update capsule</source>\n        <translation>Platforma podporuje spracovanie kapsuly aktualizácie Firmware Management Protocol</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"781\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of Firmware Management Protocol update capsule.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platforma podporuje spracovanie kapsuly aktualizácie Firmware Management Protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"784\"/>\n        <source>FMP Capsule</source>\n        <translation>Kapsula FMP</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"794\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"797\"/>\n        <source>Platform supports processing of file capsules</source>\n        <translation>Platforma podporuje spracovanie súborových kapsúl</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"800\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of file capsules.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platforma podporuje spracovanie súborových kapsúl.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"803\"/>\n        <source>File Capsule</source>\n        <translation>Kapsula súborov</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"828\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"831\"/>\n        <source>Available firmware actions</source>\n        <translation>Dostupné akcie firmvéru</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware actions.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dostupné akcie firmvéru.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"837\"/>\n        <source>Actions</source>\n        <translation>Akcie</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"846\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"849\"/>\n        <source>Stop at a firmware user interface on the next boot</source>\n        <translation>Vstúpiť do užívateľského rozhrania firmvéru pri ďalšom spustení</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Stop at a firmware user interface on the next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Pri ďalšom spustení počítača vstúpiť do užívateľského rozhrania firmvéru.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"855\"/>\n        <source>Boot to firmware UI</source>\n        <translation>Spustenie užívateľského rozhrania firmvéru</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"862\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"865\"/>\n        <source>Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot</source>\n        <translation>Zaznamenať aktuálnu konfiguráciu a hlásenie obnovených dát do tabuľky konfigurácie systému EFI pri ďalšom spustení systému</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Zaznamenať aktuálnu konfiguráciu a hlásenie obnovených dát do tabuľky konfigurácie systému EFI pri ďalšom spustení systému.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"871\"/>\n        <source>Collect current config</source>\n        <translation>Zhromažďovanie aktuálnej konfigurácie</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"878\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"881\"/>\n        <source>Indicate that Platform-defined recovery should commence upon reboot</source>\n        <translation>Uveďte, či obnovenie definované platformou by malo byť účinné po reštarte</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"884\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that Platform-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Uveďte, či obnovenie definované platformou by malo byť účinné po reštarte.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"887\"/>\n        <source>Start Platform recovery</source>\n        <translation>Spustenie obnovy platformy</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"894\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"897\"/>\n        <source>Indicate that OS-defined recovery should commence upon reboot</source>\n        <translation>Uveďte, či obnovenie definované operačným systémom by malo byť účinné po reštarte</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"900\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that OS-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Uveďte, či obnovenie definované operačným systémom by malo byť účinné po reštarte.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"903\"/>\n        <source>Start OS recovery</source>\n        <translation>Spustenie obnovy OS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"932\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"935\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"944\"/>\n        <source>Secure boot settings</source>\n        <translation>Nastavenia zabezpečeného spúšťania</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"938\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"947\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Secure boot settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Nastavenia zabezpečeného spúšťania.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"941\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1025\"/>\n        <source>Secure Boot</source>\n        <translation>Zabezpečené spúšťanie</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"978\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"981\"/>\n        <source>Defines whether the system is currently operating in Audit Mode</source>\n        <translation>Definuje, či systém práve pracuje v režime auditu</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"984\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Audit Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Definuje, či systém práve pracuje v režime auditu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"987\"/>\n        <source>Audit Mode</source>\n        <translation>Režim auditu</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"997\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1000\"/>\n        <source>Defines whether the system is currently operating in Deployed Mode</source>\n        <translation>Definuje, či systém aktuálne pracuje v režime nasadenia</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1003\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Deployed Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Definuje, či systém aktuálne pracuje v režime nasadenia.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1006\"/>\n        <source>Deployed Mode</source>\n        <translation>Režim nasadenia</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1016\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1019\"/>\n        <source>Defines whether the platform firmware is operating with Secure Boot enabled</source>\n        <translation>Definuje, či firmvér platformy pracuje so zapnutou funkciou Secure Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1022\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the platform firmware is operating with Secure Boot enabled.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Definuje, či firmvér platformy pracuje so zapnutou funkciou Secure Boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1035\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1038\"/>\n        <source>Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables</source>\n        <translation>Definuje, či má systém pri požiadavkách na Secure Boot Policy Variables vyžadovať overenie, alebo nie</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1041\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Definuje, či má systém pri požiadavkách na Secure Boot Policy Variables vyžadovať overenie, alebo nie.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1044\"/>\n        <source>Setup Mode</source>\n        <translation>Režim nastavenia</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1054\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1057\"/>\n        <source>Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys</source>\n        <translation>Definuje, či premenné bezpečnostnej politiky spúšťania upravil niekto iný, ako dodávateľ platformy, alebo držiteľ kľúčov poskytnutých dodávateľom</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Definuje, či premenné bezpečnostnej politiky spúšťania upravil niekto iný, ako dodávateľ platformy, alebo držiteľ kľúčov poskytnutých dodávateľom.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1063\"/>\n        <source>Vendor Keys</source>\n        <translation>Kľúče predajcu</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1074\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1077\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1086\"/>\n        <source>Apple settings</source>\n        <translation>Nastavenia Apple</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1080\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apple settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Nastavenia Apple.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1083\"/>\n        <source>Apple</source>\n        <translation>Apple</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1113\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1116\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1129\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1132\"/>\n        <source>macOS boot arguments</source>\n        <translation>Spúšťacie argumenty macOS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1119\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;macOS boot arguments.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Spúšťacie argumenty macOS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1161\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1164\"/>\n        <source>Undo stack</source>\n        <translation>Vrátiť späť</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1167\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo stack&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vrátiť späť&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1194\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ponuka Súbor.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1214\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Help menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ponuka Pomoc.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1255\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Exit the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ukončenie programu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1272\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apply changes to the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Použiť zmeny v systéme.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1289\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reloads EFI data from the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Znovu načítať data EFI zo systému.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1306\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Show information about the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Zobraziť informácie o programe.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1320\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Export current entries into JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Export aktuálnych záznamov do formátu JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1337\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Import EFI data from JSON dump.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Import záznamov zo súboru JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1354\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dumps raw EFI data for debugging purposes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Výpis nespracovaných dát EFI na účely ladenia.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1362\"/>\n        <source>&amp;Undo</source>\n        <translation>&amp;Späť</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1365\"/>\n        <source>Undo</source>\n        <translation>Späť</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1368\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Späť&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1371\"/>\n        <source>Ctrl+Z</source>\n        <translation>Ctrl+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1379\"/>\n        <source>&amp;Redo</source>\n        <translation>&amp;Znova</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1382\"/>\n        <source>Redo</source>\n        <translation>Znova</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1385\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Redo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Znova&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1388\"/>\n        <source>Ctrl+Shift+Z</source>\n        <translation>Ctrl+Shift+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1396\"/>\n        <source>Hot &amp;keys</source>\n        <translation type=\"unfinished\">Hot &amp;keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1399\"/>\n        <source>Hot Keys</source>\n        <translation type=\"unfinished\">Hot Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1402\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"593\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"596\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"605\"/>\n        <source>Global settings</source>\n        <translation>Globálne nastavenia</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"641\"/>\n        <source>Timeout</source>\n        <translation>Časový limit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1122\"/>\n        <source>Boot args</source>\n        <translation>Argumenty</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1188\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1191\"/>\n        <source>File</source>\n        <translation>Súbor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1197\"/>\n        <source>&amp;File</source>\n        <translation>&amp;Súbor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1208\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1211\"/>\n        <source>Help</source>\n        <translation>Pomoc</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1217\"/>\n        <source>&amp;Help</source>\n        <translation>&amp;Pomoc</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1225\"/>\n        <source>&amp;Edit</source>\n        <translation>&amp;Upraviť</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1249\"/>\n        <source>&amp;Quit</source>\n        <translation>&amp;Koniec</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1252\"/>\n        <source>Quit</source>\n        <translation>Ukončiť</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1258\"/>\n        <source>Ctrl+Q</source>\n        <translation>Ctrl+Q</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1266\"/>\n        <source>&amp;Save</source>\n        <translation>&amp;Uložiť</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1269\"/>\n        <source>Save</source>\n        <translation>Uložiť</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1275\"/>\n        <source>Ctrl+S</source>\n        <translation>Ctrl+S</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1283\"/>\n        <source>&amp;Reload</source>\n        <translation>Z&amp;novu načítať</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1286\"/>\n        <source>Reload</source>\n        <translation>Znovu načítať</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1292\"/>\n        <source>Ctrl+R</source>\n        <translation>Ctrl+R</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1300\"/>\n        <source>About &amp;EFI Boot Editor</source>\n        <translation>O aplikácii &amp;EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1303\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"29\"/>\n        <source>About EFI Boot Editor</source>\n        <translation>O aplikácii EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1314\"/>\n        <source>&amp;Export</source>\n        <translation>&amp;Export</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1317\"/>\n        <source>Export</source>\n        <translation>Export</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1323\"/>\n        <source>Ctrl+E</source>\n        <translation>Ctrl+E</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1331\"/>\n        <source>&amp;Import</source>\n        <translation>&amp;Import</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1334\"/>\n        <source>Import</source>\n        <translation>Import</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1340\"/>\n        <source>Ctrl+I</source>\n        <translation>Ctrl+I</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1348\"/>\n        <source>&amp;Dump raw EFI data</source>\n        <translation>&amp;Nespracované údaje EFI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1351\"/>\n        <source>Dump raw EFI data</source>\n        <translation>Nespracované údaje EFI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"26\"/>\n        <source>Working…</source>\n        <translation>Spracováva sa…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"92\"/>\n        <source>Undo %1</source>\n        <translation>Späť %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"95\"/>\n        <source>Redo %1</source>\n        <translation>Znova %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"137\"/>\n        <source>Are you sure you want to reload the entries?&lt;br/&gt;ALL of your changes will be lost!</source>\n        <translation>Chcete znovu načítať položky?&lt;br/&gt;VŠETKY zmeny sa stratia!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"162\"/>\n        <source>Are you sure you want to reorder the boot entries?&lt;br/&gt;All indexes will be overwritten!</source>\n        <translation>Chcete zmeniť poradie spúšťacích položiek?&lt;br/&gt;Všetky indexy budú prepísané!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"221\"/>\n        <source>Are you sure you want to save?&lt;br/&gt;Your EFI configuration will be overwritten!</source>\n        <translation>Chcete uložiť zmeny?&lt;br/&gt;Vaša konfigurácia EFI bude prepísaná!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <source>Open boot configuration dump</source>\n        <translation>Otvoriť výpis konfigurácie spúšťania</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>JSON documents (*.json)</source>\n        <translation>Dokumenty JSON (*.json)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <source>Save boot configuration dump</source>\n        <translation>Uloženie výpisu konfigurácie spúšťania</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>Save raw EFI dump</source>\n        <translation>Uložiť nespracované údaje EFI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"31\"/>\n        <source>&lt;h1&gt;EFI Boot Editor&lt;/h1&gt;&lt;p&gt;Version &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Boot Editor for (U)EFI based systems.&lt;/p&gt;</source>\n        <extracomment>About dialog</extracomment>\n        <translation>&lt;h1&gt;EFI Boot Editor&lt;/h1&gt;&lt;p&gt;Verzia &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Boot Editor pre systémy založené na (U)EFI.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"45\"/>\n        <source>&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;Website&lt;/a&gt;&lt;/p&gt;&lt;p&gt;The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.&lt;/p&gt;&lt;p&gt;License: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL Version 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;On Linux uses &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; for EFI variables access.&lt;/p&gt;&lt;p&gt;Uses Tango Icons as fallback icons.&lt;/p&gt;</source>\n        <extracomment>About dialog details</extracomment>\n        <translation>&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;Webstránka&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Program sa poskytuje TAK AKO JE, bez ŽIADNEJ ZÁRUKY, VRÁTANE ZÁRUKY NA DIZAJN, PREDAJNOSTI A VHODNOSTI NA KONKRÉTNY ÚČEL.&lt;/p&gt;&lt;p&gt;Licencia: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL verzia 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Pre systém Linux používa &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; pre prístup k premenným EFI.&lt;/p&gt;&lt;p&gt;Použité ikony Tango ako rezervné ikony.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"330\"/>\n        <source>Reorder %1 entries</source>\n        <translation>Zmena poradia položiek %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"453\"/>\n        <source>Are you sure you want to quit?</source>\n        <translation>Ste si istý, že chcete skončiť?</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"123\"/>\n        <source>EFI support required</source>\n        <translation>Vyžaduje sa podpora EFI</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditorCLI</name>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"13\"/>\n        <source>Boot Editor for (U)EFI based systems.</source>\n        <translation>Editor spúšťania pre systémy založené na (U)EFI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <source>Export configuration.</source>\n        <translation>Export konfigurácie.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>FILE</source>\n        <translation>SÚBOR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <source>Dump raw EFI data.</source>\n        <translation>Výpis nespracovaných údajov EFI.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>Import configuration from JSON (either from export or raw dump).</source>\n        <translation>Importovať konfiguráciu z JSON (buď z exportu, alebo zo surového výpisu).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"19\"/>\n        <source>Force import, don&apos;t ask for confirmation.</source>\n        <translation>Vynútiť import, nepýtať sa na potvrdenie.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"26\"/>\n        <source>EFI support required</source>\n        <translation>Vyžaduje sa podpora EFI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"45\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation>Načítanie EFI Vstupy Boot Manager…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"47\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"57\"/>\n        <source>Exporting boot configuration…</source>\n        <translation>Exportovanie spúšťacej konfigurácie…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"67\"/>\n        <source>Importing boot configuration…</source>\n        <translation>Importovanie spúšťacej konfigurácie…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Loaded %0 %1 entries</source>\n        <translation>Načítaných %0 %1 záznamov</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <source>Boot</source>\n        <translation>Zavádzanie</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <source>Driver</source>\n        <translation>Ovládač</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <source>System Preparation</source>\n        <translation>Príprava systému</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Hot Key</source>\n        <translation type=\"unfinished\">Hot Key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"78\"/>\n        <source>Are you sure you want to save?\nYour EFI configuration will be overwritten!</source>\n        <translation>Naozaj to chcete uložiť?\nVaša konfigurácia EFI bude prepísaná!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"86\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation>Ukladanie položiek EFI Boot Manager…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"98\"/>\n        <source>ERROR: %0! %1</source>\n        <translation>CHYBA: %0! %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"114\"/>\n        <source>Finished</source>\n        <translation>Dokončené</translation>\n    </message>\n</context>\n<context>\n    <name>EFIKeySequenceEdit</name>\n    <message>\n        <location filename=\"../src/efikeysequenceedit.cpp\" line=\"109\"/>\n        <source>Press hot key</source>\n        <translation type=\"unfinished\">Press hot key</translation>\n    </message>\n</context>\n<context>\n    <name>FilePathDialog</name>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"12\"/>\n        <source>File path editor</source>\n        <translation>Editor cesty k súboru</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"47\"/>\n        <source>PCI</source>\n        <translation>PCI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"80\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"86\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"196\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"202\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"218\"/>\n        <source>Function</source>\n        <translation>Funkcia</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"121\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"127\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"143\"/>\n        <source>Device</source>\n        <translation>Zariadenie</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"721\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"727\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"742\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"835\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"841\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"856\"/>\n        <source>HID</source>\n        <translation>HID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"761\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"767\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"782\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"896\"/>\n        <source>UID</source>\n        <translation>UID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1813\"/>\n        <source>USB</source>\n        <translation>USB</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1819\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Nastavenia USB.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1893\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1909\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3688\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3710\"/>\n        <source>Interface</source>\n        <translation>Rozhranie</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7442\"/>\n        <source>Vendor</source>\n        <translation>Predajca</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7445\"/>\n        <source>Vendor settings</source>\n        <translation>Nastavenia predajcu</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7448\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Nastavenia predajcu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1778\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1793\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5824\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6348\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7117\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7546\"/>\n        <source>GUID</source>\n        <translation>GUID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5539\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7587\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7850\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7853\"/>\n        <source>Data format</source>\n        <translation>Formát údajov</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5542\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7590\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7856\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Formát údajov.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5546\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5869\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7860\"/>\n        <source>BASE64</source>\n        <translation>BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1168\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5551\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5874\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7865\"/>\n        <source>UTF-16</source>\n        <translation>UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1173\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5556\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7604\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7870\"/>\n        <source>UTF-8</source>\n        <translation>UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5561\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7875\"/>\n        <source>HEX</source>\n        <translation>HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5523\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5901\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7888\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7891\"/>\n        <source>Data</source>\n        <translation>Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7894\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7565\"/>\n        <source>Vendor data</source>\n        <translation>Údaje predajcu</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7481\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7757\"/>\n        <source>Type</source>\n        <translation>Typ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7478\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7500\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Typ.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7504\"/>\n        <source>HW</source>\n        <translation>HW</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7509\"/>\n        <source>MSG</source>\n        <translation>MSG</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7514\"/>\n        <source>MEDIA</source>\n        <translation>MEDIA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2292\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2298\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2313\"/>\n        <source>MAC</source>\n        <translation>MAC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2265\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;MAC settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Nastavenia MAC.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2374\"/>\n        <source>IPv4</source>\n        <translation>IPv4</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2380\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv4 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Nastavenia IPv4.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2569\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2591\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2925\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2931\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2947\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4110\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4116\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4132\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6616\"/>\n        <source>Protocol</source>\n        <translation>Protokol</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3003\"/>\n        <source>Static</source>\n        <translation>Statické</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2692\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Subnet mask.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Maska podsiete.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2730\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5479\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5486\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5503\"/>\n        <source>IPv6</source>\n        <translation>IPv6</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2736\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv6 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Nastavenia IPv6.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3008\"/>\n        <source>Stateless auto-configuration</source>\n        <translation>Bezstavová automatická konfigurácia</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3013\"/>\n        <source>Stateful auto-configuration</source>\n        <translation>Stavová automatická konfigurácia</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3920\"/>\n        <source>SATA</source>\n        <translation>SATA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SATA settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Nastavenia SATA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1387\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1393\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1409\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1658\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1664\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1679\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3900\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4035\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4041\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4057\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4191\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4197\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4212\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4496\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4502\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4610\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4616\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4988\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5009\"/>\n        <source>LUN</source>\n        <translation>LUN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4885\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4901\"/>\n        <source>URI</source>\n        <translation type=\"unfinished\">URI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6105\"/>\n        <source>Disk</source>\n        <translation>Disk</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6102\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6123\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6126\"/>\n        <source>Choose disk</source>\n        <translation>Výber disku</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6129\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Choose disk from discovered in the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vyberte disk z tých, ktoré boli nájdené v systéme.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6133\"/>\n        <source>Custom</source>\n        <translation>Vlastné</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6147\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6150\"/>\n        <source>Reload drives</source>\n        <translation>Znovu načítať disky</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reload system drives list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Znovu načítať zoznam systémových diskov.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6343\"/>\n        <source>MBR</source>\n        <translation>MBR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6177\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6183\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6199\"/>\n        <source>Partition</source>\n        <translation>Oddiel</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6720\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6741\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6797\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6812\"/>\n        <source>Name</source>\n        <translation>Názov</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7176\"/>\n        <source>BIOS Boot Specification</source>\n        <translation>Špecifikácia spúšťania systému BIOS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7405\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7411\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7427\"/>\n        <source>Description</source>\n        <translation>Popis</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7639\"/>\n        <source>End</source>\n        <translation>Koniec</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7669\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7672\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7678\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7797\"/>\n        <source>Sub-Type</source>\n        <translation>Podtyp</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7675\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7697\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Podtyp.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7701\"/>\n        <source>End This Instance</source>\n        <translation>Ukončenie tejto inštancie</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7706\"/>\n        <source>End Entire</source>\n        <translation>Ukončiť celé</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7718\"/>\n        <source>Unknown</source>\n        <translation>Neznámy</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"50\"/>\n        <source>The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.</source>\n        <translation type=\"unfinished\">The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"53\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"77\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"99\"/>\n        <source>PCI Function Number.</source>\n        <translation type=\"unfinished\">PCI Function Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"83\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"105\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Function Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Function Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"118\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"140\"/>\n        <source>PCI Device Number.</source>\n        <translation type=\"unfinished\">PCI Device Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"124\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Device Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Device Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"163\"/>\n        <source>PCCARD</source>\n        <translation type=\"unfinished\">PCCARD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"166\"/>\n        <source>PCCARD Settings.</source>\n        <translation type=\"unfinished\">PCCARD Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCCARD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCCARD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"193\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"215\"/>\n        <source>Function Number (0 = First Function).</source>\n        <translation type=\"unfinished\">Function Number (0 = First Function).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"199\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"221\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Function Number (0 = First Function).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Function Number (0 = First Function).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"238\"/>\n        <source>Memory Mapped</source>\n        <translation type=\"unfinished\">Memory Mapped</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"241\"/>\n        <source>Memory Mapped Settings.</source>\n        <translation type=\"unfinished\">Memory Mapped Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Memory Mapped Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Memory Mapped Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"268\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"290\"/>\n        <source>The type of memory to allocate.</source>\n        <translation type=\"unfinished\">The type of memory to allocate.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"271\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"293\"/>\n        <source>Memory Type</source>\n        <translation type=\"unfinished\">Memory Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"274\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"296\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The type of memory to allocate.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The type of memory to allocate.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"300\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1584\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1738\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1753\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3145\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3160\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4416\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4437\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6868\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6883\"/>\n        <source>Reserved</source>\n        <translation type=\"unfinished\">Reserved</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"305\"/>\n        <source>Loader Code</source>\n        <translation type=\"unfinished\">Loader Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"310\"/>\n        <source>Loader Data</source>\n        <translation type=\"unfinished\">Loader Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"315\"/>\n        <source>Boot Services Code</source>\n        <translation type=\"unfinished\">Boot Services Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"320\"/>\n        <source>Boot Services Data</source>\n        <translation type=\"unfinished\">Boot Services Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"325\"/>\n        <source>Runtime Services Code</source>\n        <translation type=\"unfinished\">Runtime Services Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"330\"/>\n        <source>Runtime Services Data</source>\n        <translation type=\"unfinished\">Runtime Services Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"335\"/>\n        <source>Conventional</source>\n        <translation type=\"unfinished\">Conventional</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"340\"/>\n        <source>Unusable</source>\n        <translation type=\"unfinished\">Unusable</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"345\"/>\n        <source>ACPI Reclaim</source>\n        <translation type=\"unfinished\">ACPI Reclaim</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"350\"/>\n        <source>ACPI Memory NVS</source>\n        <translation type=\"unfinished\">ACPI Memory NVS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"355\"/>\n        <source>Memory Mapped IO</source>\n        <translation type=\"unfinished\">Memory Mapped IO</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"360\"/>\n        <source>Memory Mapped IO Port Space</source>\n        <translation type=\"unfinished\">Memory Mapped IO Port Space</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"365\"/>\n        <source>Pal Code</source>\n        <translation type=\"unfinished\">Pal Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"370\"/>\n        <source>Persistent</source>\n        <translation type=\"unfinished\">Persistent</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"375\"/>\n        <source>Unaccepted</source>\n        <translation type=\"unfinished\">Unaccepted</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"383\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7013\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7034\"/>\n        <source>Starting Memory Address.</source>\n        <translation type=\"unfinished\">Starting Memory Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"386\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"407\"/>\n        <source>Start Address</source>\n        <translation type=\"unfinished\">Start Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"389\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7019\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7040\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"423\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7053\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7074\"/>\n        <source>Ending Memory Address.</source>\n        <translation type=\"unfinished\">Ending Memory Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"426\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"432\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"447\"/>\n        <source>End Address</source>\n        <translation type=\"unfinished\">End Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"429\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7080\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ending Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ending Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"467\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"522\"/>\n        <source>Controller</source>\n        <translation type=\"unfinished\">Controller</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"470\"/>\n        <source>Controller settings.</source>\n        <translation type=\"unfinished\">Controller settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"473\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"519\"/>\n        <source>Controller number.</source>\n        <translation type=\"unfinished\">Controller number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"525\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"542\"/>\n        <source>BMC</source>\n        <translation type=\"unfinished\">BMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"545\"/>\n        <source>The Device Path for a Baseboard Management Controller (BMC) host interface.</source>\n        <translation type=\"unfinished\">The Device Path for a Baseboard Management Controller (BMC) host interface.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"548\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for a Baseboard Management Controller (BMC) host interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for a Baseboard Management Controller (BMC) host interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"602\"/>\n        <source>The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.</source>\n        <translation type=\"unfinished\">The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"579\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"589\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2332\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2354\"/>\n        <source>Interface Type</source>\n        <translation type=\"unfinished\">Interface Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"582\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"612\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"625\"/>\n        <source>Keyboard Controller Style</source>\n        <translation type=\"unfinished\">Keyboard Controller Style</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"630\"/>\n        <source>Server Management Interface Chip</source>\n        <translation type=\"unfinished\">Server Management Interface Chip</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"635\"/>\n        <source>Block Transfer</source>\n        <translation type=\"unfinished\">Block Transfer</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"643\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"664\"/>\n        <source>Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.</source>\n        <translation type=\"unfinished\">Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"667\"/>\n        <source>Base Address</source>\n        <translation type=\"unfinished\">Base Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"670\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"688\"/>\n        <source>ACPI</source>\n        <translation type=\"unfinished\">ACPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"805\"/>\n        <source>This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.</source>\n        <translation type=\"unfinished\">This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"808\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"718\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"739\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"832\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"853\"/>\n        <source>Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.</source>\n        <translation type=\"unfinished\">Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"724\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"745\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"838\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"859\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"779\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"872\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"893\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.</source>\n        <translation type=\"unfinished\">Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"764\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"785\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"899\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"802\"/>\n        <source>Expanded</source>\n        <translation type=\"unfinished\">Expanded</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"912\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"933\"/>\n        <source>Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.</source>\n        <translation type=\"unfinished\">Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"915\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"921\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"936\"/>\n        <source>CID</source>\n        <translation type=\"unfinished\">CID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"918\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"939\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"952\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"974\"/>\n        <source>Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.</source>\n        <translation type=\"unfinished\">Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"955\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"961\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"977\"/>\n        <source>HIDSTR</source>\n        <translation type=\"unfinished\">HIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"958\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"980\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"987\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1009\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.</source>\n        <translation type=\"unfinished\">Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"990\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"996\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1012\"/>\n        <source>UIDSTR</source>\n        <translation type=\"unfinished\">UIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"993\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1015\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1044\"/>\n        <source>Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.</source>\n        <translation type=\"unfinished\">Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1025\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1031\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1047\"/>\n        <source>CIDSTR</source>\n        <translation type=\"unfinished\">CIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1028\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1050\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1061\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1094\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1100\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1115\"/>\n        <source>ADR</source>\n        <translation type=\"unfinished\">ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1064\"/>\n        <source>The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.</source>\n        <translation type=\"unfinished\">The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1067\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1091\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1112\"/>\n        <source>ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required</source>\n        <translation type=\"unfinished\">ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1097\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1118\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1131\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1192\"/>\n        <source>This device path may optionally contain more than one ADR entry.</source>\n        <translation type=\"unfinished\">This device path may optionally contain more than one ADR entry.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1195\"/>\n        <source>Additional ADR</source>\n        <translation type=\"unfinished\">Additional ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1198\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path may optionally contain more than one ADR entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path may optionally contain more than one ADR entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1153\"/>\n        <source>Additional ADR format.</source>\n        <translation type=\"unfinished\">Additional ADR format.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1156\"/>\n        <source>Additional ADR format</source>\n        <translation type=\"unfinished\">Additional ADR format</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1159\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Additional ADR format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Additional ADR format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1209\"/>\n        <source>NVDIMM</source>\n        <translation type=\"unfinished\">NVDIMM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1212\"/>\n        <source>This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.</source>\n        <translation type=\"unfinished\">This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1260\"/>\n        <source>NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.</source>\n        <translation type=\"unfinished\">NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1242\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1248\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1263\"/>\n        <source>NFIT Device Handle</source>\n        <translation type=\"unfinished\">NFIT Device Handle</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1245\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1284\"/>\n        <source>ATAPI</source>\n        <translation type=\"unfinished\">ATAPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1287\"/>\n        <source>ATAPI Settings.</source>\n        <translation type=\"unfinished\">ATAPI Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1336\"/>\n        <source>Set to zero for primary or one for secondary.</source>\n        <translation type=\"unfinished\">Set to zero for primary or one for secondary.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1317\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1323\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1339\"/>\n        <source>Primary</source>\n        <translation type=\"unfinished\">Primary</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1320\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1342\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for primary or one for secondary.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for primary or one for secondary.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1349\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1371\"/>\n        <source>Set to zero for master or one for slave mode.</source>\n        <translation type=\"unfinished\">Set to zero for master or one for slave mode.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1374\"/>\n        <source>Slave</source>\n        <translation type=\"unfinished\">Slave</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1377\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for master or one for slave mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for master or one for slave mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1384\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1406\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4054\"/>\n        <source>Logical Unit Number.</source>\n        <translation type=\"unfinished\">Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1390\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1412\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4038\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1429\"/>\n        <source>SCSI</source>\n        <translation type=\"unfinished\">SCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1432\"/>\n        <source>SCSI Settings.</source>\n        <translation type=\"unfinished\">SCSI Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1435\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1481\"/>\n        <source>Target ID on the SCSI bus (PUN).</source>\n        <translation type=\"unfinished\">Target ID on the SCSI bus (PUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1962\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1984\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4969\"/>\n        <source>Target ID</source>\n        <translation type=\"unfinished\">Target ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1465\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1487\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the SCSI bus (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the SCSI bus (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4985\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5006\"/>\n        <source>Logical Unit Number (LUN).</source>\n        <translation type=\"unfinished\">Logical Unit Number (LUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5012\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1545\"/>\n        <source>Fibre Channel</source>\n        <translation type=\"unfinished\">Fibre Channel</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1548\"/>\n        <source>Fibre Channel Settings</source>\n        <translation type=\"unfinished\">Fibre Channel Settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1551\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1596\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1750\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4434\"/>\n        <source>Reserved.</source>\n        <translation type=\"unfinished\">Reserved.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1581\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1602\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1756\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3142\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4419\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1615\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1636\"/>\n        <source>Fibre Channel World Wide Name.</source>\n        <translation type=\"unfinished\">Fibre Channel World Wide Name.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1624\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1639\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4456\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4477\"/>\n        <source>World Wide Name</source>\n        <translation type=\"unfinished\">World Wide Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1621\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1642\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel World Wide Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel World Wide Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1676\"/>\n        <source>Fibre Channel Logical Unit Number.</source>\n        <translation type=\"unfinished\">Fibre Channel Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1661\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1682\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1699\"/>\n        <source>Firewire</source>\n        <translation type=\"unfinished\">Firewire</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1702\"/>\n        <source>Firewire Settings.</source>\n        <translation type=\"unfinished\">Firewire Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1705\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firewire Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firewire Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1790\"/>\n        <source>1394 Global Unique ID (GUID)</source>\n        <translation type=\"unfinished\">1394 Global Unique ID (GUID)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1796\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 Global Unique ID (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 Global Unique ID (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1816\"/>\n        <source>USB settings.</source>\n        <translation type=\"unfinished\">USB settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1865\"/>\n        <source>USB Parent Port Number.</source>\n        <translation type=\"unfinished\">USB Parent Port Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1852\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1868\"/>\n        <source>Parent Port</source>\n        <translation type=\"unfinished\">Parent Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1871\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Parent Port Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Parent Port Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1906\"/>\n        <source>USB Interface Number.</source>\n        <translation type=\"unfinished\">USB Interface Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1912\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1929\"/>\n        <source>I2O</source>\n        <translation type=\"unfinished\">I2O</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1932\"/>\n        <source>I2O Settings</source>\n        <translation type=\"unfinished\">I2O Settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1935\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;I2O Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;I2O Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1981\"/>\n        <source>Target ID (TID) for a device.</source>\n        <translation type=\"unfinished\">Target ID (TID) for a device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1965\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1987\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID (TID) for a device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID (TID) for a device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2004\"/>\n        <source>InfiniBand</source>\n        <translation type=\"unfinished\">InfiniBand</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2007\"/>\n        <source>InfiniBand Settings.</source>\n        <translation type=\"unfinished\">InfiniBand Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2010\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;InfiniBand Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;InfiniBand Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2034\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2067\"/>\n        <source>Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.</source>\n        <translation type=\"unfinished\">Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2043\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2055\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2076\"/>\n        <source>Resource Flags</source>\n        <translation type=\"unfinished\">Resource Flags</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2046\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2079\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2098\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2119\"/>\n        <source>128-bit Global Identifier for remote fabric port</source>\n        <translation type=\"unfinished\">128-bit Global Identifier for remote fabric port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2101\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2122\"/>\n        <source>PORT GID</source>\n        <translation type=\"unfinished\">PORT GID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2104\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2125\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;128-bit Global Identifier for remote fabric port&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;128-bit Global Identifier for remote fabric port&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2135\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2156\"/>\n        <source>64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)</source>\n        <translation type=\"unfinished\">64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2138\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2144\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2159\"/>\n        <source>IOC GUID/Service ID</source>\n        <translation type=\"unfinished\">IOC GUID/Service ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2141\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2162\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2175\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2196\"/>\n        <source>64-bit persistent ID of remote IOC port.</source>\n        <translation type=\"unfinished\">64-bit persistent ID of remote IOC port.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2184\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2199\"/>\n        <source>Target Port ID</source>\n        <translation type=\"unfinished\">Target Port ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2181\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote IOC port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote IOC port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2236\"/>\n        <source>64-bit persistent ID of remote device.</source>\n        <translation type=\"unfinished\">64-bit persistent ID of remote device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2239\"/>\n        <source>Device ID</source>\n        <translation type=\"unfinished\">Device ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2259\"/>\n        <source>MAC Address</source>\n        <translation type=\"unfinished\">MAC Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2262\"/>\n        <source>MAC settings.</source>\n        <translation type=\"unfinished\">MAC settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2289\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2310\"/>\n        <source>The MAC address for a network interface padded with 0s.</source>\n        <translation type=\"unfinished\">The MAC address for a network interface padded with 0s.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2295\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2316\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The MAC address for a network interface padded with 0s.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The MAC address for a network interface padded with 0s.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2329\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2351\"/>\n        <source>Network interface type (i.e., 802.3, FDDI). See RFC 3232.</source>\n        <translation type=\"unfinished\">Network interface type (i.e., 802.3, FDDI). See RFC 3232.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2357\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network interface type (i.e., 802.3, FDDI). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network interface type (i.e., 802.3, FDDI). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2377\"/>\n        <source>IPv4 settings.</source>\n        <translation type=\"unfinished\">IPv4 settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2425\"/>\n        <source>The local IPv4 address.</source>\n        <translation type=\"unfinished\">The local IPv4 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2407\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2763\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2784\"/>\n        <source>Local IP Address</source>\n        <translation type=\"unfinished\">Local IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2431\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2465\"/>\n        <source>The remote IPv4 address.</source>\n        <translation type=\"unfinished\">The remote IPv4 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2447\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2824\"/>\n        <source>Remote IP Address</source>\n        <translation type=\"unfinished\">Remote IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2471\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2862\"/>\n        <source>The local port number.</source>\n        <translation type=\"unfinished\">The local port number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2487\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2865\"/>\n        <source>Local Port</source>\n        <translation type=\"unfinished\">Local Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2490\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2547\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2903\"/>\n        <source>The remote port number.</source>\n        <translation type=\"unfinished\">The remote port number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2550\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2906\"/>\n        <source>Remote Port</source>\n        <translation type=\"unfinished\">Remote Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2553\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2909\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2566\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2588\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2922\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2944\"/>\n        <source>The network protocol (i.e., UDP, TCP). See RFC 3232.</source>\n        <translation type=\"unfinished\">The network protocol (i.e., UDP, TCP). See RFC 3232.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2928\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2950\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The network protocol (i.e., UDP, TCP). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The network protocol (i.e., UDP, TCP). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2631\"/>\n        <source>0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.</source>\n        <translation type=\"unfinished\">0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2635\"/>\n        <source>Static IP Address</source>\n        <translation type=\"unfinished\">Static IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2667\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3083\"/>\n        <source>The Gateway IP Address.</source>\n        <translation type=\"unfinished\">The Gateway IP Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3071\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3086\"/>\n        <source>Gateway IP Address</source>\n        <translation type=\"unfinished\">Gateway IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2673\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Gateway IP Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Gateway IP Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2686\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2707\"/>\n        <source>Subnet mask.</source>\n        <translation type=\"unfinished\">Subnet mask.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2689\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2695\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2710\"/>\n        <source>Subnet Mask</source>\n        <translation type=\"unfinished\">Subnet Mask</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2733\"/>\n        <source>IPv6 settings.</source>\n        <translation type=\"unfinished\">IPv6 settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2760\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2781\"/>\n        <source>The local IPv6 address.</source>\n        <translation type=\"unfinished\">The local IPv6 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2787\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2821\"/>\n        <source>The remote IPv6 address.</source>\n        <translation type=\"unfinished\">The remote IPv6 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2963\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2989\"/>\n        <source>0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.</source>\n        <translation type=\"unfinished\">0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2976\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2994\"/>\n        <source>IP Address Origin</source>\n        <translation type=\"unfinished\">IP Address Origin</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2971\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2997\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3021\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3043\"/>\n        <source>The Prefix Length.</source>\n        <translation type=\"unfinished\">The Prefix Length.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3024\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3030\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3046\"/>\n        <source>Prefix Length</source>\n        <translation type=\"unfinished\">Prefix Length</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3027\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3049\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Prefix Length.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Prefix Length.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3106\"/>\n        <source>UART</source>\n        <translation type=\"unfinished\">UART</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3109\"/>\n        <source>UART Settings.</source>\n        <translation type=\"unfinished\">UART Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3112\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3176\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3197\"/>\n        <source>The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.</source>\n        <translation type=\"unfinished\">The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3179\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3185\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3200\"/>\n        <source>Baud Rate</source>\n        <translation type=\"unfinished\">Baud Rate</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3182\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3203\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3216\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3238\"/>\n        <source>The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.</source>\n        <translation type=\"unfinished\">The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3219\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3225\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3241\"/>\n        <source>Data Bits</source>\n        <translation type=\"unfinished\">Data Bits</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3222\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3257\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3291\"/>\n        <source>The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.</source>\n        <translation type=\"unfinished\">The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3266\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3300\"/>\n        <source>Parity</source>\n        <translation type=\"unfinished\">Parity</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3303\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3313\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3394\"/>\n        <source>Default</source>\n        <translation type=\"unfinished\">Default</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3318\"/>\n        <source>No</source>\n        <translation type=\"unfinished\">No</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3323\"/>\n        <source>Even</source>\n        <translation type=\"unfinished\">Even</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3328\"/>\n        <source>Odd</source>\n        <translation type=\"unfinished\">Odd</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3333\"/>\n        <source>Mark</source>\n        <translation type=\"unfinished\">Mark</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3338\"/>\n        <source>Space</source>\n        <translation type=\"unfinished\">Space</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3346\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3376\"/>\n        <source>The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.</source>\n        <translation type=\"unfinished\">The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3353\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3363\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3383\"/>\n        <source>Stop Bits</source>\n        <translation type=\"unfinished\">Stop Bits</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3356\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3399\"/>\n        <source>1</source>\n        <translation type=\"unfinished\">1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3404\"/>\n        <source>1.5</source>\n        <translation type=\"unfinished\">1.5</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3409\"/>\n        <source>2</source>\n        <translation type=\"unfinished\">2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3421\"/>\n        <source>USB Class</source>\n        <translation type=\"unfinished\">USB Class</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3424\"/>\n        <source>USB Class Settings.</source>\n        <translation type=\"unfinished\">USB Class Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3427\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Class Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Class Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3451\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3472\"/>\n        <source>Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.</source>\n        <translation type=\"unfinished\">Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3454\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3460\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3475\"/>\n        <source>Vendor ID</source>\n        <translation type=\"unfinished\">Vendor ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3457\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3478\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3491\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3512\"/>\n        <source>Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.</source>\n        <translation type=\"unfinished\">Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3515\"/>\n        <source>Product ID</source>\n        <translation type=\"unfinished\">Product ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3518\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3552\"/>\n        <source>The class code assigned by the USB-IF. A value of 0xFF will match any class code.</source>\n        <translation type=\"unfinished\">The class code assigned by the USB-IF. A value of 0xFF will match any class code.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3540\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3555\"/>\n        <source>Device Class</source>\n        <translation type=\"unfinished\">Device Class</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3537\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3558\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The class code assigned by the USB-IF. A value of 0xFF will match any class code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The class code assigned by the USB-IF. A value of 0xFF will match any class code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3592\"/>\n        <source>The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.</source>\n        <translation type=\"unfinished\">The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3574\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3595\"/>\n        <source>Device Subclass</source>\n        <translation type=\"unfinished\">Device Subclass</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3632\"/>\n        <source>The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.</source>\n        <translation type=\"unfinished\">The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3635\"/>\n        <source>Device Protocol</source>\n        <translation type=\"unfinished\">Device Protocol</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3617\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3655\"/>\n        <source>USB WWID</source>\n        <translation type=\"unfinished\">USB WWID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3658\"/>\n        <source>This device path describes a USB device using its serial number.</source>\n        <translation type=\"unfinished\">This device path describes a USB device using its serial number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3661\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a USB device using its serial number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a USB device using its serial number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3685\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3707\"/>\n        <source>USB interface Number.</source>\n        <translation type=\"unfinished\">USB interface Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3747\"/>\n        <source>USB vendor id of the device.</source>\n        <translation type=\"unfinished\">USB vendor id of the device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3750\"/>\n        <source>Device Vendor Id</source>\n        <translation type=\"unfinished\">Device Vendor Id</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3753\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB vendor id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB vendor id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3787\"/>\n        <source>USB product id of the device.</source>\n        <translation type=\"unfinished\">USB product id of the device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3790\"/>\n        <source>Device Product Id</source>\n        <translation type=\"unfinished\">Device Product Id</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3793\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB product id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB product id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3828\"/>\n        <source>Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).</source>\n        <translation type=\"unfinished\">Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3815\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3831\"/>\n        <source>Serial Number</source>\n        <translation type=\"unfinished\">Serial Number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3812\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3845\"/>\n        <source>Device Logical Unit</source>\n        <translation type=\"unfinished\">Device Logical Unit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3848\"/>\n        <source>Device Logical Unit Settings.</source>\n        <translation type=\"unfinished\">Device Logical Unit Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3851\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device Logical Unit Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device Logical Unit Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3897\"/>\n        <source>Logical Unit Number for the interface.</source>\n        <translation type=\"unfinished\">Logical Unit Number for the interface.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3903\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number for the interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number for the interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3923\"/>\n        <source>SATA settings.</source>\n        <translation type=\"unfinished\">SATA settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3950\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3972\"/>\n        <source>The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.</source>\n        <translation type=\"unfinished\">The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3953\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3975\"/>\n        <source>HBA Port</source>\n        <translation type=\"unfinished\">HBA Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3956\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3978\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4013\"/>\n        <source>The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.</source>\n        <translation type=\"unfinished\">The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4000\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4016\"/>\n        <source>Port Multiplier Port</source>\n        <translation type=\"unfinished\">Port Multiplier Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3997\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4019\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4077\"/>\n        <source>iSCSI</source>\n        <translation type=\"unfinished\">iSCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4080\"/>\n        <source>iSCSI Settings.</source>\n        <translation type=\"unfinished\">iSCSI Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4083\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4129\"/>\n        <source>Network Protocol (0 = TCP, 1+ = reserved).</source>\n        <translation type=\"unfinished\">Network Protocol (0 = TCP, 1+ = reserved).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4113\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network Protocol (0 = TCP, 1+ = reserved).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network Protocol (0 = TCP, 1+ = reserved).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4148\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4169\"/>\n        <source>iSCSI Login Options.</source>\n        <translation type=\"unfinished\">iSCSI Login Options.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4151\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4172\"/>\n        <source>Options</source>\n        <translation type=\"unfinished\">Options</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4154\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4175\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Login Options.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Login Options.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4188\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4209\"/>\n        <source>8 byte array containing the iSCSI Logical Unit Number.</source>\n        <translation type=\"unfinished\">8 byte array containing the iSCSI Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4194\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing the iSCSI Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing the iSCSI Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4228\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4250\"/>\n        <source>iSCSI Target Portal group tag the initiator intends to establish a session with.</source>\n        <translation type=\"unfinished\">iSCSI Target Portal group tag the initiator intends to establish a session with.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4231\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4253\"/>\n        <source>Target Portal Group</source>\n        <translation type=\"unfinished\">Target Portal Group</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4234\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4256\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Target Portal group tag the initiator intends to establish a session with.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Target Portal group tag the initiator intends to establish a session with.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4291\"/>\n        <source>iSCSI NodeTarget Name.</source>\n        <translation type=\"unfinished\">iSCSI NodeTarget Name.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4272\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4294\"/>\n        <source>Target Name</source>\n        <translation type=\"unfinished\">Target Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4275\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4297\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI NodeTarget Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI NodeTarget Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4308\"/>\n        <source>VLAN</source>\n        <translation type=\"unfinished\">VLAN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4311\"/>\n        <source>VLAN Settings.</source>\n        <translation type=\"unfinished\">VLAN Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4314\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4360\"/>\n        <source>VLAN identifier (0-4094).</source>\n        <translation type=\"unfinished\">VLAN identifier (0-4094).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4341\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4347\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4363\"/>\n        <source>Vlan ID</source>\n        <translation type=\"unfinished\">Vlan ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4344\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4366\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN identifier (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN identifier (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4383\"/>\n        <source>Fibre Channel Ex</source>\n        <translation type=\"unfinished\">Fibre Channel Ex</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4386\"/>\n        <source>The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation type=\"unfinished\">The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4389\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4474\"/>\n        <source>8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).</source>\n        <translation type=\"unfinished\">8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4480\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4514\"/>\n        <source>8 byte array containing Fibre Channel Logical Unit Number.</source>\n        <translation type=\"unfinished\">8 byte array containing Fibre Channel Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4499\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4520\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4537\"/>\n        <source>SAS Extended Messaging</source>\n        <translation type=\"unfinished\">SAS Extended Messaging</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4540\"/>\n        <source>The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation type=\"unfinished\">The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4543\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4567\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4588\"/>\n        <source>8-byte array of the SAS Address for Serial Attached SCSI Target Port.</source>\n        <translation type=\"unfinished\">8-byte array of the SAS Address for Serial Attached SCSI Target Port.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4570\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4576\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4591\"/>\n        <source>SAS Address</source>\n        <translation type=\"unfinished\">SAS Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4573\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4594\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Address for Serial Attached SCSI Target Port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Address for Serial Attached SCSI Target Port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4628\"/>\n        <source>8-byte array of the SAS Logical Unit Number.</source>\n        <translation type=\"unfinished\">8-byte array of the SAS Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4613\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4634\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4647\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4668\"/>\n        <source>More Information about the device and its interconnect.</source>\n        <translation type=\"unfinished\">More Information about the device and its interconnect.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4650\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4656\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4671\"/>\n        <source>Device and Topology Info</source>\n        <translation type=\"unfinished\">Device and Topology Info</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4653\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4674\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;More Information about the device and its interconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;More Information about the device and its interconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4687\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4709\"/>\n        <source>Relative Target Port (RTP).</source>\n        <translation type=\"unfinished\">Relative Target Port (RTP).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4690\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4696\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4712\"/>\n        <source>Relative Target Port</source>\n        <translation type=\"unfinished\">Relative Target Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4715\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Relative Target Port (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Relative Target Port (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4732\"/>\n        <source>NVM Express NS</source>\n        <translation type=\"unfinished\">NVM Express NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4735\"/>\n        <source>NVM Express Namespace Settings.</source>\n        <translation type=\"unfinished\">NVM Express Namespace Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4738\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM Express Namespace Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM Express Namespace Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4783\"/>\n        <source>Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.</source>\n        <translation type=\"unfinished\">Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4765\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4771\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4786\"/>\n        <source>NSID</source>\n        <translation type=\"unfinished\">NSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4768\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4789\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4802\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4823\"/>\n        <source>This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.</source>\n        <translation type=\"unfinished\">This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4805\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4811\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4826\"/>\n        <source>EUI-64</source>\n        <translation type=\"unfinished\">EUI-64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4808\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4829\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4849\"/>\n        <source>Refer to RFC 3986 for details on the URI contents.</source>\n        <translation type=\"unfinished\">Refer to RFC 3986 for details on the URI contents.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Refer to RFC 3986 for details on the URI contents.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Refer to RFC 3986 for details on the URI contents.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4876\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4898\"/>\n        <source>Instance of the URI pursuant to RFC 3986.</source>\n        <translation type=\"unfinished\">Instance of the URI pursuant to RFC 3986.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4882\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Instance of the URI pursuant to RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Instance of the URI pursuant to RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4915\"/>\n        <source>UFS</source>\n        <translation type=\"unfinished\">UFS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4918\"/>\n        <source>UFS Settings.</source>\n        <translation type=\"unfinished\">UFS Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4966\"/>\n        <source>Target ID on the UFS interface (PUN).</source>\n        <translation type=\"unfinished\">Target ID on the UFS interface (PUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4972\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the UFS interface (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the UFS interface (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5029\"/>\n        <source>SD</source>\n        <translation type=\"unfinished\">SD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5032\"/>\n        <source>SD Settings.</source>\n        <translation type=\"unfinished\">SD Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5035\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5081\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5299\"/>\n        <source>Slot Number</source>\n        <translation type=\"unfinished\">Slot Number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5084\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5280\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5286\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5302\"/>\n        <source>Slot</source>\n        <translation type=\"unfinished\">Slot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5087\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5283\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5305\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Slot Number&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Slot Number&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5104\"/>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\">Bluetooth</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5107\"/>\n        <source>EFI Bluetooth Settings.</source>\n        <translation type=\"unfinished\">EFI Bluetooth Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5110\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI Bluetooth Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI Bluetooth Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5155\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5373\"/>\n        <source>48-bit Bluetooth device address.</source>\n        <translation type=\"unfinished\">48-bit Bluetooth device address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5143\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5158\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5361\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5376\"/>\n        <source>Device Address</source>\n        <translation type=\"unfinished\">Device Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5161\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5379\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-bit Bluetooth device address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-bit Bluetooth device address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5178\"/>\n        <source>Wi-Fi</source>\n        <translation type=\"unfinished\">Wi-Fi</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5181\"/>\n        <source>Wi-Fi Settings.</source>\n        <translation type=\"unfinished\">Wi-Fi Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5184\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wi-Fi Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wi-Fi Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5208\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5230\"/>\n        <source>SSID in octet string.</source>\n        <translation type=\"unfinished\">SSID in octet string.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5211\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5217\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5233\"/>\n        <source>SSID</source>\n        <translation type=\"unfinished\">SSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5214\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5236\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID in octet string.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID in octet string.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5247\"/>\n        <source>eMMC</source>\n        <translation type=\"unfinished\">eMMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5250\"/>\n        <source>Embedded Multi-Media Card Settings.</source>\n        <translation type=\"unfinished\">Embedded Multi-Media Card Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5253\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Embedded Multi-Media Card Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Embedded Multi-Media Card Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5322\"/>\n        <source>BluetoothLE</source>\n        <translation type=\"unfinished\">BluetoothLE</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5325\"/>\n        <source>EFI BluetoothLE Settings.</source>\n        <translation type=\"unfinished\">EFI BluetoothLE Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5328\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI BluetoothLE Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI BluetoothLE Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5416\"/>\n        <source>0x00 - Public Device Address.\n0x01 - Random Device Address.</source>\n        <translation type=\"unfinished\">0x00 - Public Device Address.\n0x01 - Random Device Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5396\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5403\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5420\"/>\n        <source>Address Type</source>\n        <translation type=\"unfinished\">Address Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5399\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5423\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Public Device Address.\n0x01 - Random Device Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Public Device Address.\n0x01 - Random Device Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5428\"/>\n        <source>Public</source>\n        <translation type=\"unfinished\">Public</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5433\"/>\n        <source>Random</source>\n        <translation type=\"unfinished\">Random</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5445\"/>\n        <source>DNS</source>\n        <translation type=\"unfinished\">DNS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5448\"/>\n        <source>DNS Settings.</source>\n        <translation type=\"unfinished\">DNS Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5451\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DNS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DNS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5499\"/>\n        <source>0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.</source>\n        <translation type=\"unfinished\">0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5482\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5506\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5514\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5575\"/>\n        <source>One or more instances of the DNS server address in EFI_IP_ADDRESS.</source>\n        <translation type=\"unfinished\">One or more instances of the DNS server address in EFI_IP_ADDRESS.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5520\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5581\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;One or more instances of the DNS server address in EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;One or more instances of the DNS server address in EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5536\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7584\"/>\n        <source>Data format.</source>\n        <translation type=\"unfinished\">Data format.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5592\"/>\n        <source>NVDIMM NS</source>\n        <translation type=\"unfinished\">NVDIMM NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5595\"/>\n        <source>This device path describes a bootable NVDIMM namespace that is defined by a namespace label.</source>\n        <translation type=\"unfinished\">This device path describes a bootable NVDIMM namespace that is defined by a namespace label.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVDIMM namespace that is defined by a namespace label.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVDIMM namespace that is defined by a namespace label.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5622\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5643\"/>\n        <source>Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.</source>\n        <translation type=\"unfinished\">Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5646\"/>\n        <source>UUID</source>\n        <translation type=\"unfinished\">UUID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5628\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5649\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5663\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5698\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5706\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5724\"/>\n        <source>REST Service</source>\n        <translation type=\"unfinished\">REST Service</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5666\"/>\n        <source>REST Service Settings.</source>\n        <translation type=\"unfinished\">REST Service Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5669\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;REST Service Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;REST Service Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5719\"/>\n        <source>0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.</source>\n        <translation type=\"unfinished\">0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5701\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5727\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5733\"/>\n        <source>Redfish</source>\n        <translation type=\"unfinished\">Redfish</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5738\"/>\n        <source>OData</source>\n        <translation type=\"unfinished\">OData</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5743\"/>\n        <source>Vendor specific</source>\n        <translation type=\"unfinished\">Vendor specific</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5775\"/>\n        <source>0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.</source>\n        <translation type=\"unfinished\">0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5755\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5779\"/>\n        <source>Access Mode</source>\n        <translation type=\"unfinished\">Access Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5782\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5787\"/>\n        <source>In-Band</source>\n        <translation type=\"unfinished\">In-Band</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5792\"/>\n        <source>Out-of-band</source>\n        <translation type=\"unfinished\">Out-of-band</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5821\"/>\n        <source>GUID of vendor specific REST service.</source>\n        <translation type=\"unfinished\">GUID of vendor specific REST service.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID of vendor specific REST service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID of vendor specific REST service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5898\"/>\n        <source>Vendor-defined data.</source>\n        <translation type=\"unfinished\">Vendor-defined data.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5915\"/>\n        <source>NVMe-oF NS</source>\n        <translation type=\"unfinished\">NVMe-oF NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5918\"/>\n        <source>This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.</source>\n        <translation type=\"unfinished\">This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5967\"/>\n        <source>Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.</source>\n        <translation type=\"unfinished\">Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5970\"/>\n        <source>NIDT</source>\n        <translation type=\"unfinished\">NIDT</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5973\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5986\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6007\"/>\n        <source>Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.</source>\n        <translation type=\"unfinished\">Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5989\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5995\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6010\"/>\n        <source>NID</source>\n        <translation type=\"unfinished\">NID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5992\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6013\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6023\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6045\"/>\n        <source>Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.</source>\n        <translation type=\"unfinished\">Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6026\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6048\"/>\n        <source>Subsystem NQN</source>\n        <translation type=\"unfinished\">Subsystem NQN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6029\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6051\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6066\"/>\n        <source>Hard Drive</source>\n        <translation type=\"unfinished\">Hard Drive</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6069\"/>\n        <source>The Hard Drive Media Device Path is used to represent a partition on a hard drive.</source>\n        <translation type=\"unfinished\">The Hard Drive Media Device Path is used to represent a partition on a hard drive.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6072\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Hard Drive Media Device Path is used to represent a partition on a hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Hard Drive Media Device Path is used to represent a partition on a hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6174\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6196\"/>\n        <source>Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].</source>\n        <translation type=\"unfinished\">Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6180\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6236\"/>\n        <source>Starting LBA of the partition on the hard drive.</source>\n        <translation type=\"unfinished\">Starting LBA of the partition on the hard drive.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6466\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6487\"/>\n        <source>Partition Start</source>\n        <translation type=\"unfinished\">Partition Start</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting LBA of the partition on the hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting LBA of the partition on the hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6255\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6276\"/>\n        <source>Size of the partition in units of Logical Blocks.</source>\n        <translation type=\"unfinished\">Size of the partition in units of Logical Blocks.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6258\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6264\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6279\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6527\"/>\n        <source>Partition Size</source>\n        <translation type=\"unfinished\">Partition Size</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6261\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6282\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Logical Blocks.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Logical Blocks.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6295\"/>\n        <source>Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation type=\"unfinished\">Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6301\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6310\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6367\"/>\n        <source>Partition Signature</source>\n        <translation type=\"unfinished\">Partition Signature</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6304\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6322\"/>\n        <source>PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.</source>\n        <translation type=\"unfinished\">PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6328\"/>\n        <source>Signature Type</source>\n        <translation type=\"unfinished\">Signature Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6331\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6338\"/>\n        <source>None</source>\n        <translation type=\"unfinished\">None</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6361\"/>\n        <source>Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation type=\"unfinished\">Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6370\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6392\"/>\n        <source>CD-ROM</source>\n        <translation type=\"unfinished\">CD-ROM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6395\"/>\n        <source>The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.</source>\n        <translation type=\"unfinished\">The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6398\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6444\"/>\n        <source>Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.</source>\n        <translation type=\"unfinished\">Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6425\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6431\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6447\"/>\n        <source>Boot Entry</source>\n        <translation type=\"unfinished\">Boot Entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6450\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6463\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6484\"/>\n        <source>Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.</source>\n        <translation type=\"unfinished\">Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6469\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6490\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6524\"/>\n        <source>Size of the partition in units of Blocks, also called Sectors.</source>\n        <translation type=\"unfinished\">Size of the partition in units of Blocks, also called Sectors.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6530\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Blocks, also called Sectors.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Blocks, also called Sectors.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6547\"/>\n        <source>File Path</source>\n        <translation type=\"unfinished\">File Path</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6550\"/>\n        <source>File Path settings.</source>\n        <translation type=\"unfinished\">File Path settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6553\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File Path settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File Path settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6599\"/>\n        <source>Path including directory and file names.</source>\n        <translation type=\"unfinished\">Path including directory and file names.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6586\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6602\"/>\n        <source>Path Name</source>\n        <translation type=\"unfinished\">Path Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6583\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6605\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Path including directory and file names.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Path including directory and file names.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6619\"/>\n        <source>The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.</source>\n        <translation type=\"unfinished\">The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6622\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6667\"/>\n        <source>The ID of the protocol.</source>\n        <translation type=\"unfinished\">The ID of the protocol.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6673\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ID of the protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ID of the protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6687\"/>\n        <source>Firmware File</source>\n        <translation type=\"unfinished\">Firmware File</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6690\"/>\n        <source>Describes a firmware file in a firmware volume.</source>\n        <translation type=\"unfinished\">Describes a firmware file in a firmware volume.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6693\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware file in a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware file in a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6717\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6738\"/>\n        <source>Firmware file name GUID.</source>\n        <translation type=\"unfinished\">Firmware file name GUID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6723\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6744\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware file name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware file name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6758\"/>\n        <source>Firmware Volume</source>\n        <translation type=\"unfinished\">Firmware Volume</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6761\"/>\n        <source>Describes a firmware volume.</source>\n        <translation type=\"unfinished\">Describes a firmware volume.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6764\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6809\"/>\n        <source>Firmware volume name GUID.</source>\n        <translation type=\"unfinished\">Firmware volume name GUID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware volume name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware volume name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6829\"/>\n        <source>Relative Offset Range</source>\n        <translation type=\"unfinished\">Relative Offset Range</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6832\"/>\n        <source>This device path node specifies a range of offsets relative to the first byte available on the device.</source>\n        <translation type=\"unfinished\">This device path node specifies a range of offsets relative to the first byte available on the device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6835\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path node specifies a range of offsets relative to the first byte available on the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path node specifies a range of offsets relative to the first byte available on the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6880\"/>\n        <source>Reserved for future use.</source>\n        <translation type=\"unfinished\">Reserved for future use.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6886\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved for future use.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved for future use.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6899\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6920\"/>\n        <source>Offset of the first byte, relative to the parent device node.</source>\n        <translation type=\"unfinished\">Offset of the first byte, relative to the parent device node.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6902\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6908\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6923\"/>\n        <source>Starting Offset</source>\n        <translation type=\"unfinished\">Starting Offset</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6905\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the first byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the first byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6939\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6960\"/>\n        <source>Offset of the last byte, relative to the parent device node.</source>\n        <translation type=\"unfinished\">Offset of the last byte, relative to the parent device node.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6942\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6963\"/>\n        <source>Ending Offset</source>\n        <translation type=\"unfinished\">Ending Offset</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6966\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the last byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the last byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6983\"/>\n        <source>RAM Disk</source>\n        <translation type=\"unfinished\">RAM Disk</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6986\"/>\n        <source>RAM Disk Settings.</source>\n        <translation type=\"unfinished\">RAM Disk Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6989\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7016\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7037\"/>\n        <source>Starting Address</source>\n        <translation type=\"unfinished\">Starting Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7056\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7077\"/>\n        <source>Ending Address</source>\n        <translation type=\"unfinished\">Ending Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7093\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7114\"/>\n        <source>GUID that defines the type of the RAM Disk.</source>\n        <translation type=\"unfinished\">GUID that defines the type of the RAM Disk.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7120\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID that defines the type of the RAM Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID that defines the type of the RAM Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7130\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7152\"/>\n        <source>RAM Disk instance number, if supported.</source>\n        <translation type=\"unfinished\">RAM Disk instance number, if supported.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7133\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7155\"/>\n        <source>Disk Instance</source>\n        <translation type=\"unfinished\">Disk Instance</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7158\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk instance number, if supported.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk instance number, if supported.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7179\"/>\n        <source>This Device Path is used to describe the booting of non-EFI-aware operating systems.</source>\n        <translation type=\"unfinished\">This Device Path is used to describe the booting of non-EFI-aware operating systems.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7182\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path is used to describe the booting of non-EFI-aware operating systems.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path is used to describe the booting of non-EFI-aware operating systems.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7206\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7249\"/>\n        <source>An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.</source>\n        <translation type=\"unfinished\">An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7220\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7263\"/>\n        <source>Device Type</source>\n        <translation type=\"unfinished\">Device Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7223\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7290\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7347\"/>\n        <source>Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero</source>\n        <translation type=\"unfinished\">Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7311\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7368\"/>\n        <source>Status Flag</source>\n        <translation type=\"unfinished\">Status Flag</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7371\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7402\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7424\"/>\n        <source>String that describes the boot device to a user.</source>\n        <translation type=\"unfinished\">String that describes the boot device to a user.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7408\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7430\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;String that describes the boot device to a user.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;String that describes the boot device to a user.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7543\"/>\n        <source>Vendor-assigned GUID that defines the data that follows.</source>\n        <translation type=\"unfinished\">Vendor-assigned GUID that defines the data that follows.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7549\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-assigned GUID that defines the data that follows.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-assigned GUID that defines the data that follows.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7562\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7622\"/>\n        <source>Vendor-defined variable size data.</source>\n        <translation type=\"unfinished\">Vendor-defined variable size data.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7568\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7628\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined variable size data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined variable size data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7642\"/>\n        <source>Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.</source>\n        <translation type=\"unfinished\">Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7645\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7721\"/>\n        <source>Unknown file path specifier settings</source>\n        <translation>Neznáme nastavenia špecifikátora cesty k súboru</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7724\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown file path specifier settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Neznáme nastavenia špecifikátora cesty k súboru.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7748\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7772\"/>\n        <source>Unknown Type</source>\n        <translation>Neznámy typ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7754\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7775\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Neznámy typ.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7812\"/>\n        <source>Unknown Sub-Type</source>\n        <translation>Neznámy podtyp</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Neznámy podtyp.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7828\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7831\"/>\n        <source>Unknown data</source>\n        <translation>Neznáme údaje</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Neznáme údaje.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/filepathdialog.cpp\" line=\"1569\"/>\n        <source>Couldn&apos;t change data format!</source>\n        <translation type=\"unfinished\">Couldn&apos;t change data format!</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeyListModel</name>\n    <message>\n        <location filename=\"../src/hotkeylistmodel.cpp\" line=\"100\"/>\n        <source>boot option</source>\n        <translation type=\"unfinished\">boot option</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Boot option</source>\n        <translation type=\"unfinished\">Boot option</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Hot key</source>\n        <translation type=\"unfinished\">Hot key</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Vendor data</source>\n        <translation type=\"unfinished\">Údaje predajcu</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeysDialog</name>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"20\"/>\n        <source>Hot Keys editor</source>\n        <translation type=\"unfinished\">Hot Keys editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"41\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"44\"/>\n        <source>Hot Keys</source>\n        <translation type=\"unfinished\">Hot Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"47\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"125\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"128\"/>\n        <source>Index filter</source>\n        <translation type=\"unfinished\">Index filter</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"131\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Index filter&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Index filter&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"163\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"166\"/>\n        <source>Remove hot key</source>\n        <translation type=\"unfinished\">Remove hot key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"191\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"194\"/>\n        <source>Add hot key</source>\n        <translation type=\"unfinished\">Add hot key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"197\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <location filename=\"../include/commands.h\" line=\"21\"/>\n        <location filename=\"../include/commands.h\" line=\"66\"/>\n        <source>Change %1 to &quot;%2&quot;</source>\n        <translation>Zmeniť %1 na &quot;%2&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"35\"/>\n        <source>Insert %1 entry &quot;%2&quot; at position %3</source>\n        <translation>Vložiť %1 položku &quot;%2&quot; na pozíciu %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"50\"/>\n        <source>Remove %1 entry &quot;%2&quot; from position %3</source>\n        <translation type=\"unfinished\">Remove %1 entry &quot;%2&quot; from position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"73\"/>\n        <location filename=\"../src/commands.cpp\" line=\"116\"/>\n        <source>Move %1 entry &quot;%2&quot; from position %3 to %4</source>\n        <translation>Presunúť %1 položku &quot;%2&quot; z pozície %3 na %4</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <location filename=\"../include/commands.h\" line=\"157\"/>\n        <location filename=\"../include/commands.h\" line=\"198\"/>\n        <source>Change %1 entry &quot;%2&quot; %3 to &quot;%4&quot;</source>\n        <translation>Zmeniť %1 položku &quot;%2&quot; %3 na &quot;%4&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <source>Optional data</source>\n        <translation>Voliteľné údaje</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"227\"/>\n        <source>Insert %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation>Vložiť %1 položku &quot;%2&quot; cesta k súboru na pozícii %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"242\"/>\n        <source>Remove %1 entry &quot;%2&quot; file path from position %3</source>\n        <translation type=\"unfinished\">Remove %1 entry &quot;%2&quot; file path from position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"257\"/>\n        <source>Set %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation type=\"unfinished\">Set %1 entry &quot;%2&quot; file path at position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <source>Insert %1 entry at position %2</source>\n        <translation type=\"unfinished\">Insert %1 entry at position %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>Key</source>\n        <translation type=\"unfinished\">Key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <source>Remove %1 entry from position %2</source>\n        <translation type=\"unfinished\">Remove %1 entry from position %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <location filename=\"../include/commands.h\" line=\"362\"/>\n        <location filename=\"../include/commands.h\" line=\"403\"/>\n        <source>Change %1 entry at position %2 %3 to &quot;%4&quot;</source>\n        <translation type=\"unfinished\">Change %1 entry at position %2 %3 to &quot;%4&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>keys</source>\n        <translation type=\"unfinished\">keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"293\"/>\n        <location filename=\"../src/commands.cpp\" line=\"333\"/>\n        <source>Move %1 entry &quot;%2&quot; file path from position %3 to %4</source>\n        <translation>Presunúť %1 položku &quot;%2&quot; cesta k súboru z pozície %3 na %4</translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/efibooteditor_sl.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"sl\" sourcelanguage=\"en_US\">\n<context>\n    <name>BootEntryForm</name>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"169\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"172\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"182\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"185\"/>\n        <source>Description</source>\n        <translation>Opis</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"198\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"201\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"204\"/>\n        <source>Path</source>\n        <translation>Pot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"415\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"418\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"478\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"481\"/>\n        <source>Optional data</source>\n        <translation>Neobvezni podatki</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"421\"/>\n        <source>Optional</source>\n        <translation>Neobvezno</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"434\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"437\"/>\n        <source>Optional data format</source>\n        <translation>Format neobveznih podatkov</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"6\"/>\n        <source>Boot entry form</source>\n        <translation>Obrazec zagonskega vnosa</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"24\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"27\"/>\n        <source>Error</source>\n        <translation type=\"unfinished\">Error</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"40\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"43\"/>\n        <source>Error note</source>\n        <translation type=\"unfinished\">Error note</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"46\"/>\n        <source>This entry placeholder is shown here to indicate it&apos;s referenced in boot order. It won&apos;t be modified on save, just left as is.</source>\n        <translation type=\"unfinished\">This entry placeholder is shown here to indicate it&apos;s referenced in boot order. It won&apos;t be modified on save, just left as is.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"147\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"150\"/>\n        <source>Hot Keys</source>\n        <translation type=\"unfinished\">Hot Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"188\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry description.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Opis vnosa.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"222\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"225\"/>\n        <source>Device path</source>\n        <translation>Pot naprave</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Pot naprave.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"280\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"283\"/>\n        <source>Move file path up</source>\n        <translation>Premakni pot datoteke navzgor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"286\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Premakni pot datoteke navzgor.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"305\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"308\"/>\n        <source>Move file path down</source>\n        <translation>Premakni pot datoteke navzdol</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"311\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Premakni pot datoteke navzdol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"330\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"333\"/>\n        <source>Remove file path</source>\n        <translation>Odstrani pot datoteke</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"336\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Odstrani pot datoteke.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"355\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"358\"/>\n        <source>Edit file path</source>\n        <translation>Uredi pot datoteke</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"361\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Edit file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Uredi pot datoteke.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"380\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"383\"/>\n        <source>Add file path</source>\n        <translation>Dodaj pot datoteke</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dodaj pot datoteke.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Format neobveznih podatkov.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"444\"/>\n        <source>BASE64</source>\n        <translation>BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"449\"/>\n        <source>UTF-16</source>\n        <translation>UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"454\"/>\n        <source>UTF-8</source>\n        <translation>UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"459\"/>\n        <source>HEX</source>\n        <translation>16-tiško</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"484\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry optional data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vnos neobveznih podatkov.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"497\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"500\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"503\"/>\n        <source>Attributes</source>\n        <translation>Atributi</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"623\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry category.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Kategorija vnosa.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"122\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indeks vnosa.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"540\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Is entry considered for automatic boot?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ali se vnos upošteva za samodejni zagon?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"569\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hidden.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Skrit.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"585\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Force reconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Prisilno znova poveži.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"534\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"537\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"543\"/>\n        <source>Active</source>\n        <translation>Aktiven</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"579\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"582\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"588\"/>\n        <source>Force reconnect</source>\n        <translation>Prisilno znova poveži</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"563\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"566\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"572\"/>\n        <source>Hidden</source>\n        <translation>Skrit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"598\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"601\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"604\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"617\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"620\"/>\n        <source>Category</source>\n        <translation>Kategorija</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"627\"/>\n        <source>Boot</source>\n        <translation>Zagon</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"632\"/>\n        <source>App</source>\n        <translation>Aplikacija</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"68\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"71\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"74\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"116\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"119\"/>\n        <source>Index</source>\n        <translation>Indeks</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentryform.cpp\" line=\"117\"/>\n        <source>Couldn&apos;t change optional data format!</source>\n        <translation>Formata neobveznih podatkov ni bilo mogoče spremeniti!</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryListModel</name>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"88\"/>\n        <source>Set Next boot to &quot;%1&quot;</source>\n        <translation>Nastavi naslednji zagon na &quot;%1&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"184\"/>\n        <source>index</source>\n        <translation type=\"unfinished\">index</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"200\"/>\n        <source>description</source>\n        <translation type=\"unfinished\">description</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"237\"/>\n        <source>optional data</source>\n        <translation type=\"unfinished\">optional data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"253\"/>\n        <source>attributes</source>\n        <translation type=\"unfinished\">attributes</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"269\"/>\n        <source>next boot</source>\n        <translation type=\"unfinished\">next boot</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryWidget</name>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"12\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"221\"/>\n        <source>Boot entry</source>\n        <translation>Zagonski vnos</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"36\"/>\n        <source>Next boot</source>\n        <translation>Naslednji zagon</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"39\"/>\n        <source>Run at next boot</source>\n        <translation>Zaženi pri naslednjem zagonu</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"42\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;When chosen, entry will run at next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ko je izbran, se bo vnos zagnal ob naslednjem zagonu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"140\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"143\"/>\n        <source>Current boot</source>\n        <translation>Trenutni zagon</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This entry is currently booted.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ta vnos je trenutno zagnan.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"181\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indeks zagonskega vnosa.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"218\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry description, human readable name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Opis zagonskega vnosa, človeku berljivo ime.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"67\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"70\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"76\"/>\n        <source>Device path</source>\n        <translation>Pot naprave</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"73\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; Pot zagonske naprave. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"113\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data, arguments passed to boot executable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Neobvezni podatki, posredovani argumenti za zagon izvedljive datoteke.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"178\"/>\n        <source>Boot entry index</source>\n        <translation>Indeks zagonskega vnosa</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"184\"/>\n        <source>Index</source>\n        <translation>Indeks</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"212\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"215\"/>\n        <source>Boot entry description</source>\n        <translation>Opis zagonskega vnosa</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"107\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"110\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"116\"/>\n        <source>Optional data</source>\n        <translation>Neobvezni podatki</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootData</name>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"111\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"813\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1027\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1361\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1472\"/>\n        <source>%1: not found</source>\n        <translation>%1: ni bilo mogoče najti</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"120\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"821\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1387\"/>\n        <source>%1: failed deserialization</source>\n        <translation>%1: neuspešna deserializacija</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Error loading entries</source>\n        <translation>Napaka pri nalaganju vnosov</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Failed to load some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>Nekaterih vnosov EFI Boot Managerja ni bilo mogoče naložiti:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Error saving entries</source>\n        <translation>Napaka pri shranjevanju vnosov</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Entry %1(%2): duplicated index!</source>\n        <translation>Napaka %1(%2): podvojen indeks!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"389\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"419\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"458\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"479\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"487\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"516\"/>\n        <source>Error saving %1</source>\n        <translation>Napaka pri shranjevanju %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"407\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"470\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"504\"/>\n        <source>Error removing %1</source>\n        <translation>Napaka pri odstranjevanju %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Error importing boot configuration</source>\n        <translation>Napaka pri uvozu zagonskih nastavitev</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <source>Couldn&apos;t open selected file (%1).</source>\n        <translation>Izbrane datoteke (%1) ni bilo mogoče odpreti.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <source>Parser failed: %1</source>\n        <translation type=\"unfinished\">Parser failed: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <source>Invalid _Type: %1</source>\n        <translation>Neveljavna_vrsta: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <source>Error exporting boot configuration</source>\n        <translation>Napaka pri izvozu zagonskih nastavitev</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <source>Couldn&apos;t open selected file (%1): %2.</source>\n        <translation>Ni bilo mogoče odpreti izbrane datoteke (%1): %2.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <source>Couldn&apos;t write into file (%1): %2.</source>\n        <translation>Ni bilo mogoče pisati v datoteko (%1): %2.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Error dumping raw EFI data</source>\n        <translation>Napaka pri izpisu surovih podatkov EFI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Failed to dump some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>Napaka pri izpisu nekaterih vnosov EFI Boot Managerja:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"905\"/>\n        <source>Timeout</source>\n        <translation>Odmor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"921\"/>\n        <source>Apple boot-args</source>\n        <translation>Apple zagonski argumenti</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"937\"/>\n        <source>Firmware actions</source>\n        <translation>Akcije vdelane programske opreme</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"73\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation>Nalaganje vnosov EFI Boot Managerja…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"89\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"787\"/>\n        <source>Searching EFI Boot Manager entries…</source>\n        <translation>Iskanje vnosov EFI Boot Managerja…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"116\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"292\"/>\n        <source>Processing EFI Boot Manager entries (%1)…</source>\n        <translation>Obdelava vnosov EFI Boot Managerja (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"308\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation>Shranjevanje vnosov EFI Boot Managerja…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"333\"/>\n        <source>Searching old EFI Boot Manager entries…</source>\n        <translation>Iskanje starih vnosov EFI Boot Managerja…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"374\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"416\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"447\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"476\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"484\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"491\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"513\"/>\n        <source>Saving EFI Boot Manager entries (%1)…</source>\n        <translation>Shranjevanje vnosov EFI Boot Managerja (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"467\"/>\n        <source>Removing old EFI Boot Manager entries (%1)…</source>\n        <translation>Odstranjevanje starih vnosov EFI Boot Managerja (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"404\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"501\"/>\n        <source>Removing EFI Boot Manager entries (%1)…</source>\n        <translation>Odstranjevanje vnosov EFI Boot Managerja (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"94\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"338\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"792\"/>\n        <source>Couldn&apos;t load EFI Boot Manager variables</source>\n        <translation type=\"unfinished\">Couldn&apos;t load EFI Boot Manager variables</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"100\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"799\"/>\n        <source>Couldn&apos;t find any EFI Boot Manager variables</source>\n        <translation type=\"unfinished\">Couldn&apos;t find any EFI Boot Manager variables</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"529\"/>\n        <source>Importing boot configuration…</source>\n        <translation>Uvažanje nastavitev zagona…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"565\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"770\"/>\n        <source>Exporting boot configuration…</source>\n        <translation>Izvažanje nastavitev zagona…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"587\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"809\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"875\"/>\n        <source>Exporting EFI Boot Manager entries (%1)…</source>\n        <translation>Izvažanje vnosov EFI Boot Managerja (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1013\"/>\n        <source>Importing boot configuration from JSON…</source>\n        <translation type=\"unfinished\">Importing boot configuration from JSON…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1032\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1366\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1477\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1531\"/>\n        <source>Importing EFI Boot Manager entries (%1)…</source>\n        <translation>Uvažanje vnosov EFI Boot Managerja (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1035\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1376\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>%1: %2 expected</source>\n        <translation>%1: %2 je pričakovano</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1043\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1048\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1053\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <source>number</source>\n        <translation>število</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1058\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1063\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1068\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1073\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1078\"/>\n        <source>bool</source>\n        <translation type=\"unfinished\">bool</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1109\"/>\n        <source>%1: unknown boot manager capability</source>\n        <translation type=\"unfinished\">%1: unknown boot manager capability</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1122\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1166\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1212\"/>\n        <source>array</source>\n        <translation type=\"unfinished\">array</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1333\"/>\n        <source>string</source>\n        <translation type=\"unfinished\">string</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1156\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1192\"/>\n        <source>%1: unknown os indication</source>\n        <translation type=\"unfinished\">%1: unknown os indication</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1083\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1235\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1264\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1290\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1309\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1328\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>object</source>\n        <translation type=\"unfinished\">object</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <source>hexadecimal number</source>\n        <translation type=\"unfinished\">hexadecimal number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1270\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1315\"/>\n        <source>%1: failed parsing</source>\n        <translation type=\"unfinished\">%1: failed parsing</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Failed to import some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation type=\"unfinished\">Failed to import some EFI Boot Manager entries:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1347\"/>\n        <source>Importing boot configuration from raw dump…</source>\n        <translation type=\"unfinished\">Importing boot configuration from raw dump…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1379\"/>\n        <source>object(raw_data: string, efi_attributes: number)</source>\n        <extracomment>Expected JSON structure, thrown as error description. raw_data and efi_attributes are field names in JSON file</extracomment>\n        <translation type=\"unfinished\">object(raw_data: string, efi_attributes: number)</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"15\"/>\n        <source>Boot</source>\n        <translation type=\"unfinished\">Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"16\"/>\n        <source>Driver</source>\n        <translation type=\"unfinished\">Driver</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"17\"/>\n        <source>System Preparation</source>\n        <translation type=\"unfinished\">System Preparation</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"18\"/>\n        <source>Platform Recovery</source>\n        <translation type=\"unfinished\">Platform Recovery</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditor</name>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"18\"/>\n        <source>EFI Boot Editor</source>\n        <translation type=\"unfinished\">EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"71\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"412\"/>\n        <source>Boot</source>\n        <translation type=\"unfinished\">Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"74\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"98\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"101\"/>\n        <source>Boot entries</source>\n        <translation type=\"unfinished\">Boot entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"77\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"104\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Boot entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Boot entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"133\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"415\"/>\n        <source>Driver</source>\n        <translation type=\"unfinished\">Driver</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"136\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"160\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"163\"/>\n        <source>Driver entries</source>\n        <translation type=\"unfinished\">Driver entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"139\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"166\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Driver entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Driver entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"195\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"418\"/>\n        <source>System Preparation</source>\n        <translation type=\"unfinished\">System Preparation</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"198\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"222\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"225\"/>\n        <source>SysPrep entries</source>\n        <translation type=\"unfinished\">SysPrep entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"201\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of SysPrep entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of SysPrep entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"257\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"421\"/>\n        <source>Platform Recovery</source>\n        <translation type=\"unfinished\">Platform Recovery</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"260\"/>\n        <source>PlatformRecovery entries</source>\n        <translation type=\"unfinished\">PlatformRecovery entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"263\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of PlatformRecovery entries (READONLY).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of PlatformRecovery entries (READONLY).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"284\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"287\"/>\n        <source>PlatformRecovery entries (READONLY)</source>\n        <translation type=\"unfinished\">PlatformRecovery entries (READONLY)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"346\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"349\"/>\n        <source>Add new entry</source>\n        <translation type=\"unfinished\">Add new entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"352\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to add new boot entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to add new boot entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"377\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"380\"/>\n        <source>Duplicate entry</source>\n        <translation type=\"unfinished\">Duplicate entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"383\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Duplicate entry&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Duplicate entry&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"408\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"411\"/>\n        <source>Remove entry</source>\n        <translation type=\"unfinished\">Remove entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"414\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to remove currently selected entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to remove currently selected entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"439\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"442\"/>\n        <source>Move entry up</source>\n        <translation type=\"unfinished\">Move entry up</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"445\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"470\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"473\"/>\n        <source>Move entry down</source>\n        <translation type=\"unfinished\">Move entry down</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"476\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"501\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"504\"/>\n        <source>Reorder entries</source>\n        <translation type=\"unfinished\">Reorder entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"507\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click here to adjust the order of all entries based on their position on the list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click here to adjust the order of all entries based on their position on the list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"599\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"608\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Global settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Global settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"602\"/>\n        <source>Global</source>\n        <translation type=\"unfinished\">Global</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"632\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"635\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"654\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"657\"/>\n        <source>Boot manager timeout</source>\n        <translation type=\"unfinished\">Boot manager timeout</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"638\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"660\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot manager timeout.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot manager timeout.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"663\"/>\n        <source>s</source>\n        <translation type=\"unfinished\">s</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"674\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"677\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"686\"/>\n        <source>Firmware details</source>\n        <translation type=\"unfinished\">Firmware details</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"680\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"689\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"683\"/>\n        <source>Firmware</source>\n        <translation type=\"unfinished\">Firmware</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"719\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"722\"/>\n        <source>Available firmware features</source>\n        <translation type=\"unfinished\">Available firmware features</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"725\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware features.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware features.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"728\"/>\n        <source>Features</source>\n        <translation type=\"unfinished\">Features</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"737\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"740\"/>\n        <source>Platform supports reporting of deferred capsule processing by creation of result variable</source>\n        <translation type=\"unfinished\">Platform supports reporting of deferred capsule processing by creation of result variable</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"743\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports reporting of deferred capsule processing by creation of result variable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports reporting of deferred capsule processing by creation of result variable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"746\"/>\n        <source>Capsule Reporting</source>\n        <translation type=\"unfinished\">Capsule Reporting</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"756\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"759\"/>\n        <source>Firmware supports timestamp based revocation</source>\n        <translation type=\"unfinished\">Firmware supports timestamp based revocation</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"762\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware supports timestamp based revocation.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware supports timestamp based revocation.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"765\"/>\n        <source>Timestamp based revocation</source>\n        <translation type=\"unfinished\">Timestamp based revocation</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"775\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"778\"/>\n        <source>Platform supports processing of Firmware Management Protocol update capsule</source>\n        <translation type=\"unfinished\">Platform supports processing of Firmware Management Protocol update capsule</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"781\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of Firmware Management Protocol update capsule.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of Firmware Management Protocol update capsule.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"784\"/>\n        <source>FMP Capsule</source>\n        <translation type=\"unfinished\">FMP Capsule</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"794\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"797\"/>\n        <source>Platform supports processing of file capsules</source>\n        <translation type=\"unfinished\">Platform supports processing of file capsules</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"800\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of file capsules.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of file capsules.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"803\"/>\n        <source>File Capsule</source>\n        <translation type=\"unfinished\">File Capsule</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"828\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"831\"/>\n        <source>Available firmware actions</source>\n        <translation type=\"unfinished\">Available firmware actions</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware actions.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware actions.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"837\"/>\n        <source>Actions</source>\n        <translation type=\"unfinished\">Actions</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"846\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"849\"/>\n        <source>Stop at a firmware user interface on the next boot</source>\n        <translation type=\"unfinished\">Stop at a firmware user interface on the next boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Stop at a firmware user interface on the next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Stop at a firmware user interface on the next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"855\"/>\n        <source>Boot to firmware UI</source>\n        <translation type=\"unfinished\">Boot to firmware UI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"862\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"865\"/>\n        <source>Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot</source>\n        <translation type=\"unfinished\">Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"871\"/>\n        <source>Collect current config</source>\n        <translation type=\"unfinished\">Collect current config</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"878\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"881\"/>\n        <source>Indicate that Platform-defined recovery should commence upon reboot</source>\n        <translation type=\"unfinished\">Indicate that Platform-defined recovery should commence upon reboot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"884\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that Platform-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that Platform-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"887\"/>\n        <source>Start Platform recovery</source>\n        <translation type=\"unfinished\">Start Platform recovery</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"894\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"897\"/>\n        <source>Indicate that OS-defined recovery should commence upon reboot</source>\n        <translation type=\"unfinished\">Indicate that OS-defined recovery should commence upon reboot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"900\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that OS-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that OS-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"903\"/>\n        <source>Start OS recovery</source>\n        <translation type=\"unfinished\">Start OS recovery</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"932\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"935\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"944\"/>\n        <source>Secure boot settings</source>\n        <translation type=\"unfinished\">Secure boot settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"938\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"947\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Secure boot settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Secure boot settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"941\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1025\"/>\n        <source>Secure Boot</source>\n        <translation type=\"unfinished\">Secure Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"978\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"981\"/>\n        <source>Defines whether the system is currently operating in Audit Mode</source>\n        <translation type=\"unfinished\">Defines whether the system is currently operating in Audit Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"984\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Audit Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Audit Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"987\"/>\n        <source>Audit Mode</source>\n        <translation type=\"unfinished\">Audit Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"997\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1000\"/>\n        <source>Defines whether the system is currently operating in Deployed Mode</source>\n        <translation type=\"unfinished\">Defines whether the system is currently operating in Deployed Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1003\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Deployed Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Deployed Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1006\"/>\n        <source>Deployed Mode</source>\n        <translation type=\"unfinished\">Deployed Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1016\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1019\"/>\n        <source>Defines whether the platform firmware is operating with Secure Boot enabled</source>\n        <translation type=\"unfinished\">Defines whether the platform firmware is operating with Secure Boot enabled</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1022\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the platform firmware is operating with Secure Boot enabled.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the platform firmware is operating with Secure Boot enabled.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1035\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1038\"/>\n        <source>Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables</source>\n        <translation type=\"unfinished\">Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1041\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1044\"/>\n        <source>Setup Mode</source>\n        <translation type=\"unfinished\">Setup Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1054\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1057\"/>\n        <source>Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys</source>\n        <translation type=\"unfinished\">Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1063\"/>\n        <source>Vendor Keys</source>\n        <translation type=\"unfinished\">Vendor Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1074\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1077\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1086\"/>\n        <source>Apple settings</source>\n        <translation type=\"unfinished\">Apple settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1080\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apple settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apple settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1083\"/>\n        <source>Apple</source>\n        <translation type=\"unfinished\">Apple</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1113\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1116\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1129\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1132\"/>\n        <source>macOS boot arguments</source>\n        <translation type=\"unfinished\">macOS boot arguments</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1119\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;macOS boot arguments.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;macOS boot arguments.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1161\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1164\"/>\n        <source>Undo stack</source>\n        <translation type=\"unfinished\">Undo stack</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1167\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo stack&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo stack&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1194\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1214\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Help menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Help menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1255\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Exit the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Exit the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1272\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apply changes to the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apply changes to the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1289\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reloads EFI data from the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reloads EFI data from the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1306\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Show information about the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Show information about the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1320\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Export current entries into JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Export current entries into JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1337\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Import EFI data from JSON dump.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Import EFI data from JSON dump.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1354\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dumps raw EFI data for debugging purposes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dumps raw EFI data for debugging purposes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1362\"/>\n        <source>&amp;Undo</source>\n        <translation type=\"unfinished\">&amp;Undo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1365\"/>\n        <source>Undo</source>\n        <translation type=\"unfinished\">Undo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1368\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1371\"/>\n        <source>Ctrl+Z</source>\n        <translation type=\"unfinished\">Ctrl+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1379\"/>\n        <source>&amp;Redo</source>\n        <translation type=\"unfinished\">&amp;Redo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1382\"/>\n        <source>Redo</source>\n        <translation type=\"unfinished\">Redo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1385\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Redo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Redo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1388\"/>\n        <source>Ctrl+Shift+Z</source>\n        <translation type=\"unfinished\">Ctrl+Shift+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1396\"/>\n        <source>Hot &amp;keys</source>\n        <translation type=\"unfinished\">Hot &amp;keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1399\"/>\n        <source>Hot Keys</source>\n        <translation type=\"unfinished\">Hot Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1402\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"593\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"596\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"605\"/>\n        <source>Global settings</source>\n        <translation type=\"unfinished\">Global settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"641\"/>\n        <source>Timeout</source>\n        <translation type=\"unfinished\">Timeout</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1122\"/>\n        <source>Boot args</source>\n        <translation type=\"unfinished\">Boot args</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1188\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1191\"/>\n        <source>File</source>\n        <translation type=\"unfinished\">File</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1197\"/>\n        <source>&amp;File</source>\n        <translation type=\"unfinished\">&amp;File</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1208\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1211\"/>\n        <source>Help</source>\n        <translation type=\"unfinished\">Help</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1217\"/>\n        <source>&amp;Help</source>\n        <translation type=\"unfinished\">&amp;Help</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1225\"/>\n        <source>&amp;Edit</source>\n        <translation type=\"unfinished\">&amp;Edit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1249\"/>\n        <source>&amp;Quit</source>\n        <translation type=\"unfinished\">&amp;Quit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1252\"/>\n        <source>Quit</source>\n        <translation type=\"unfinished\">Quit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1258\"/>\n        <source>Ctrl+Q</source>\n        <translation type=\"unfinished\">Ctrl+Q</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1266\"/>\n        <source>&amp;Save</source>\n        <translation type=\"unfinished\">&amp;Save</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1269\"/>\n        <source>Save</source>\n        <translation type=\"unfinished\">Save</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1275\"/>\n        <source>Ctrl+S</source>\n        <translation type=\"unfinished\">Ctrl+S</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1283\"/>\n        <source>&amp;Reload</source>\n        <translation type=\"unfinished\">&amp;Reload</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1286\"/>\n        <source>Reload</source>\n        <translation type=\"unfinished\">Reload</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1292\"/>\n        <source>Ctrl+R</source>\n        <translation type=\"unfinished\">Ctrl+R</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1300\"/>\n        <source>About &amp;EFI Boot Editor</source>\n        <translation type=\"unfinished\">About &amp;EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1303\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"29\"/>\n        <source>About EFI Boot Editor</source>\n        <translation type=\"unfinished\">About EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1314\"/>\n        <source>&amp;Export</source>\n        <translation type=\"unfinished\">&amp;Export</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1317\"/>\n        <source>Export</source>\n        <translation type=\"unfinished\">Export</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1323\"/>\n        <source>Ctrl+E</source>\n        <translation type=\"unfinished\">Ctrl+E</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1331\"/>\n        <source>&amp;Import</source>\n        <translation type=\"unfinished\">&amp;Import</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1334\"/>\n        <source>Import</source>\n        <translation type=\"unfinished\">Import</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1340\"/>\n        <source>Ctrl+I</source>\n        <translation type=\"unfinished\">Ctrl+I</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1348\"/>\n        <source>&amp;Dump raw EFI data</source>\n        <translation type=\"unfinished\">&amp;Dump raw EFI data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1351\"/>\n        <source>Dump raw EFI data</source>\n        <translation type=\"unfinished\">Dump raw EFI data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"26\"/>\n        <source>Working…</source>\n        <translation type=\"unfinished\">Working…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"92\"/>\n        <source>Undo %1</source>\n        <translation type=\"unfinished\">Undo %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"95\"/>\n        <source>Redo %1</source>\n        <translation type=\"unfinished\">Redo %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"137\"/>\n        <source>Are you sure you want to reload the entries?&lt;br/&gt;ALL of your changes will be lost!</source>\n        <translation type=\"unfinished\">Are you sure you want to reload the entries?&lt;br/&gt;ALL of your changes will be lost!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"162\"/>\n        <source>Are you sure you want to reorder the boot entries?&lt;br/&gt;All indexes will be overwritten!</source>\n        <translation type=\"unfinished\">Are you sure you want to reorder the boot entries?&lt;br/&gt;All indexes will be overwritten!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"221\"/>\n        <source>Are you sure you want to save?&lt;br/&gt;Your EFI configuration will be overwritten!</source>\n        <translation type=\"unfinished\">Are you sure you want to save?&lt;br/&gt;Your EFI configuration will be overwritten!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <source>Open boot configuration dump</source>\n        <translation type=\"unfinished\">Open boot configuration dump</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>JSON documents (*.json)</source>\n        <translation type=\"unfinished\">JSON documents (*.json)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <source>Save boot configuration dump</source>\n        <translation type=\"unfinished\">Save boot configuration dump</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>Save raw EFI dump</source>\n        <translation type=\"unfinished\">Save raw EFI dump</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"31\"/>\n        <source>&lt;h1&gt;EFI Boot Editor&lt;/h1&gt;&lt;p&gt;Version &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Boot Editor for (U)EFI based systems.&lt;/p&gt;</source>\n        <extracomment>About dialog</extracomment>\n        <translation type=\"unfinished\">&lt;h1&gt;EFI Boot Editor&lt;/h1&gt;&lt;p&gt;Version &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Boot Editor for (U)EFI based systems.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"45\"/>\n        <source>&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;Website&lt;/a&gt;&lt;/p&gt;&lt;p&gt;The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.&lt;/p&gt;&lt;p&gt;License: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL Version 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;On Linux uses &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; for EFI variables access.&lt;/p&gt;&lt;p&gt;Uses Tango Icons as fallback icons.&lt;/p&gt;</source>\n        <extracomment>About dialog details</extracomment>\n        <translation type=\"unfinished\">&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;Website&lt;/a&gt;&lt;/p&gt;&lt;p&gt;The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.&lt;/p&gt;&lt;p&gt;License: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL Version 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;On Linux uses &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; for EFI variables access.&lt;/p&gt;&lt;p&gt;Uses Tango Icons as fallback icons.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"330\"/>\n        <source>Reorder %1 entries</source>\n        <translation type=\"unfinished\">Reorder %1 entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"453\"/>\n        <source>Are you sure you want to quit?</source>\n        <translation type=\"unfinished\">Are you sure you want to quit?</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"123\"/>\n        <source>EFI support required</source>\n        <translation type=\"unfinished\">EFI support required</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditorCLI</name>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"13\"/>\n        <source>Boot Editor for (U)EFI based systems.</source>\n        <translation type=\"unfinished\">Boot Editor for (U)EFI based systems.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <source>Export configuration.</source>\n        <translation type=\"unfinished\">Export configuration.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>FILE</source>\n        <translation type=\"unfinished\">FILE</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <source>Dump raw EFI data.</source>\n        <translation type=\"unfinished\">Dump raw EFI data.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>Import configuration from JSON (either from export or raw dump).</source>\n        <translation type=\"unfinished\">Import configuration from JSON (either from export or raw dump).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"19\"/>\n        <source>Force import, don&apos;t ask for confirmation.</source>\n        <translation type=\"unfinished\">Force import, don&apos;t ask for confirmation.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"26\"/>\n        <source>EFI support required</source>\n        <translation type=\"unfinished\">EFI support required</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"45\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Nalaganje vnosov EFI Boot Managerja…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"47\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"57\"/>\n        <source>Exporting boot configuration…</source>\n        <translation type=\"unfinished\">Izvažanje nastavitev zagona…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"67\"/>\n        <source>Importing boot configuration…</source>\n        <translation type=\"unfinished\">Uvažanje nastavitev zagona…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Loaded %0 %1 entries</source>\n        <translation type=\"unfinished\">Loaded %0 %1 entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <source>Boot</source>\n        <translation type=\"unfinished\">Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <source>Driver</source>\n        <translation type=\"unfinished\">Driver</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <source>System Preparation</source>\n        <translation type=\"unfinished\">System Preparation</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Hot Key</source>\n        <translation type=\"unfinished\">Hot Key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"78\"/>\n        <source>Are you sure you want to save?\nYour EFI configuration will be overwritten!</source>\n        <translation type=\"unfinished\">Are you sure you want to save?\nYour EFI configuration will be overwritten!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"86\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Shranjevanje vnosov EFI Boot Managerja…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"98\"/>\n        <source>ERROR: %0! %1</source>\n        <translation type=\"unfinished\">ERROR: %0! %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"114\"/>\n        <source>Finished</source>\n        <translation type=\"unfinished\">Finished</translation>\n    </message>\n</context>\n<context>\n    <name>EFIKeySequenceEdit</name>\n    <message>\n        <location filename=\"../src/efikeysequenceedit.cpp\" line=\"109\"/>\n        <source>Press hot key</source>\n        <translation type=\"unfinished\">Press hot key</translation>\n    </message>\n</context>\n<context>\n    <name>FilePathDialog</name>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"12\"/>\n        <source>File path editor</source>\n        <translation type=\"unfinished\">File path editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"47\"/>\n        <source>PCI</source>\n        <translation type=\"unfinished\">PCI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"80\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"86\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"196\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"202\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"218\"/>\n        <source>Function</source>\n        <translation type=\"unfinished\">Function</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"121\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"127\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"143\"/>\n        <source>Device</source>\n        <translation type=\"unfinished\">Device</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"721\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"727\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"742\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"835\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"841\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"856\"/>\n        <source>HID</source>\n        <translation type=\"unfinished\">HID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"761\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"767\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"782\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"896\"/>\n        <source>UID</source>\n        <translation type=\"unfinished\">UID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1813\"/>\n        <source>USB</source>\n        <translation type=\"unfinished\">USB</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1819\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1893\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1909\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3688\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3710\"/>\n        <source>Interface</source>\n        <translation type=\"unfinished\">Interface</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7442\"/>\n        <source>Vendor</source>\n        <translation type=\"unfinished\">Vendor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7445\"/>\n        <source>Vendor settings</source>\n        <translation type=\"unfinished\">Vendor settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7448\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1778\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1793\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5824\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6348\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7117\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7546\"/>\n        <source>GUID</source>\n        <translation type=\"unfinished\">GUID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5539\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7587\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7850\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7853\"/>\n        <source>Data format</source>\n        <translation type=\"unfinished\">Data format</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5542\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7590\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7856\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5546\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5869\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7860\"/>\n        <source>BASE64</source>\n        <translation type=\"unfinished\">BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1168\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5551\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5874\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7865\"/>\n        <source>UTF-16</source>\n        <translation type=\"unfinished\">UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1173\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5556\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7604\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7870\"/>\n        <source>UTF-8</source>\n        <translation type=\"unfinished\">UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5561\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7875\"/>\n        <source>HEX</source>\n        <translation type=\"unfinished\">HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5523\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5901\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7888\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7891\"/>\n        <source>Data</source>\n        <translation type=\"unfinished\">Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7894\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7565\"/>\n        <source>Vendor data</source>\n        <translation type=\"unfinished\">Vendor data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7481\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7757\"/>\n        <source>Type</source>\n        <translation type=\"unfinished\">Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7478\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7500\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7504\"/>\n        <source>HW</source>\n        <translation type=\"unfinished\">HW</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7509\"/>\n        <source>MSG</source>\n        <translation type=\"unfinished\">MSG</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7514\"/>\n        <source>MEDIA</source>\n        <translation type=\"unfinished\">MEDIA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2292\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2298\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2313\"/>\n        <source>MAC</source>\n        <translation type=\"unfinished\">MAC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2265\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;MAC settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;MAC settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2374\"/>\n        <source>IPv4</source>\n        <translation type=\"unfinished\">IPv4</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2380\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv4 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv4 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2569\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2591\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2925\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2931\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2947\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4110\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4116\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4132\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6616\"/>\n        <source>Protocol</source>\n        <translation type=\"unfinished\">Protocol</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3003\"/>\n        <source>Static</source>\n        <translation type=\"unfinished\">Static</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2692\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Subnet mask.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Subnet mask.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2730\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5479\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5486\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5503\"/>\n        <source>IPv6</source>\n        <translation type=\"unfinished\">IPv6</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2736\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv6 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv6 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3008\"/>\n        <source>Stateless auto-configuration</source>\n        <translation type=\"unfinished\">Stateless auto-configuration</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3013\"/>\n        <source>Stateful auto-configuration</source>\n        <translation type=\"unfinished\">Stateful auto-configuration</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3920\"/>\n        <source>SATA</source>\n        <translation type=\"unfinished\">SATA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SATA settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SATA settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1387\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1393\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1409\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1658\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1664\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1679\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3900\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4035\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4041\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4057\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4191\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4197\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4212\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4496\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4502\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4610\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4616\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4988\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5009\"/>\n        <source>LUN</source>\n        <translation type=\"unfinished\">LUN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4885\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4901\"/>\n        <source>URI</source>\n        <translation type=\"unfinished\">URI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6105\"/>\n        <source>Disk</source>\n        <translation type=\"unfinished\">Disk</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6102\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6123\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6126\"/>\n        <source>Choose disk</source>\n        <translation type=\"unfinished\">Choose disk</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6129\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Choose disk from discovered in the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Choose disk from discovered in the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6133\"/>\n        <source>Custom</source>\n        <translation type=\"unfinished\">Custom</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6147\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6150\"/>\n        <source>Reload drives</source>\n        <translation type=\"unfinished\">Reload drives</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reload system drives list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reload system drives list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6343\"/>\n        <source>MBR</source>\n        <translation type=\"unfinished\">MBR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6177\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6183\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6199\"/>\n        <source>Partition</source>\n        <translation type=\"unfinished\">Partition</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6720\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6741\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6797\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6812\"/>\n        <source>Name</source>\n        <translation type=\"unfinished\">Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7176\"/>\n        <source>BIOS Boot Specification</source>\n        <translation type=\"unfinished\">BIOS Boot Specification</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7405\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7411\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7427\"/>\n        <source>Description</source>\n        <translation type=\"unfinished\">Description</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7639\"/>\n        <source>End</source>\n        <translation type=\"unfinished\">End</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7669\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7672\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7678\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7797\"/>\n        <source>Sub-Type</source>\n        <translation type=\"unfinished\">Sub-Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7675\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7697\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7701\"/>\n        <source>End This Instance</source>\n        <translation type=\"unfinished\">End This Instance</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7706\"/>\n        <source>End Entire</source>\n        <translation type=\"unfinished\">End Entire</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7718\"/>\n        <source>Unknown</source>\n        <translation type=\"unfinished\">Unknown</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"50\"/>\n        <source>The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.</source>\n        <translation type=\"unfinished\">The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"53\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"77\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"99\"/>\n        <source>PCI Function Number.</source>\n        <translation type=\"unfinished\">PCI Function Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"83\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"105\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Function Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Function Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"118\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"140\"/>\n        <source>PCI Device Number.</source>\n        <translation type=\"unfinished\">PCI Device Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"124\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Device Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Device Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"163\"/>\n        <source>PCCARD</source>\n        <translation type=\"unfinished\">PCCARD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"166\"/>\n        <source>PCCARD Settings.</source>\n        <translation type=\"unfinished\">PCCARD Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCCARD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCCARD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"193\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"215\"/>\n        <source>Function Number (0 = First Function).</source>\n        <translation type=\"unfinished\">Function Number (0 = First Function).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"199\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"221\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Function Number (0 = First Function).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Function Number (0 = First Function).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"238\"/>\n        <source>Memory Mapped</source>\n        <translation type=\"unfinished\">Memory Mapped</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"241\"/>\n        <source>Memory Mapped Settings.</source>\n        <translation type=\"unfinished\">Memory Mapped Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Memory Mapped Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Memory Mapped Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"268\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"290\"/>\n        <source>The type of memory to allocate.</source>\n        <translation type=\"unfinished\">The type of memory to allocate.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"271\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"293\"/>\n        <source>Memory Type</source>\n        <translation type=\"unfinished\">Memory Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"274\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"296\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The type of memory to allocate.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The type of memory to allocate.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"300\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1584\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1738\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1753\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3145\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3160\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4416\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4437\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6868\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6883\"/>\n        <source>Reserved</source>\n        <translation type=\"unfinished\">Reserved</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"305\"/>\n        <source>Loader Code</source>\n        <translation type=\"unfinished\">Loader Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"310\"/>\n        <source>Loader Data</source>\n        <translation type=\"unfinished\">Loader Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"315\"/>\n        <source>Boot Services Code</source>\n        <translation type=\"unfinished\">Boot Services Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"320\"/>\n        <source>Boot Services Data</source>\n        <translation type=\"unfinished\">Boot Services Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"325\"/>\n        <source>Runtime Services Code</source>\n        <translation type=\"unfinished\">Runtime Services Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"330\"/>\n        <source>Runtime Services Data</source>\n        <translation type=\"unfinished\">Runtime Services Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"335\"/>\n        <source>Conventional</source>\n        <translation type=\"unfinished\">Conventional</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"340\"/>\n        <source>Unusable</source>\n        <translation type=\"unfinished\">Unusable</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"345\"/>\n        <source>ACPI Reclaim</source>\n        <translation type=\"unfinished\">ACPI Reclaim</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"350\"/>\n        <source>ACPI Memory NVS</source>\n        <translation type=\"unfinished\">ACPI Memory NVS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"355\"/>\n        <source>Memory Mapped IO</source>\n        <translation type=\"unfinished\">Memory Mapped IO</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"360\"/>\n        <source>Memory Mapped IO Port Space</source>\n        <translation type=\"unfinished\">Memory Mapped IO Port Space</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"365\"/>\n        <source>Pal Code</source>\n        <translation type=\"unfinished\">Pal Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"370\"/>\n        <source>Persistent</source>\n        <translation type=\"unfinished\">Persistent</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"375\"/>\n        <source>Unaccepted</source>\n        <translation type=\"unfinished\">Unaccepted</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"383\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7013\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7034\"/>\n        <source>Starting Memory Address.</source>\n        <translation type=\"unfinished\">Starting Memory Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"386\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"407\"/>\n        <source>Start Address</source>\n        <translation type=\"unfinished\">Start Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"389\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7019\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7040\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"423\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7053\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7074\"/>\n        <source>Ending Memory Address.</source>\n        <translation type=\"unfinished\">Ending Memory Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"426\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"432\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"447\"/>\n        <source>End Address</source>\n        <translation type=\"unfinished\">End Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"429\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7080\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ending Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ending Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"467\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"522\"/>\n        <source>Controller</source>\n        <translation type=\"unfinished\">Controller</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"470\"/>\n        <source>Controller settings.</source>\n        <translation type=\"unfinished\">Controller settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"473\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"519\"/>\n        <source>Controller number.</source>\n        <translation type=\"unfinished\">Controller number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"525\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"542\"/>\n        <source>BMC</source>\n        <translation type=\"unfinished\">BMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"545\"/>\n        <source>The Device Path for a Baseboard Management Controller (BMC) host interface.</source>\n        <translation type=\"unfinished\">The Device Path for a Baseboard Management Controller (BMC) host interface.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"548\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for a Baseboard Management Controller (BMC) host interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for a Baseboard Management Controller (BMC) host interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"602\"/>\n        <source>The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.</source>\n        <translation type=\"unfinished\">The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"579\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"589\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2332\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2354\"/>\n        <source>Interface Type</source>\n        <translation type=\"unfinished\">Interface Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"582\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"612\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"625\"/>\n        <source>Keyboard Controller Style</source>\n        <translation type=\"unfinished\">Keyboard Controller Style</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"630\"/>\n        <source>Server Management Interface Chip</source>\n        <translation type=\"unfinished\">Server Management Interface Chip</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"635\"/>\n        <source>Block Transfer</source>\n        <translation type=\"unfinished\">Block Transfer</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"643\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"664\"/>\n        <source>Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.</source>\n        <translation type=\"unfinished\">Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"667\"/>\n        <source>Base Address</source>\n        <translation type=\"unfinished\">Base Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"670\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"688\"/>\n        <source>ACPI</source>\n        <translation type=\"unfinished\">ACPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"805\"/>\n        <source>This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.</source>\n        <translation type=\"unfinished\">This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"808\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"718\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"739\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"832\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"853\"/>\n        <source>Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.</source>\n        <translation type=\"unfinished\">Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"724\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"745\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"838\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"859\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"779\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"872\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"893\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.</source>\n        <translation type=\"unfinished\">Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"764\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"785\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"899\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"802\"/>\n        <source>Expanded</source>\n        <translation type=\"unfinished\">Expanded</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"912\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"933\"/>\n        <source>Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.</source>\n        <translation type=\"unfinished\">Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"915\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"921\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"936\"/>\n        <source>CID</source>\n        <translation type=\"unfinished\">CID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"918\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"939\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"952\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"974\"/>\n        <source>Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.</source>\n        <translation type=\"unfinished\">Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"955\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"961\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"977\"/>\n        <source>HIDSTR</source>\n        <translation type=\"unfinished\">HIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"958\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"980\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"987\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1009\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.</source>\n        <translation type=\"unfinished\">Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"990\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"996\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1012\"/>\n        <source>UIDSTR</source>\n        <translation type=\"unfinished\">UIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"993\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1015\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1044\"/>\n        <source>Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.</source>\n        <translation type=\"unfinished\">Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1025\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1031\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1047\"/>\n        <source>CIDSTR</source>\n        <translation type=\"unfinished\">CIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1028\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1050\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1061\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1094\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1100\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1115\"/>\n        <source>ADR</source>\n        <translation type=\"unfinished\">ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1064\"/>\n        <source>The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.</source>\n        <translation type=\"unfinished\">The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1067\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1091\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1112\"/>\n        <source>ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required</source>\n        <translation type=\"unfinished\">ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1097\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1118\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1131\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1192\"/>\n        <source>This device path may optionally contain more than one ADR entry.</source>\n        <translation type=\"unfinished\">This device path may optionally contain more than one ADR entry.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1195\"/>\n        <source>Additional ADR</source>\n        <translation type=\"unfinished\">Additional ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1198\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path may optionally contain more than one ADR entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path may optionally contain more than one ADR entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1153\"/>\n        <source>Additional ADR format.</source>\n        <translation type=\"unfinished\">Additional ADR format.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1156\"/>\n        <source>Additional ADR format</source>\n        <translation type=\"unfinished\">Additional ADR format</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1159\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Additional ADR format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Additional ADR format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1209\"/>\n        <source>NVDIMM</source>\n        <translation type=\"unfinished\">NVDIMM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1212\"/>\n        <source>This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.</source>\n        <translation type=\"unfinished\">This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1260\"/>\n        <source>NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.</source>\n        <translation type=\"unfinished\">NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1242\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1248\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1263\"/>\n        <source>NFIT Device Handle</source>\n        <translation type=\"unfinished\">NFIT Device Handle</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1245\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1284\"/>\n        <source>ATAPI</source>\n        <translation type=\"unfinished\">ATAPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1287\"/>\n        <source>ATAPI Settings.</source>\n        <translation type=\"unfinished\">ATAPI Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1336\"/>\n        <source>Set to zero for primary or one for secondary.</source>\n        <translation type=\"unfinished\">Set to zero for primary or one for secondary.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1317\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1323\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1339\"/>\n        <source>Primary</source>\n        <translation type=\"unfinished\">Primary</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1320\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1342\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for primary or one for secondary.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for primary or one for secondary.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1349\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1371\"/>\n        <source>Set to zero for master or one for slave mode.</source>\n        <translation type=\"unfinished\">Set to zero for master or one for slave mode.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1374\"/>\n        <source>Slave</source>\n        <translation type=\"unfinished\">Slave</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1377\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for master or one for slave mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for master or one for slave mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1384\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1406\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4054\"/>\n        <source>Logical Unit Number.</source>\n        <translation type=\"unfinished\">Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1390\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1412\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4038\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1429\"/>\n        <source>SCSI</source>\n        <translation type=\"unfinished\">SCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1432\"/>\n        <source>SCSI Settings.</source>\n        <translation type=\"unfinished\">SCSI Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1435\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1481\"/>\n        <source>Target ID on the SCSI bus (PUN).</source>\n        <translation type=\"unfinished\">Target ID on the SCSI bus (PUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1962\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1984\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4969\"/>\n        <source>Target ID</source>\n        <translation type=\"unfinished\">Target ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1465\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1487\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the SCSI bus (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the SCSI bus (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4985\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5006\"/>\n        <source>Logical Unit Number (LUN).</source>\n        <translation type=\"unfinished\">Logical Unit Number (LUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5012\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1545\"/>\n        <source>Fibre Channel</source>\n        <translation type=\"unfinished\">Fibre Channel</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1548\"/>\n        <source>Fibre Channel Settings</source>\n        <translation type=\"unfinished\">Fibre Channel Settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1551\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1596\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1750\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4434\"/>\n        <source>Reserved.</source>\n        <translation type=\"unfinished\">Reserved.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1581\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1602\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1756\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3142\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4419\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1615\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1636\"/>\n        <source>Fibre Channel World Wide Name.</source>\n        <translation type=\"unfinished\">Fibre Channel World Wide Name.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1624\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1639\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4456\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4477\"/>\n        <source>World Wide Name</source>\n        <translation type=\"unfinished\">World Wide Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1621\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1642\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel World Wide Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel World Wide Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1676\"/>\n        <source>Fibre Channel Logical Unit Number.</source>\n        <translation type=\"unfinished\">Fibre Channel Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1661\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1682\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1699\"/>\n        <source>Firewire</source>\n        <translation type=\"unfinished\">Firewire</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1702\"/>\n        <source>Firewire Settings.</source>\n        <translation type=\"unfinished\">Firewire Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1705\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firewire Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firewire Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1790\"/>\n        <source>1394 Global Unique ID (GUID)</source>\n        <translation type=\"unfinished\">1394 Global Unique ID (GUID)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1796\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 Global Unique ID (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 Global Unique ID (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1816\"/>\n        <source>USB settings.</source>\n        <translation type=\"unfinished\">USB settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1865\"/>\n        <source>USB Parent Port Number.</source>\n        <translation type=\"unfinished\">USB Parent Port Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1852\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1868\"/>\n        <source>Parent Port</source>\n        <translation type=\"unfinished\">Parent Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1871\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Parent Port Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Parent Port Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1906\"/>\n        <source>USB Interface Number.</source>\n        <translation type=\"unfinished\">USB Interface Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1912\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1929\"/>\n        <source>I2O</source>\n        <translation type=\"unfinished\">I2O</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1932\"/>\n        <source>I2O Settings</source>\n        <translation type=\"unfinished\">I2O Settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1935\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;I2O Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;I2O Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1981\"/>\n        <source>Target ID (TID) for a device.</source>\n        <translation type=\"unfinished\">Target ID (TID) for a device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1965\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1987\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID (TID) for a device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID (TID) for a device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2004\"/>\n        <source>InfiniBand</source>\n        <translation type=\"unfinished\">InfiniBand</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2007\"/>\n        <source>InfiniBand Settings.</source>\n        <translation type=\"unfinished\">InfiniBand Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2010\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;InfiniBand Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;InfiniBand Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2034\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2067\"/>\n        <source>Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.</source>\n        <translation type=\"unfinished\">Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2043\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2055\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2076\"/>\n        <source>Resource Flags</source>\n        <translation type=\"unfinished\">Resource Flags</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2046\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2079\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2098\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2119\"/>\n        <source>128-bit Global Identifier for remote fabric port</source>\n        <translation type=\"unfinished\">128-bit Global Identifier for remote fabric port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2101\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2122\"/>\n        <source>PORT GID</source>\n        <translation type=\"unfinished\">PORT GID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2104\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2125\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;128-bit Global Identifier for remote fabric port&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;128-bit Global Identifier for remote fabric port&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2135\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2156\"/>\n        <source>64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)</source>\n        <translation type=\"unfinished\">64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2138\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2144\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2159\"/>\n        <source>IOC GUID/Service ID</source>\n        <translation type=\"unfinished\">IOC GUID/Service ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2141\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2162\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2175\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2196\"/>\n        <source>64-bit persistent ID of remote IOC port.</source>\n        <translation type=\"unfinished\">64-bit persistent ID of remote IOC port.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2184\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2199\"/>\n        <source>Target Port ID</source>\n        <translation type=\"unfinished\">Target Port ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2181\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote IOC port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote IOC port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2236\"/>\n        <source>64-bit persistent ID of remote device.</source>\n        <translation type=\"unfinished\">64-bit persistent ID of remote device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2239\"/>\n        <source>Device ID</source>\n        <translation type=\"unfinished\">Device ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2259\"/>\n        <source>MAC Address</source>\n        <translation type=\"unfinished\">MAC Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2262\"/>\n        <source>MAC settings.</source>\n        <translation type=\"unfinished\">MAC settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2289\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2310\"/>\n        <source>The MAC address for a network interface padded with 0s.</source>\n        <translation type=\"unfinished\">The MAC address for a network interface padded with 0s.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2295\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2316\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The MAC address for a network interface padded with 0s.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The MAC address for a network interface padded with 0s.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2329\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2351\"/>\n        <source>Network interface type (i.e., 802.3, FDDI). See RFC 3232.</source>\n        <translation type=\"unfinished\">Network interface type (i.e., 802.3, FDDI). See RFC 3232.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2357\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network interface type (i.e., 802.3, FDDI). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network interface type (i.e., 802.3, FDDI). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2377\"/>\n        <source>IPv4 settings.</source>\n        <translation type=\"unfinished\">IPv4 settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2425\"/>\n        <source>The local IPv4 address.</source>\n        <translation type=\"unfinished\">The local IPv4 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2407\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2763\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2784\"/>\n        <source>Local IP Address</source>\n        <translation type=\"unfinished\">Local IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2431\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2465\"/>\n        <source>The remote IPv4 address.</source>\n        <translation type=\"unfinished\">The remote IPv4 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2447\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2824\"/>\n        <source>Remote IP Address</source>\n        <translation type=\"unfinished\">Remote IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2471\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2862\"/>\n        <source>The local port number.</source>\n        <translation type=\"unfinished\">The local port number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2487\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2865\"/>\n        <source>Local Port</source>\n        <translation type=\"unfinished\">Local Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2490\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2547\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2903\"/>\n        <source>The remote port number.</source>\n        <translation type=\"unfinished\">The remote port number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2550\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2906\"/>\n        <source>Remote Port</source>\n        <translation type=\"unfinished\">Remote Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2553\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2909\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2566\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2588\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2922\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2944\"/>\n        <source>The network protocol (i.e., UDP, TCP). See RFC 3232.</source>\n        <translation type=\"unfinished\">The network protocol (i.e., UDP, TCP). See RFC 3232.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2928\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2950\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The network protocol (i.e., UDP, TCP). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The network protocol (i.e., UDP, TCP). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2631\"/>\n        <source>0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.</source>\n        <translation type=\"unfinished\">0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2635\"/>\n        <source>Static IP Address</source>\n        <translation type=\"unfinished\">Static IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2667\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3083\"/>\n        <source>The Gateway IP Address.</source>\n        <translation type=\"unfinished\">The Gateway IP Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3071\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3086\"/>\n        <source>Gateway IP Address</source>\n        <translation type=\"unfinished\">Gateway IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2673\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Gateway IP Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Gateway IP Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2686\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2707\"/>\n        <source>Subnet mask.</source>\n        <translation type=\"unfinished\">Subnet mask.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2689\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2695\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2710\"/>\n        <source>Subnet Mask</source>\n        <translation type=\"unfinished\">Subnet Mask</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2733\"/>\n        <source>IPv6 settings.</source>\n        <translation type=\"unfinished\">IPv6 settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2760\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2781\"/>\n        <source>The local IPv6 address.</source>\n        <translation type=\"unfinished\">The local IPv6 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2787\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2821\"/>\n        <source>The remote IPv6 address.</source>\n        <translation type=\"unfinished\">The remote IPv6 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2963\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2989\"/>\n        <source>0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.</source>\n        <translation type=\"unfinished\">0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2976\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2994\"/>\n        <source>IP Address Origin</source>\n        <translation type=\"unfinished\">IP Address Origin</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2971\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2997\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3021\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3043\"/>\n        <source>The Prefix Length.</source>\n        <translation type=\"unfinished\">The Prefix Length.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3024\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3030\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3046\"/>\n        <source>Prefix Length</source>\n        <translation type=\"unfinished\">Prefix Length</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3027\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3049\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Prefix Length.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Prefix Length.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3106\"/>\n        <source>UART</source>\n        <translation type=\"unfinished\">UART</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3109\"/>\n        <source>UART Settings.</source>\n        <translation type=\"unfinished\">UART Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3112\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3176\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3197\"/>\n        <source>The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.</source>\n        <translation type=\"unfinished\">The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3179\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3185\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3200\"/>\n        <source>Baud Rate</source>\n        <translation type=\"unfinished\">Baud Rate</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3182\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3203\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3216\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3238\"/>\n        <source>The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.</source>\n        <translation type=\"unfinished\">The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3219\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3225\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3241\"/>\n        <source>Data Bits</source>\n        <translation type=\"unfinished\">Data Bits</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3222\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3257\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3291\"/>\n        <source>The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.</source>\n        <translation type=\"unfinished\">The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3266\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3300\"/>\n        <source>Parity</source>\n        <translation type=\"unfinished\">Parity</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3303\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3313\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3394\"/>\n        <source>Default</source>\n        <translation type=\"unfinished\">Default</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3318\"/>\n        <source>No</source>\n        <translation type=\"unfinished\">No</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3323\"/>\n        <source>Even</source>\n        <translation type=\"unfinished\">Even</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3328\"/>\n        <source>Odd</source>\n        <translation type=\"unfinished\">Odd</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3333\"/>\n        <source>Mark</source>\n        <translation type=\"unfinished\">Mark</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3338\"/>\n        <source>Space</source>\n        <translation type=\"unfinished\">Space</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3346\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3376\"/>\n        <source>The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.</source>\n        <translation type=\"unfinished\">The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3353\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3363\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3383\"/>\n        <source>Stop Bits</source>\n        <translation type=\"unfinished\">Stop Bits</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3356\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3399\"/>\n        <source>1</source>\n        <translation type=\"unfinished\">1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3404\"/>\n        <source>1.5</source>\n        <translation type=\"unfinished\">1.5</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3409\"/>\n        <source>2</source>\n        <translation type=\"unfinished\">2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3421\"/>\n        <source>USB Class</source>\n        <translation type=\"unfinished\">USB Class</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3424\"/>\n        <source>USB Class Settings.</source>\n        <translation type=\"unfinished\">USB Class Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3427\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Class Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Class Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3451\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3472\"/>\n        <source>Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.</source>\n        <translation type=\"unfinished\">Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3454\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3460\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3475\"/>\n        <source>Vendor ID</source>\n        <translation type=\"unfinished\">Vendor ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3457\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3478\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3491\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3512\"/>\n        <source>Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.</source>\n        <translation type=\"unfinished\">Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3515\"/>\n        <source>Product ID</source>\n        <translation type=\"unfinished\">Product ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3518\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3552\"/>\n        <source>The class code assigned by the USB-IF. A value of 0xFF will match any class code.</source>\n        <translation type=\"unfinished\">The class code assigned by the USB-IF. A value of 0xFF will match any class code.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3540\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3555\"/>\n        <source>Device Class</source>\n        <translation type=\"unfinished\">Device Class</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3537\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3558\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The class code assigned by the USB-IF. A value of 0xFF will match any class code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The class code assigned by the USB-IF. A value of 0xFF will match any class code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3592\"/>\n        <source>The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.</source>\n        <translation type=\"unfinished\">The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3574\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3595\"/>\n        <source>Device Subclass</source>\n        <translation type=\"unfinished\">Device Subclass</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3632\"/>\n        <source>The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.</source>\n        <translation type=\"unfinished\">The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3635\"/>\n        <source>Device Protocol</source>\n        <translation type=\"unfinished\">Device Protocol</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3617\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3655\"/>\n        <source>USB WWID</source>\n        <translation type=\"unfinished\">USB WWID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3658\"/>\n        <source>This device path describes a USB device using its serial number.</source>\n        <translation type=\"unfinished\">This device path describes a USB device using its serial number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3661\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a USB device using its serial number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a USB device using its serial number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3685\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3707\"/>\n        <source>USB interface Number.</source>\n        <translation type=\"unfinished\">USB interface Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3747\"/>\n        <source>USB vendor id of the device.</source>\n        <translation type=\"unfinished\">USB vendor id of the device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3750\"/>\n        <source>Device Vendor Id</source>\n        <translation type=\"unfinished\">Device Vendor Id</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3753\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB vendor id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB vendor id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3787\"/>\n        <source>USB product id of the device.</source>\n        <translation type=\"unfinished\">USB product id of the device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3790\"/>\n        <source>Device Product Id</source>\n        <translation type=\"unfinished\">Device Product Id</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3793\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB product id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB product id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3828\"/>\n        <source>Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).</source>\n        <translation type=\"unfinished\">Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3815\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3831\"/>\n        <source>Serial Number</source>\n        <translation type=\"unfinished\">Serial Number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3812\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3845\"/>\n        <source>Device Logical Unit</source>\n        <translation type=\"unfinished\">Device Logical Unit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3848\"/>\n        <source>Device Logical Unit Settings.</source>\n        <translation type=\"unfinished\">Device Logical Unit Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3851\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device Logical Unit Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device Logical Unit Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3897\"/>\n        <source>Logical Unit Number for the interface.</source>\n        <translation type=\"unfinished\">Logical Unit Number for the interface.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3903\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number for the interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number for the interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3923\"/>\n        <source>SATA settings.</source>\n        <translation type=\"unfinished\">SATA settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3950\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3972\"/>\n        <source>The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.</source>\n        <translation type=\"unfinished\">The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3953\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3975\"/>\n        <source>HBA Port</source>\n        <translation type=\"unfinished\">HBA Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3956\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3978\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4013\"/>\n        <source>The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.</source>\n        <translation type=\"unfinished\">The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4000\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4016\"/>\n        <source>Port Multiplier Port</source>\n        <translation type=\"unfinished\">Port Multiplier Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3997\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4019\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4077\"/>\n        <source>iSCSI</source>\n        <translation type=\"unfinished\">iSCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4080\"/>\n        <source>iSCSI Settings.</source>\n        <translation type=\"unfinished\">iSCSI Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4083\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4129\"/>\n        <source>Network Protocol (0 = TCP, 1+ = reserved).</source>\n        <translation type=\"unfinished\">Network Protocol (0 = TCP, 1+ = reserved).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4113\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network Protocol (0 = TCP, 1+ = reserved).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network Protocol (0 = TCP, 1+ = reserved).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4148\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4169\"/>\n        <source>iSCSI Login Options.</source>\n        <translation type=\"unfinished\">iSCSI Login Options.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4151\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4172\"/>\n        <source>Options</source>\n        <translation type=\"unfinished\">Options</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4154\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4175\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Login Options.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Login Options.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4188\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4209\"/>\n        <source>8 byte array containing the iSCSI Logical Unit Number.</source>\n        <translation type=\"unfinished\">8 byte array containing the iSCSI Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4194\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing the iSCSI Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing the iSCSI Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4228\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4250\"/>\n        <source>iSCSI Target Portal group tag the initiator intends to establish a session with.</source>\n        <translation type=\"unfinished\">iSCSI Target Portal group tag the initiator intends to establish a session with.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4231\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4253\"/>\n        <source>Target Portal Group</source>\n        <translation type=\"unfinished\">Target Portal Group</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4234\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4256\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Target Portal group tag the initiator intends to establish a session with.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Target Portal group tag the initiator intends to establish a session with.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4291\"/>\n        <source>iSCSI NodeTarget Name.</source>\n        <translation type=\"unfinished\">iSCSI NodeTarget Name.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4272\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4294\"/>\n        <source>Target Name</source>\n        <translation type=\"unfinished\">Target Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4275\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4297\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI NodeTarget Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI NodeTarget Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4308\"/>\n        <source>VLAN</source>\n        <translation type=\"unfinished\">VLAN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4311\"/>\n        <source>VLAN Settings.</source>\n        <translation type=\"unfinished\">VLAN Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4314\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4360\"/>\n        <source>VLAN identifier (0-4094).</source>\n        <translation type=\"unfinished\">VLAN identifier (0-4094).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4341\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4347\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4363\"/>\n        <source>Vlan ID</source>\n        <translation type=\"unfinished\">Vlan ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4344\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4366\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN identifier (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN identifier (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4383\"/>\n        <source>Fibre Channel Ex</source>\n        <translation type=\"unfinished\">Fibre Channel Ex</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4386\"/>\n        <source>The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation type=\"unfinished\">The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4389\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4474\"/>\n        <source>8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).</source>\n        <translation type=\"unfinished\">8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4480\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4514\"/>\n        <source>8 byte array containing Fibre Channel Logical Unit Number.</source>\n        <translation type=\"unfinished\">8 byte array containing Fibre Channel Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4499\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4520\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4537\"/>\n        <source>SAS Extended Messaging</source>\n        <translation type=\"unfinished\">SAS Extended Messaging</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4540\"/>\n        <source>The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation type=\"unfinished\">The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4543\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4567\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4588\"/>\n        <source>8-byte array of the SAS Address for Serial Attached SCSI Target Port.</source>\n        <translation type=\"unfinished\">8-byte array of the SAS Address for Serial Attached SCSI Target Port.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4570\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4576\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4591\"/>\n        <source>SAS Address</source>\n        <translation type=\"unfinished\">SAS Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4573\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4594\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Address for Serial Attached SCSI Target Port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Address for Serial Attached SCSI Target Port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4628\"/>\n        <source>8-byte array of the SAS Logical Unit Number.</source>\n        <translation type=\"unfinished\">8-byte array of the SAS Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4613\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4634\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4647\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4668\"/>\n        <source>More Information about the device and its interconnect.</source>\n        <translation type=\"unfinished\">More Information about the device and its interconnect.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4650\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4656\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4671\"/>\n        <source>Device and Topology Info</source>\n        <translation type=\"unfinished\">Device and Topology Info</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4653\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4674\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;More Information about the device and its interconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;More Information about the device and its interconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4687\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4709\"/>\n        <source>Relative Target Port (RTP).</source>\n        <translation type=\"unfinished\">Relative Target Port (RTP).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4690\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4696\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4712\"/>\n        <source>Relative Target Port</source>\n        <translation type=\"unfinished\">Relative Target Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4715\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Relative Target Port (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Relative Target Port (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4732\"/>\n        <source>NVM Express NS</source>\n        <translation type=\"unfinished\">NVM Express NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4735\"/>\n        <source>NVM Express Namespace Settings.</source>\n        <translation type=\"unfinished\">NVM Express Namespace Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4738\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM Express Namespace Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM Express Namespace Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4783\"/>\n        <source>Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.</source>\n        <translation type=\"unfinished\">Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4765\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4771\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4786\"/>\n        <source>NSID</source>\n        <translation type=\"unfinished\">NSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4768\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4789\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4802\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4823\"/>\n        <source>This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.</source>\n        <translation type=\"unfinished\">This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4805\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4811\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4826\"/>\n        <source>EUI-64</source>\n        <translation type=\"unfinished\">EUI-64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4808\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4829\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4849\"/>\n        <source>Refer to RFC 3986 for details on the URI contents.</source>\n        <translation type=\"unfinished\">Refer to RFC 3986 for details on the URI contents.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Refer to RFC 3986 for details on the URI contents.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Refer to RFC 3986 for details on the URI contents.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4876\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4898\"/>\n        <source>Instance of the URI pursuant to RFC 3986.</source>\n        <translation type=\"unfinished\">Instance of the URI pursuant to RFC 3986.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4882\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Instance of the URI pursuant to RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Instance of the URI pursuant to RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4915\"/>\n        <source>UFS</source>\n        <translation type=\"unfinished\">UFS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4918\"/>\n        <source>UFS Settings.</source>\n        <translation type=\"unfinished\">UFS Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4966\"/>\n        <source>Target ID on the UFS interface (PUN).</source>\n        <translation type=\"unfinished\">Target ID on the UFS interface (PUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4972\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the UFS interface (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the UFS interface (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5029\"/>\n        <source>SD</source>\n        <translation type=\"unfinished\">SD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5032\"/>\n        <source>SD Settings.</source>\n        <translation type=\"unfinished\">SD Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5035\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5081\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5299\"/>\n        <source>Slot Number</source>\n        <translation type=\"unfinished\">Slot Number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5084\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5280\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5286\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5302\"/>\n        <source>Slot</source>\n        <translation type=\"unfinished\">Slot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5087\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5283\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5305\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Slot Number&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Slot Number&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5104\"/>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\">Bluetooth</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5107\"/>\n        <source>EFI Bluetooth Settings.</source>\n        <translation type=\"unfinished\">EFI Bluetooth Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5110\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI Bluetooth Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI Bluetooth Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5155\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5373\"/>\n        <source>48-bit Bluetooth device address.</source>\n        <translation type=\"unfinished\">48-bit Bluetooth device address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5143\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5158\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5361\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5376\"/>\n        <source>Device Address</source>\n        <translation type=\"unfinished\">Device Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5161\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5379\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-bit Bluetooth device address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-bit Bluetooth device address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5178\"/>\n        <source>Wi-Fi</source>\n        <translation type=\"unfinished\">Wi-Fi</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5181\"/>\n        <source>Wi-Fi Settings.</source>\n        <translation type=\"unfinished\">Wi-Fi Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5184\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wi-Fi Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wi-Fi Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5208\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5230\"/>\n        <source>SSID in octet string.</source>\n        <translation type=\"unfinished\">SSID in octet string.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5211\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5217\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5233\"/>\n        <source>SSID</source>\n        <translation type=\"unfinished\">SSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5214\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5236\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID in octet string.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID in octet string.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5247\"/>\n        <source>eMMC</source>\n        <translation type=\"unfinished\">eMMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5250\"/>\n        <source>Embedded Multi-Media Card Settings.</source>\n        <translation type=\"unfinished\">Embedded Multi-Media Card Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5253\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Embedded Multi-Media Card Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Embedded Multi-Media Card Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5322\"/>\n        <source>BluetoothLE</source>\n        <translation type=\"unfinished\">BluetoothLE</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5325\"/>\n        <source>EFI BluetoothLE Settings.</source>\n        <translation type=\"unfinished\">EFI BluetoothLE Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5328\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI BluetoothLE Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI BluetoothLE Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5416\"/>\n        <source>0x00 - Public Device Address.\n0x01 - Random Device Address.</source>\n        <translation type=\"unfinished\">0x00 - Public Device Address.\n0x01 - Random Device Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5396\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5403\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5420\"/>\n        <source>Address Type</source>\n        <translation type=\"unfinished\">Address Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5399\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5423\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Public Device Address.\n0x01 - Random Device Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Public Device Address.\n0x01 - Random Device Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5428\"/>\n        <source>Public</source>\n        <translation type=\"unfinished\">Public</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5433\"/>\n        <source>Random</source>\n        <translation type=\"unfinished\">Random</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5445\"/>\n        <source>DNS</source>\n        <translation type=\"unfinished\">DNS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5448\"/>\n        <source>DNS Settings.</source>\n        <translation type=\"unfinished\">DNS Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5451\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DNS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DNS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5499\"/>\n        <source>0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.</source>\n        <translation type=\"unfinished\">0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5482\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5506\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5514\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5575\"/>\n        <source>One or more instances of the DNS server address in EFI_IP_ADDRESS.</source>\n        <translation type=\"unfinished\">One or more instances of the DNS server address in EFI_IP_ADDRESS.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5520\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5581\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;One or more instances of the DNS server address in EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;One or more instances of the DNS server address in EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5536\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7584\"/>\n        <source>Data format.</source>\n        <translation type=\"unfinished\">Data format.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5592\"/>\n        <source>NVDIMM NS</source>\n        <translation type=\"unfinished\">NVDIMM NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5595\"/>\n        <source>This device path describes a bootable NVDIMM namespace that is defined by a namespace label.</source>\n        <translation type=\"unfinished\">This device path describes a bootable NVDIMM namespace that is defined by a namespace label.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVDIMM namespace that is defined by a namespace label.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVDIMM namespace that is defined by a namespace label.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5622\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5643\"/>\n        <source>Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.</source>\n        <translation type=\"unfinished\">Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5646\"/>\n        <source>UUID</source>\n        <translation type=\"unfinished\">UUID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5628\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5649\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5663\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5698\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5706\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5724\"/>\n        <source>REST Service</source>\n        <translation type=\"unfinished\">REST Service</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5666\"/>\n        <source>REST Service Settings.</source>\n        <translation type=\"unfinished\">REST Service Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5669\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;REST Service Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;REST Service Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5719\"/>\n        <source>0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.</source>\n        <translation type=\"unfinished\">0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5701\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5727\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5733\"/>\n        <source>Redfish</source>\n        <translation type=\"unfinished\">Redfish</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5738\"/>\n        <source>OData</source>\n        <translation type=\"unfinished\">OData</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5743\"/>\n        <source>Vendor specific</source>\n        <translation type=\"unfinished\">Vendor specific</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5775\"/>\n        <source>0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.</source>\n        <translation type=\"unfinished\">0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5755\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5779\"/>\n        <source>Access Mode</source>\n        <translation type=\"unfinished\">Access Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5782\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5787\"/>\n        <source>In-Band</source>\n        <translation type=\"unfinished\">In-Band</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5792\"/>\n        <source>Out-of-band</source>\n        <translation type=\"unfinished\">Out-of-band</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5821\"/>\n        <source>GUID of vendor specific REST service.</source>\n        <translation type=\"unfinished\">GUID of vendor specific REST service.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID of vendor specific REST service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID of vendor specific REST service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5898\"/>\n        <source>Vendor-defined data.</source>\n        <translation type=\"unfinished\">Vendor-defined data.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5915\"/>\n        <source>NVMe-oF NS</source>\n        <translation type=\"unfinished\">NVMe-oF NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5918\"/>\n        <source>This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.</source>\n        <translation type=\"unfinished\">This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5967\"/>\n        <source>Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.</source>\n        <translation type=\"unfinished\">Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5970\"/>\n        <source>NIDT</source>\n        <translation type=\"unfinished\">NIDT</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5973\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5986\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6007\"/>\n        <source>Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.</source>\n        <translation type=\"unfinished\">Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5989\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5995\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6010\"/>\n        <source>NID</source>\n        <translation type=\"unfinished\">NID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5992\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6013\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6023\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6045\"/>\n        <source>Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.</source>\n        <translation type=\"unfinished\">Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6026\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6048\"/>\n        <source>Subsystem NQN</source>\n        <translation type=\"unfinished\">Subsystem NQN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6029\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6051\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6066\"/>\n        <source>Hard Drive</source>\n        <translation type=\"unfinished\">Hard Drive</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6069\"/>\n        <source>The Hard Drive Media Device Path is used to represent a partition on a hard drive.</source>\n        <translation type=\"unfinished\">The Hard Drive Media Device Path is used to represent a partition on a hard drive.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6072\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Hard Drive Media Device Path is used to represent a partition on a hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Hard Drive Media Device Path is used to represent a partition on a hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6174\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6196\"/>\n        <source>Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].</source>\n        <translation type=\"unfinished\">Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6180\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6236\"/>\n        <source>Starting LBA of the partition on the hard drive.</source>\n        <translation type=\"unfinished\">Starting LBA of the partition on the hard drive.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6466\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6487\"/>\n        <source>Partition Start</source>\n        <translation type=\"unfinished\">Partition Start</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting LBA of the partition on the hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting LBA of the partition on the hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6255\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6276\"/>\n        <source>Size of the partition in units of Logical Blocks.</source>\n        <translation type=\"unfinished\">Size of the partition in units of Logical Blocks.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6258\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6264\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6279\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6527\"/>\n        <source>Partition Size</source>\n        <translation type=\"unfinished\">Partition Size</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6261\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6282\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Logical Blocks.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Logical Blocks.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6295\"/>\n        <source>Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation type=\"unfinished\">Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6301\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6310\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6367\"/>\n        <source>Partition Signature</source>\n        <translation type=\"unfinished\">Partition Signature</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6304\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6322\"/>\n        <source>PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.</source>\n        <translation type=\"unfinished\">PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6328\"/>\n        <source>Signature Type</source>\n        <translation type=\"unfinished\">Signature Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6331\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6338\"/>\n        <source>None</source>\n        <translation type=\"unfinished\">None</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6361\"/>\n        <source>Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation type=\"unfinished\">Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6370\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6392\"/>\n        <source>CD-ROM</source>\n        <translation type=\"unfinished\">CD-ROM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6395\"/>\n        <source>The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.</source>\n        <translation type=\"unfinished\">The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6398\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6444\"/>\n        <source>Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.</source>\n        <translation type=\"unfinished\">Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6425\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6431\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6447\"/>\n        <source>Boot Entry</source>\n        <translation type=\"unfinished\">Boot Entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6450\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6463\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6484\"/>\n        <source>Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.</source>\n        <translation type=\"unfinished\">Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6469\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6490\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6524\"/>\n        <source>Size of the partition in units of Blocks, also called Sectors.</source>\n        <translation type=\"unfinished\">Size of the partition in units of Blocks, also called Sectors.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6530\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Blocks, also called Sectors.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Blocks, also called Sectors.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6547\"/>\n        <source>File Path</source>\n        <translation type=\"unfinished\">File Path</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6550\"/>\n        <source>File Path settings.</source>\n        <translation type=\"unfinished\">File Path settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6553\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File Path settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File Path settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6599\"/>\n        <source>Path including directory and file names.</source>\n        <translation type=\"unfinished\">Path including directory and file names.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6586\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6602\"/>\n        <source>Path Name</source>\n        <translation type=\"unfinished\">Path Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6583\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6605\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Path including directory and file names.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Path including directory and file names.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6619\"/>\n        <source>The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.</source>\n        <translation type=\"unfinished\">The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6622\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6667\"/>\n        <source>The ID of the protocol.</source>\n        <translation type=\"unfinished\">The ID of the protocol.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6673\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ID of the protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ID of the protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6687\"/>\n        <source>Firmware File</source>\n        <translation type=\"unfinished\">Firmware File</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6690\"/>\n        <source>Describes a firmware file in a firmware volume.</source>\n        <translation type=\"unfinished\">Describes a firmware file in a firmware volume.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6693\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware file in a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware file in a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6717\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6738\"/>\n        <source>Firmware file name GUID.</source>\n        <translation type=\"unfinished\">Firmware file name GUID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6723\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6744\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware file name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware file name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6758\"/>\n        <source>Firmware Volume</source>\n        <translation type=\"unfinished\">Firmware Volume</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6761\"/>\n        <source>Describes a firmware volume.</source>\n        <translation type=\"unfinished\">Describes a firmware volume.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6764\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6809\"/>\n        <source>Firmware volume name GUID.</source>\n        <translation type=\"unfinished\">Firmware volume name GUID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware volume name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware volume name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6829\"/>\n        <source>Relative Offset Range</source>\n        <translation type=\"unfinished\">Relative Offset Range</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6832\"/>\n        <source>This device path node specifies a range of offsets relative to the first byte available on the device.</source>\n        <translation type=\"unfinished\">This device path node specifies a range of offsets relative to the first byte available on the device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6835\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path node specifies a range of offsets relative to the first byte available on the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path node specifies a range of offsets relative to the first byte available on the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6880\"/>\n        <source>Reserved for future use.</source>\n        <translation type=\"unfinished\">Reserved for future use.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6886\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved for future use.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved for future use.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6899\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6920\"/>\n        <source>Offset of the first byte, relative to the parent device node.</source>\n        <translation type=\"unfinished\">Offset of the first byte, relative to the parent device node.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6902\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6908\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6923\"/>\n        <source>Starting Offset</source>\n        <translation type=\"unfinished\">Starting Offset</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6905\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the first byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the first byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6939\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6960\"/>\n        <source>Offset of the last byte, relative to the parent device node.</source>\n        <translation type=\"unfinished\">Offset of the last byte, relative to the parent device node.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6942\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6963\"/>\n        <source>Ending Offset</source>\n        <translation type=\"unfinished\">Ending Offset</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6966\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the last byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the last byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6983\"/>\n        <source>RAM Disk</source>\n        <translation type=\"unfinished\">RAM Disk</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6986\"/>\n        <source>RAM Disk Settings.</source>\n        <translation type=\"unfinished\">RAM Disk Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6989\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7016\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7037\"/>\n        <source>Starting Address</source>\n        <translation type=\"unfinished\">Starting Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7056\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7077\"/>\n        <source>Ending Address</source>\n        <translation type=\"unfinished\">Ending Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7093\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7114\"/>\n        <source>GUID that defines the type of the RAM Disk.</source>\n        <translation type=\"unfinished\">GUID that defines the type of the RAM Disk.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7120\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID that defines the type of the RAM Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID that defines the type of the RAM Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7130\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7152\"/>\n        <source>RAM Disk instance number, if supported.</source>\n        <translation type=\"unfinished\">RAM Disk instance number, if supported.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7133\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7155\"/>\n        <source>Disk Instance</source>\n        <translation type=\"unfinished\">Disk Instance</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7158\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk instance number, if supported.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk instance number, if supported.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7179\"/>\n        <source>This Device Path is used to describe the booting of non-EFI-aware operating systems.</source>\n        <translation type=\"unfinished\">This Device Path is used to describe the booting of non-EFI-aware operating systems.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7182\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path is used to describe the booting of non-EFI-aware operating systems.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path is used to describe the booting of non-EFI-aware operating systems.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7206\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7249\"/>\n        <source>An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.</source>\n        <translation type=\"unfinished\">An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7220\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7263\"/>\n        <source>Device Type</source>\n        <translation type=\"unfinished\">Device Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7223\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7290\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7347\"/>\n        <source>Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero</source>\n        <translation type=\"unfinished\">Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7311\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7368\"/>\n        <source>Status Flag</source>\n        <translation type=\"unfinished\">Status Flag</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7371\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7402\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7424\"/>\n        <source>String that describes the boot device to a user.</source>\n        <translation type=\"unfinished\">String that describes the boot device to a user.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7408\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7430\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;String that describes the boot device to a user.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;String that describes the boot device to a user.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7543\"/>\n        <source>Vendor-assigned GUID that defines the data that follows.</source>\n        <translation type=\"unfinished\">Vendor-assigned GUID that defines the data that follows.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7549\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-assigned GUID that defines the data that follows.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-assigned GUID that defines the data that follows.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7562\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7622\"/>\n        <source>Vendor-defined variable size data.</source>\n        <translation type=\"unfinished\">Vendor-defined variable size data.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7568\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7628\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined variable size data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined variable size data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7642\"/>\n        <source>Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.</source>\n        <translation type=\"unfinished\">Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7645\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7721\"/>\n        <source>Unknown file path specifier settings</source>\n        <translation type=\"unfinished\">Unknown file path specifier settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7724\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown file path specifier settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown file path specifier settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7748\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7772\"/>\n        <source>Unknown Type</source>\n        <translation type=\"unfinished\">Unknown Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7754\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7775\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7812\"/>\n        <source>Unknown Sub-Type</source>\n        <translation type=\"unfinished\">Unknown Sub-Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7828\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7831\"/>\n        <source>Unknown data</source>\n        <translation type=\"unfinished\">Unknown data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/filepathdialog.cpp\" line=\"1569\"/>\n        <source>Couldn&apos;t change data format!</source>\n        <translation type=\"unfinished\">Couldn&apos;t change data format!</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeyListModel</name>\n    <message>\n        <location filename=\"../src/hotkeylistmodel.cpp\" line=\"100\"/>\n        <source>boot option</source>\n        <translation type=\"unfinished\">boot option</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Boot option</source>\n        <translation type=\"unfinished\">Boot option</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Hot key</source>\n        <translation type=\"unfinished\">Hot key</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Vendor data</source>\n        <translation type=\"unfinished\">Vendor data</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeysDialog</name>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"20\"/>\n        <source>Hot Keys editor</source>\n        <translation type=\"unfinished\">Hot Keys editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"41\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"44\"/>\n        <source>Hot Keys</source>\n        <translation type=\"unfinished\">Hot Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"47\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"125\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"128\"/>\n        <source>Index filter</source>\n        <translation type=\"unfinished\">Index filter</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"131\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Index filter&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Index filter&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"163\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"166\"/>\n        <source>Remove hot key</source>\n        <translation type=\"unfinished\">Remove hot key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"191\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"194\"/>\n        <source>Add hot key</source>\n        <translation type=\"unfinished\">Add hot key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"197\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <location filename=\"../include/commands.h\" line=\"21\"/>\n        <location filename=\"../include/commands.h\" line=\"66\"/>\n        <source>Change %1 to &quot;%2&quot;</source>\n        <translation type=\"unfinished\">Change %1 to &quot;%2&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"35\"/>\n        <source>Insert %1 entry &quot;%2&quot; at position %3</source>\n        <translation type=\"unfinished\">Insert %1 entry &quot;%2&quot; at position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"50\"/>\n        <source>Remove %1 entry &quot;%2&quot; from position %3</source>\n        <translation type=\"unfinished\">Remove %1 entry &quot;%2&quot; from position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"73\"/>\n        <location filename=\"../src/commands.cpp\" line=\"116\"/>\n        <source>Move %1 entry &quot;%2&quot; from position %3 to %4</source>\n        <translation type=\"unfinished\">Move %1 entry &quot;%2&quot; from position %3 to %4</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <location filename=\"../include/commands.h\" line=\"157\"/>\n        <location filename=\"../include/commands.h\" line=\"198\"/>\n        <source>Change %1 entry &quot;%2&quot; %3 to &quot;%4&quot;</source>\n        <translation type=\"unfinished\">Change %1 entry &quot;%2&quot; %3 to &quot;%4&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <source>Optional data</source>\n        <translation type=\"unfinished\">Optional data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"227\"/>\n        <source>Insert %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation type=\"unfinished\">Insert %1 entry &quot;%2&quot; file path at position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"242\"/>\n        <source>Remove %1 entry &quot;%2&quot; file path from position %3</source>\n        <translation type=\"unfinished\">Remove %1 entry &quot;%2&quot; file path from position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"257\"/>\n        <source>Set %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation type=\"unfinished\">Set %1 entry &quot;%2&quot; file path at position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <source>Insert %1 entry at position %2</source>\n        <translation type=\"unfinished\">Insert %1 entry at position %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>Key</source>\n        <translation type=\"unfinished\">Key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <source>Remove %1 entry from position %2</source>\n        <translation type=\"unfinished\">Remove %1 entry from position %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <location filename=\"../include/commands.h\" line=\"362\"/>\n        <location filename=\"../include/commands.h\" line=\"403\"/>\n        <source>Change %1 entry at position %2 %3 to &quot;%4&quot;</source>\n        <translation type=\"unfinished\">Change %1 entry at position %2 %3 to &quot;%4&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>keys</source>\n        <translation type=\"unfinished\">keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"293\"/>\n        <location filename=\"../src/commands.cpp\" line=\"333\"/>\n        <source>Move %1 entry &quot;%2&quot; file path from position %3 to %4</source>\n        <translation type=\"unfinished\">Move %1 entry &quot;%2&quot; file path from position %3 to %4</translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/efibooteditor_sv.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"sv\" sourcelanguage=\"en_US\">\n<context>\n    <name>BootEntryForm</name>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"169\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"172\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"182\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"185\"/>\n        <source>Description</source>\n        <translation>Beskrivning</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"198\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"201\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"204\"/>\n        <source>Path</source>\n        <translation>Genväg</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"415\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"418\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"478\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"481\"/>\n        <source>Optional data</source>\n        <translation>Valfri data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"421\"/>\n        <source>Optional</source>\n        <translation type=\"unfinished\">Optional</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"434\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"437\"/>\n        <source>Optional data format</source>\n        <translation>Valfritt dataformat</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"6\"/>\n        <source>Boot entry form</source>\n        <translation type=\"unfinished\">Boot entry form</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"24\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"27\"/>\n        <source>Error</source>\n        <translation>Fel</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"40\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"43\"/>\n        <source>Error note</source>\n        <translation>Felmeddelande</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"46\"/>\n        <source>This entry placeholder is shown here to indicate it&apos;s referenced in boot order. It won&apos;t be modified on save, just left as is.</source>\n        <translation type=\"unfinished\">This entry placeholder is shown here to indicate it&apos;s referenced in boot order. It won&apos;t be modified on save, just left as is.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"147\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"150\"/>\n        <source>Hot Keys</source>\n        <translation type=\"unfinished\">Hot Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"188\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry description.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry description.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"222\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"225\"/>\n        <source>Device path</source>\n        <translation type=\"unfinished\">Device path</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"280\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"283\"/>\n        <source>Move file path up</source>\n        <translation>Flytta filvägen uppåt</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"286\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"305\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"308\"/>\n        <source>Move file path down</source>\n        <translation>Flytta filvägen nedåt</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"311\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flytta filvägen nedåt.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"330\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"333\"/>\n        <source>Remove file path</source>\n        <translation type=\"unfinished\">Remove file path</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"336\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"355\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"358\"/>\n        <source>Edit file path</source>\n        <translation type=\"unfinished\">Edit file path</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"361\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Edit file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Edit file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"380\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"383\"/>\n        <source>Add file path</source>\n        <translation type=\"unfinished\">Add file path</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Lägg till filens genväg.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"444\"/>\n        <source>BASE64</source>\n        <translation>BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"449\"/>\n        <source>UTF-16</source>\n        <translation>UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"454\"/>\n        <source>UTF-8</source>\n        <translation>UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"459\"/>\n        <source>HEX</source>\n        <translation>HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"484\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry optional data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry optional data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"497\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"500\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"503\"/>\n        <source>Attributes</source>\n        <translation>Attributer</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"623\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry category.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry category.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"122\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"540\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Is entry considered for automatic boot?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Is entry considered for automatic boot?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"569\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hidden.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hidden.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"585\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Force reconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Force reconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"534\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"537\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"543\"/>\n        <source>Active</source>\n        <translation type=\"unfinished\">Active</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"579\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"582\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"588\"/>\n        <source>Force reconnect</source>\n        <translation type=\"unfinished\">Force reconnect</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"563\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"566\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"572\"/>\n        <source>Hidden</source>\n        <translation type=\"unfinished\">Hidden</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"598\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"601\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"604\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"617\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"620\"/>\n        <source>Category</source>\n        <translation type=\"unfinished\">Category</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"627\"/>\n        <source>Boot</source>\n        <translation type=\"unfinished\">Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"632\"/>\n        <source>App</source>\n        <translation type=\"unfinished\">App</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"68\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"71\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"74\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"116\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"119\"/>\n        <source>Index</source>\n        <translation type=\"unfinished\">Index</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentryform.cpp\" line=\"117\"/>\n        <source>Couldn&apos;t change optional data format!</source>\n        <translation type=\"unfinished\">Couldn&apos;t change optional data format!</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryListModel</name>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"88\"/>\n        <source>Set Next boot to &quot;%1&quot;</source>\n        <translation type=\"unfinished\">Set Next boot to &quot;%1&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"184\"/>\n        <source>index</source>\n        <translation type=\"unfinished\">index</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"200\"/>\n        <source>description</source>\n        <translation type=\"unfinished\">description</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"237\"/>\n        <source>optional data</source>\n        <translation type=\"unfinished\">optional data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"253\"/>\n        <source>attributes</source>\n        <translation type=\"unfinished\">attributes</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"269\"/>\n        <source>next boot</source>\n        <translation type=\"unfinished\">next boot</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryWidget</name>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"12\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"221\"/>\n        <source>Boot entry</source>\n        <translation type=\"unfinished\">Boot entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"36\"/>\n        <source>Next boot</source>\n        <translation>Nästa uppstart</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"39\"/>\n        <source>Run at next boot</source>\n        <translation>Kör vid nästa uppstart</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"42\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;When chosen, entry will run at next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;When chosen, entry will run at next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"140\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"143\"/>\n        <source>Current boot</source>\n        <translation>Aktuell uppstart</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This entry is currently booted.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This entry is currently booted.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"181\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"218\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry description, human readable name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry description, human readable name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"67\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"70\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"76\"/>\n        <source>Device path</source>\n        <translation type=\"unfinished\">Device path</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"73\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"113\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data, arguments passed to boot executable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data, arguments passed to boot executable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"178\"/>\n        <source>Boot entry index</source>\n        <translation type=\"unfinished\">Boot entry index</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"184\"/>\n        <source>Index</source>\n        <translation type=\"unfinished\">Index</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"212\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"215\"/>\n        <source>Boot entry description</source>\n        <translation type=\"unfinished\">Boot entry description</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"107\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"110\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"116\"/>\n        <source>Optional data</source>\n        <translation>Valfri data</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootData</name>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"111\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"813\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1027\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1361\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1472\"/>\n        <source>%1: not found</source>\n        <translation>%1: hittades inte</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"120\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"821\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1387\"/>\n        <source>%1: failed deserialization</source>\n        <translation type=\"unfinished\">%1: failed deserialization</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Error loading entries</source>\n        <translation type=\"unfinished\">Error loading entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Failed to load some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation type=\"unfinished\">Failed to load some EFI Boot Manager entries:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Error saving entries</source>\n        <translation type=\"unfinished\">Error saving entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Entry %1(%2): duplicated index!</source>\n        <translation type=\"unfinished\">Entry %1(%2): duplicated index!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"389\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"419\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"458\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"479\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"487\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"516\"/>\n        <source>Error saving %1</source>\n        <translation type=\"unfinished\">Error saving %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"407\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"470\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"504\"/>\n        <source>Error removing %1</source>\n        <translation type=\"unfinished\">Error removing %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Error importing boot configuration</source>\n        <translation type=\"unfinished\">Error importing boot configuration</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <source>Couldn&apos;t open selected file (%1).</source>\n        <translation type=\"unfinished\">Couldn&apos;t open selected file (%1).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <source>Parser failed: %1</source>\n        <translation type=\"unfinished\">Parser failed: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <source>Invalid _Type: %1</source>\n        <translation type=\"unfinished\">Invalid _Type: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <source>Error exporting boot configuration</source>\n        <translation type=\"unfinished\">Error exporting boot configuration</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <source>Couldn&apos;t open selected file (%1): %2.</source>\n        <translation type=\"unfinished\">Couldn&apos;t open selected file (%1): %2.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <source>Couldn&apos;t write into file (%1): %2.</source>\n        <translation type=\"unfinished\">Couldn&apos;t write into file (%1): %2.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Error dumping raw EFI data</source>\n        <translation type=\"unfinished\">Error dumping raw EFI data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Failed to dump some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation type=\"unfinished\">Failed to dump some EFI Boot Manager entries:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"905\"/>\n        <source>Timeout</source>\n        <translation type=\"unfinished\">Timeout</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"921\"/>\n        <source>Apple boot-args</source>\n        <translation type=\"unfinished\">Apple boot-args</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"937\"/>\n        <source>Firmware actions</source>\n        <translation type=\"unfinished\">Firmware actions</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"73\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Loading EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"89\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"787\"/>\n        <source>Searching EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Searching EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"116\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"292\"/>\n        <source>Processing EFI Boot Manager entries (%1)…</source>\n        <translation type=\"unfinished\">Processing EFI Boot Manager entries (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"308\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Saving EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"333\"/>\n        <source>Searching old EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Searching old EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"374\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"416\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"447\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"476\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"484\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"491\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"513\"/>\n        <source>Saving EFI Boot Manager entries (%1)…</source>\n        <translation type=\"unfinished\">Saving EFI Boot Manager entries (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"467\"/>\n        <source>Removing old EFI Boot Manager entries (%1)…</source>\n        <translation type=\"unfinished\">Removing old EFI Boot Manager entries (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"404\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"501\"/>\n        <source>Removing EFI Boot Manager entries (%1)…</source>\n        <translation type=\"unfinished\">Removing EFI Boot Manager entries (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"94\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"338\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"792\"/>\n        <source>Couldn&apos;t load EFI Boot Manager variables</source>\n        <translation type=\"unfinished\">Couldn&apos;t load EFI Boot Manager variables</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"100\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"799\"/>\n        <source>Couldn&apos;t find any EFI Boot Manager variables</source>\n        <translation type=\"unfinished\">Couldn&apos;t find any EFI Boot Manager variables</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"529\"/>\n        <source>Importing boot configuration…</source>\n        <translation type=\"unfinished\">Importing boot configuration…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"565\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"770\"/>\n        <source>Exporting boot configuration…</source>\n        <translation type=\"unfinished\">Exporting boot configuration…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"587\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"809\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"875\"/>\n        <source>Exporting EFI Boot Manager entries (%1)…</source>\n        <translation type=\"unfinished\">Exporting EFI Boot Manager entries (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1013\"/>\n        <source>Importing boot configuration from JSON…</source>\n        <translation type=\"unfinished\">Importing boot configuration from JSON…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1032\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1366\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1477\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1531\"/>\n        <source>Importing EFI Boot Manager entries (%1)…</source>\n        <translation type=\"unfinished\">Importing EFI Boot Manager entries (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1035\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1376\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>%1: %2 expected</source>\n        <translation type=\"unfinished\">%1: %2 expected</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1043\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1048\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1053\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <source>number</source>\n        <translation type=\"unfinished\">number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1058\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1063\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1068\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1073\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1078\"/>\n        <source>bool</source>\n        <translation type=\"unfinished\">bool</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1109\"/>\n        <source>%1: unknown boot manager capability</source>\n        <translation type=\"unfinished\">%1: unknown boot manager capability</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1122\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1166\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1212\"/>\n        <source>array</source>\n        <translation type=\"unfinished\">array</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1333\"/>\n        <source>string</source>\n        <translation type=\"unfinished\">string</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1156\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1192\"/>\n        <source>%1: unknown os indication</source>\n        <translation type=\"unfinished\">%1: unknown os indication</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1083\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1235\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1264\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1290\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1309\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1328\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>object</source>\n        <translation type=\"unfinished\">object</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <source>hexadecimal number</source>\n        <translation type=\"unfinished\">hexadecimal number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1270\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1315\"/>\n        <source>%1: failed parsing</source>\n        <translation type=\"unfinished\">%1: failed parsing</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Failed to import some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation type=\"unfinished\">Failed to import some EFI Boot Manager entries:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1347\"/>\n        <source>Importing boot configuration from raw dump…</source>\n        <translation type=\"unfinished\">Importing boot configuration from raw dump…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1379\"/>\n        <source>object(raw_data: string, efi_attributes: number)</source>\n        <extracomment>Expected JSON structure, thrown as error description. raw_data and efi_attributes are field names in JSON file</extracomment>\n        <translation type=\"unfinished\">object(raw_data: string, efi_attributes: number)</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"15\"/>\n        <source>Boot</source>\n        <translation type=\"unfinished\">Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"16\"/>\n        <source>Driver</source>\n        <translation type=\"unfinished\">Driver</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"17\"/>\n        <source>System Preparation</source>\n        <translation type=\"unfinished\">System Preparation</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"18\"/>\n        <source>Platform Recovery</source>\n        <translation type=\"unfinished\">Platform Recovery</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditor</name>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"18\"/>\n        <source>EFI Boot Editor</source>\n        <translation type=\"unfinished\">EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"71\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"412\"/>\n        <source>Boot</source>\n        <translation type=\"unfinished\">Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"74\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"98\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"101\"/>\n        <source>Boot entries</source>\n        <translation type=\"unfinished\">Boot entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"77\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"104\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Boot entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Boot entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"133\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"415\"/>\n        <source>Driver</source>\n        <translation type=\"unfinished\">Driver</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"136\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"160\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"163\"/>\n        <source>Driver entries</source>\n        <translation type=\"unfinished\">Driver entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"139\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"166\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Driver entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Driver entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"195\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"418\"/>\n        <source>System Preparation</source>\n        <translation type=\"unfinished\">System Preparation</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"198\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"222\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"225\"/>\n        <source>SysPrep entries</source>\n        <translation type=\"unfinished\">SysPrep entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"201\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of SysPrep entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of SysPrep entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"257\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"421\"/>\n        <source>Platform Recovery</source>\n        <translation type=\"unfinished\">Platform Recovery</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"260\"/>\n        <source>PlatformRecovery entries</source>\n        <translation type=\"unfinished\">PlatformRecovery entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"263\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of PlatformRecovery entries (READONLY).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of PlatformRecovery entries (READONLY).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"284\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"287\"/>\n        <source>PlatformRecovery entries (READONLY)</source>\n        <translation type=\"unfinished\">PlatformRecovery entries (READONLY)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"346\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"349\"/>\n        <source>Add new entry</source>\n        <translation type=\"unfinished\">Add new entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"352\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to add new boot entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to add new boot entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"377\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"380\"/>\n        <source>Duplicate entry</source>\n        <translation type=\"unfinished\">Duplicate entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"383\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Duplicate entry&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Duplicate entry&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"408\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"411\"/>\n        <source>Remove entry</source>\n        <translation type=\"unfinished\">Remove entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"414\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to remove currently selected entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to remove currently selected entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"439\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"442\"/>\n        <source>Move entry up</source>\n        <translation type=\"unfinished\">Move entry up</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"445\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"470\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"473\"/>\n        <source>Move entry down</source>\n        <translation type=\"unfinished\">Move entry down</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"476\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"501\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"504\"/>\n        <source>Reorder entries</source>\n        <translation type=\"unfinished\">Reorder entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"507\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click here to adjust the order of all entries based on their position on the list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click here to adjust the order of all entries based on their position on the list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"599\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"608\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Global settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Global settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"602\"/>\n        <source>Global</source>\n        <translation type=\"unfinished\">Global</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"632\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"635\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"654\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"657\"/>\n        <source>Boot manager timeout</source>\n        <translation type=\"unfinished\">Boot manager timeout</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"638\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"660\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot manager timeout.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot manager timeout.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"663\"/>\n        <source>s</source>\n        <translation type=\"unfinished\">s</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"674\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"677\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"686\"/>\n        <source>Firmware details</source>\n        <translation type=\"unfinished\">Firmware details</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"680\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"689\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"683\"/>\n        <source>Firmware</source>\n        <translation type=\"unfinished\">Firmware</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"719\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"722\"/>\n        <source>Available firmware features</source>\n        <translation type=\"unfinished\">Available firmware features</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"725\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware features.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware features.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"728\"/>\n        <source>Features</source>\n        <translation type=\"unfinished\">Features</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"737\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"740\"/>\n        <source>Platform supports reporting of deferred capsule processing by creation of result variable</source>\n        <translation type=\"unfinished\">Platform supports reporting of deferred capsule processing by creation of result variable</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"743\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports reporting of deferred capsule processing by creation of result variable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports reporting of deferred capsule processing by creation of result variable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"746\"/>\n        <source>Capsule Reporting</source>\n        <translation type=\"unfinished\">Capsule Reporting</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"756\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"759\"/>\n        <source>Firmware supports timestamp based revocation</source>\n        <translation type=\"unfinished\">Firmware supports timestamp based revocation</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"762\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware supports timestamp based revocation.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware supports timestamp based revocation.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"765\"/>\n        <source>Timestamp based revocation</source>\n        <translation type=\"unfinished\">Timestamp based revocation</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"775\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"778\"/>\n        <source>Platform supports processing of Firmware Management Protocol update capsule</source>\n        <translation type=\"unfinished\">Platform supports processing of Firmware Management Protocol update capsule</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"781\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of Firmware Management Protocol update capsule.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of Firmware Management Protocol update capsule.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"784\"/>\n        <source>FMP Capsule</source>\n        <translation type=\"unfinished\">FMP Capsule</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"794\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"797\"/>\n        <source>Platform supports processing of file capsules</source>\n        <translation type=\"unfinished\">Platform supports processing of file capsules</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"800\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of file capsules.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of file capsules.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"803\"/>\n        <source>File Capsule</source>\n        <translation type=\"unfinished\">File Capsule</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"828\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"831\"/>\n        <source>Available firmware actions</source>\n        <translation type=\"unfinished\">Available firmware actions</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware actions.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware actions.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"837\"/>\n        <source>Actions</source>\n        <translation type=\"unfinished\">Actions</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"846\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"849\"/>\n        <source>Stop at a firmware user interface on the next boot</source>\n        <translation type=\"unfinished\">Stop at a firmware user interface on the next boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Stop at a firmware user interface on the next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Stop at a firmware user interface on the next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"855\"/>\n        <source>Boot to firmware UI</source>\n        <translation type=\"unfinished\">Boot to firmware UI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"862\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"865\"/>\n        <source>Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot</source>\n        <translation type=\"unfinished\">Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"871\"/>\n        <source>Collect current config</source>\n        <translation type=\"unfinished\">Collect current config</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"878\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"881\"/>\n        <source>Indicate that Platform-defined recovery should commence upon reboot</source>\n        <translation type=\"unfinished\">Indicate that Platform-defined recovery should commence upon reboot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"884\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that Platform-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that Platform-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"887\"/>\n        <source>Start Platform recovery</source>\n        <translation type=\"unfinished\">Start Platform recovery</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"894\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"897\"/>\n        <source>Indicate that OS-defined recovery should commence upon reboot</source>\n        <translation type=\"unfinished\">Indicate that OS-defined recovery should commence upon reboot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"900\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that OS-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that OS-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"903\"/>\n        <source>Start OS recovery</source>\n        <translation type=\"unfinished\">Start OS recovery</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"932\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"935\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"944\"/>\n        <source>Secure boot settings</source>\n        <translation type=\"unfinished\">Secure boot settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"938\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"947\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Secure boot settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Secure boot settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"941\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1025\"/>\n        <source>Secure Boot</source>\n        <translation type=\"unfinished\">Secure Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"978\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"981\"/>\n        <source>Defines whether the system is currently operating in Audit Mode</source>\n        <translation type=\"unfinished\">Defines whether the system is currently operating in Audit Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"984\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Audit Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Audit Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"987\"/>\n        <source>Audit Mode</source>\n        <translation type=\"unfinished\">Audit Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"997\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1000\"/>\n        <source>Defines whether the system is currently operating in Deployed Mode</source>\n        <translation type=\"unfinished\">Defines whether the system is currently operating in Deployed Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1003\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Deployed Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Deployed Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1006\"/>\n        <source>Deployed Mode</source>\n        <translation type=\"unfinished\">Deployed Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1016\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1019\"/>\n        <source>Defines whether the platform firmware is operating with Secure Boot enabled</source>\n        <translation type=\"unfinished\">Defines whether the platform firmware is operating with Secure Boot enabled</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1022\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the platform firmware is operating with Secure Boot enabled.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the platform firmware is operating with Secure Boot enabled.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1035\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1038\"/>\n        <source>Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables</source>\n        <translation type=\"unfinished\">Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1041\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1044\"/>\n        <source>Setup Mode</source>\n        <translation type=\"unfinished\">Setup Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1054\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1057\"/>\n        <source>Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys</source>\n        <translation type=\"unfinished\">Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1063\"/>\n        <source>Vendor Keys</source>\n        <translation type=\"unfinished\">Vendor Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1074\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1077\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1086\"/>\n        <source>Apple settings</source>\n        <translation type=\"unfinished\">Apple settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1080\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apple settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apple settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1083\"/>\n        <source>Apple</source>\n        <translation type=\"unfinished\">Apple</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1113\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1116\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1129\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1132\"/>\n        <source>macOS boot arguments</source>\n        <translation type=\"unfinished\">macOS boot arguments</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1119\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;macOS boot arguments.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;macOS boot arguments.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1161\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1164\"/>\n        <source>Undo stack</source>\n        <translation type=\"unfinished\">Undo stack</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1167\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo stack&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo stack&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1194\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1214\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Help menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Help menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1255\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Exit the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Exit the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1272\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apply changes to the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apply changes to the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1289\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reloads EFI data from the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reloads EFI data from the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1306\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Show information about the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Show information about the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1320\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Export current entries into JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Export current entries into JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1337\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Import EFI data from JSON dump.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Import EFI data from JSON dump.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1354\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dumps raw EFI data for debugging purposes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dumps raw EFI data for debugging purposes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1362\"/>\n        <source>&amp;Undo</source>\n        <translation type=\"unfinished\">&amp;Undo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1365\"/>\n        <source>Undo</source>\n        <translation type=\"unfinished\">Undo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1368\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1371\"/>\n        <source>Ctrl+Z</source>\n        <translation type=\"unfinished\">Ctrl+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1379\"/>\n        <source>&amp;Redo</source>\n        <translation type=\"unfinished\">&amp;Redo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1382\"/>\n        <source>Redo</source>\n        <translation type=\"unfinished\">Redo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1385\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Redo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Redo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1388\"/>\n        <source>Ctrl+Shift+Z</source>\n        <translation type=\"unfinished\">Ctrl+Shift+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1396\"/>\n        <source>Hot &amp;keys</source>\n        <translation type=\"unfinished\">Hot &amp;keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1399\"/>\n        <source>Hot Keys</source>\n        <translation type=\"unfinished\">Hot Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1402\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"593\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"596\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"605\"/>\n        <source>Global settings</source>\n        <translation type=\"unfinished\">Global settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"641\"/>\n        <source>Timeout</source>\n        <translation type=\"unfinished\">Timeout</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1122\"/>\n        <source>Boot args</source>\n        <translation type=\"unfinished\">Boot args</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1188\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1191\"/>\n        <source>File</source>\n        <translation type=\"unfinished\">File</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1197\"/>\n        <source>&amp;File</source>\n        <translation type=\"unfinished\">&amp;File</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1208\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1211\"/>\n        <source>Help</source>\n        <translation type=\"unfinished\">Help</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1217\"/>\n        <source>&amp;Help</source>\n        <translation type=\"unfinished\">&amp;Help</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1225\"/>\n        <source>&amp;Edit</source>\n        <translation type=\"unfinished\">&amp;Edit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1249\"/>\n        <source>&amp;Quit</source>\n        <translation type=\"unfinished\">&amp;Quit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1252\"/>\n        <source>Quit</source>\n        <translation type=\"unfinished\">Quit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1258\"/>\n        <source>Ctrl+Q</source>\n        <translation type=\"unfinished\">Ctrl+Q</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1266\"/>\n        <source>&amp;Save</source>\n        <translation type=\"unfinished\">&amp;Save</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1269\"/>\n        <source>Save</source>\n        <translation type=\"unfinished\">Save</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1275\"/>\n        <source>Ctrl+S</source>\n        <translation type=\"unfinished\">Ctrl+S</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1283\"/>\n        <source>&amp;Reload</source>\n        <translation type=\"unfinished\">&amp;Reload</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1286\"/>\n        <source>Reload</source>\n        <translation type=\"unfinished\">Reload</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1292\"/>\n        <source>Ctrl+R</source>\n        <translation type=\"unfinished\">Ctrl+R</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1300\"/>\n        <source>About &amp;EFI Boot Editor</source>\n        <translation type=\"unfinished\">About &amp;EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1303\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"29\"/>\n        <source>About EFI Boot Editor</source>\n        <translation type=\"unfinished\">About EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1314\"/>\n        <source>&amp;Export</source>\n        <translation type=\"unfinished\">&amp;Export</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1317\"/>\n        <source>Export</source>\n        <translation type=\"unfinished\">Export</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1323\"/>\n        <source>Ctrl+E</source>\n        <translation type=\"unfinished\">Ctrl+E</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1331\"/>\n        <source>&amp;Import</source>\n        <translation type=\"unfinished\">&amp;Import</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1334\"/>\n        <source>Import</source>\n        <translation type=\"unfinished\">Import</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1340\"/>\n        <source>Ctrl+I</source>\n        <translation type=\"unfinished\">Ctrl+I</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1348\"/>\n        <source>&amp;Dump raw EFI data</source>\n        <translation type=\"unfinished\">&amp;Dump raw EFI data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1351\"/>\n        <source>Dump raw EFI data</source>\n        <translation type=\"unfinished\">Dump raw EFI data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"26\"/>\n        <source>Working…</source>\n        <translation type=\"unfinished\">Working…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"92\"/>\n        <source>Undo %1</source>\n        <translation type=\"unfinished\">Undo %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"95\"/>\n        <source>Redo %1</source>\n        <translation type=\"unfinished\">Redo %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"137\"/>\n        <source>Are you sure you want to reload the entries?&lt;br/&gt;ALL of your changes will be lost!</source>\n        <translation type=\"unfinished\">Are you sure you want to reload the entries?&lt;br/&gt;ALL of your changes will be lost!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"162\"/>\n        <source>Are you sure you want to reorder the boot entries?&lt;br/&gt;All indexes will be overwritten!</source>\n        <translation type=\"unfinished\">Are you sure you want to reorder the boot entries?&lt;br/&gt;All indexes will be overwritten!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"221\"/>\n        <source>Are you sure you want to save?&lt;br/&gt;Your EFI configuration will be overwritten!</source>\n        <translation type=\"unfinished\">Are you sure you want to save?&lt;br/&gt;Your EFI configuration will be overwritten!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <source>Open boot configuration dump</source>\n        <translation type=\"unfinished\">Open boot configuration dump</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>JSON documents (*.json)</source>\n        <translation type=\"unfinished\">JSON documents (*.json)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <source>Save boot configuration dump</source>\n        <translation type=\"unfinished\">Save boot configuration dump</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>Save raw EFI dump</source>\n        <translation type=\"unfinished\">Save raw EFI dump</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"31\"/>\n        <source>&lt;h1&gt;EFI Boot Editor&lt;/h1&gt;&lt;p&gt;Version &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Boot Editor for (U)EFI based systems.&lt;/p&gt;</source>\n        <extracomment>About dialog</extracomment>\n        <translation type=\"unfinished\">&lt;h1&gt;EFI Boot Editor&lt;/h1&gt;&lt;p&gt;Version &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Boot Editor for (U)EFI based systems.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"45\"/>\n        <source>&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;Website&lt;/a&gt;&lt;/p&gt;&lt;p&gt;The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.&lt;/p&gt;&lt;p&gt;License: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL Version 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;On Linux uses &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; for EFI variables access.&lt;/p&gt;&lt;p&gt;Uses Tango Icons as fallback icons.&lt;/p&gt;</source>\n        <extracomment>About dialog details</extracomment>\n        <translation type=\"unfinished\">&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;Website&lt;/a&gt;&lt;/p&gt;&lt;p&gt;The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.&lt;/p&gt;&lt;p&gt;License: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL Version 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;On Linux uses &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; for EFI variables access.&lt;/p&gt;&lt;p&gt;Uses Tango Icons as fallback icons.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"330\"/>\n        <source>Reorder %1 entries</source>\n        <translation type=\"unfinished\">Reorder %1 entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"453\"/>\n        <source>Are you sure you want to quit?</source>\n        <translation type=\"unfinished\">Are you sure you want to quit?</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"123\"/>\n        <source>EFI support required</source>\n        <translation type=\"unfinished\">EFI support required</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditorCLI</name>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"13\"/>\n        <source>Boot Editor for (U)EFI based systems.</source>\n        <translation type=\"unfinished\">Boot Editor for (U)EFI based systems.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <source>Export configuration.</source>\n        <translation type=\"unfinished\">Export configuration.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>FILE</source>\n        <translation type=\"unfinished\">FILE</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <source>Dump raw EFI data.</source>\n        <translation type=\"unfinished\">Dump raw EFI data.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>Import configuration from JSON (either from export or raw dump).</source>\n        <translation type=\"unfinished\">Import configuration from JSON (either from export or raw dump).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"19\"/>\n        <source>Force import, don&apos;t ask for confirmation.</source>\n        <translation type=\"unfinished\">Force import, don&apos;t ask for confirmation.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"26\"/>\n        <source>EFI support required</source>\n        <translation type=\"unfinished\">EFI support required</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"45\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Loading EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"47\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"57\"/>\n        <source>Exporting boot configuration…</source>\n        <translation type=\"unfinished\">Exporting boot configuration…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"67\"/>\n        <source>Importing boot configuration…</source>\n        <translation type=\"unfinished\">Importing boot configuration…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Loaded %0 %1 entries</source>\n        <translation type=\"unfinished\">Loaded %0 %1 entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <source>Boot</source>\n        <translation type=\"unfinished\">Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <source>Driver</source>\n        <translation type=\"unfinished\">Driver</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <source>System Preparation</source>\n        <translation type=\"unfinished\">System Preparation</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Hot Key</source>\n        <translation type=\"unfinished\">Hot Key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"78\"/>\n        <source>Are you sure you want to save?\nYour EFI configuration will be overwritten!</source>\n        <translation type=\"unfinished\">Are you sure you want to save?\nYour EFI configuration will be overwritten!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"86\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Saving EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"98\"/>\n        <source>ERROR: %0! %1</source>\n        <translation type=\"unfinished\">ERROR: %0! %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"114\"/>\n        <source>Finished</source>\n        <translation type=\"unfinished\">Finished</translation>\n    </message>\n</context>\n<context>\n    <name>EFIKeySequenceEdit</name>\n    <message>\n        <location filename=\"../src/efikeysequenceedit.cpp\" line=\"109\"/>\n        <source>Press hot key</source>\n        <translation type=\"unfinished\">Press hot key</translation>\n    </message>\n</context>\n<context>\n    <name>FilePathDialog</name>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"12\"/>\n        <source>File path editor</source>\n        <translation type=\"unfinished\">File path editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"47\"/>\n        <source>PCI</source>\n        <translation type=\"unfinished\">PCI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"80\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"86\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"196\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"202\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"218\"/>\n        <source>Function</source>\n        <translation type=\"unfinished\">Function</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"121\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"127\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"143\"/>\n        <source>Device</source>\n        <translation type=\"unfinished\">Device</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"721\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"727\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"742\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"835\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"841\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"856\"/>\n        <source>HID</source>\n        <translation type=\"unfinished\">HID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"761\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"767\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"782\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"896\"/>\n        <source>UID</source>\n        <translation type=\"unfinished\">UID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1813\"/>\n        <source>USB</source>\n        <translation type=\"unfinished\">USB</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1819\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1893\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1909\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3688\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3710\"/>\n        <source>Interface</source>\n        <translation type=\"unfinished\">Interface</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7442\"/>\n        <source>Vendor</source>\n        <translation type=\"unfinished\">Vendor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7445\"/>\n        <source>Vendor settings</source>\n        <translation type=\"unfinished\">Vendor settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7448\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1778\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1793\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5824\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6348\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7117\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7546\"/>\n        <source>GUID</source>\n        <translation type=\"unfinished\">GUID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5539\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7587\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7850\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7853\"/>\n        <source>Data format</source>\n        <translation type=\"unfinished\">Data format</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5542\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7590\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7856\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5546\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5869\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7860\"/>\n        <source>BASE64</source>\n        <translation type=\"unfinished\">BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1168\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5551\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5874\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7865\"/>\n        <source>UTF-16</source>\n        <translation type=\"unfinished\">UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1173\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5556\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7604\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7870\"/>\n        <source>UTF-8</source>\n        <translation type=\"unfinished\">UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5561\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7875\"/>\n        <source>HEX</source>\n        <translation type=\"unfinished\">HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5523\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5901\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7888\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7891\"/>\n        <source>Data</source>\n        <translation type=\"unfinished\">Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7894\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7565\"/>\n        <source>Vendor data</source>\n        <translation type=\"unfinished\">Vendor data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7481\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7757\"/>\n        <source>Type</source>\n        <translation type=\"unfinished\">Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7478\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7500\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7504\"/>\n        <source>HW</source>\n        <translation type=\"unfinished\">HW</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7509\"/>\n        <source>MSG</source>\n        <translation type=\"unfinished\">MSG</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7514\"/>\n        <source>MEDIA</source>\n        <translation type=\"unfinished\">MEDIA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2292\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2298\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2313\"/>\n        <source>MAC</source>\n        <translation type=\"unfinished\">MAC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2265\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;MAC settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;MAC settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2374\"/>\n        <source>IPv4</source>\n        <translation type=\"unfinished\">IPv4</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2380\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv4 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv4 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2569\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2591\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2925\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2931\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2947\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4110\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4116\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4132\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6616\"/>\n        <source>Protocol</source>\n        <translation type=\"unfinished\">Protocol</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3003\"/>\n        <source>Static</source>\n        <translation type=\"unfinished\">Static</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2692\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Subnet mask.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Subnet mask.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2730\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5479\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5486\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5503\"/>\n        <source>IPv6</source>\n        <translation type=\"unfinished\">IPv6</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2736\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv6 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv6 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3008\"/>\n        <source>Stateless auto-configuration</source>\n        <translation type=\"unfinished\">Stateless auto-configuration</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3013\"/>\n        <source>Stateful auto-configuration</source>\n        <translation type=\"unfinished\">Stateful auto-configuration</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3920\"/>\n        <source>SATA</source>\n        <translation type=\"unfinished\">SATA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SATA settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SATA settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1387\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1393\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1409\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1658\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1664\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1679\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3900\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4035\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4041\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4057\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4191\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4197\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4212\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4496\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4502\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4610\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4616\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4988\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5009\"/>\n        <source>LUN</source>\n        <translation type=\"unfinished\">LUN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4885\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4901\"/>\n        <source>URI</source>\n        <translation type=\"unfinished\">URI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6105\"/>\n        <source>Disk</source>\n        <translation type=\"unfinished\">Disk</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6102\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6123\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6126\"/>\n        <source>Choose disk</source>\n        <translation type=\"unfinished\">Choose disk</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6129\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Choose disk from discovered in the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Choose disk from discovered in the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6133\"/>\n        <source>Custom</source>\n        <translation type=\"unfinished\">Custom</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6147\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6150\"/>\n        <source>Reload drives</source>\n        <translation type=\"unfinished\">Reload drives</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reload system drives list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reload system drives list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6343\"/>\n        <source>MBR</source>\n        <translation type=\"unfinished\">MBR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6177\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6183\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6199\"/>\n        <source>Partition</source>\n        <translation type=\"unfinished\">Partition</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6720\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6741\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6797\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6812\"/>\n        <source>Name</source>\n        <translation type=\"unfinished\">Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7176\"/>\n        <source>BIOS Boot Specification</source>\n        <translation type=\"unfinished\">BIOS Boot Specification</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7405\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7411\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7427\"/>\n        <source>Description</source>\n        <translation type=\"unfinished\">Description</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7639\"/>\n        <source>End</source>\n        <translation type=\"unfinished\">End</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7669\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7672\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7678\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7797\"/>\n        <source>Sub-Type</source>\n        <translation type=\"unfinished\">Sub-Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7675\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7697\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7701\"/>\n        <source>End This Instance</source>\n        <translation type=\"unfinished\">End This Instance</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7706\"/>\n        <source>End Entire</source>\n        <translation type=\"unfinished\">End Entire</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7718\"/>\n        <source>Unknown</source>\n        <translation type=\"unfinished\">Unknown</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"50\"/>\n        <source>The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.</source>\n        <translation type=\"unfinished\">The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"53\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"77\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"99\"/>\n        <source>PCI Function Number.</source>\n        <translation type=\"unfinished\">PCI Function Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"83\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"105\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Function Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Function Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"118\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"140\"/>\n        <source>PCI Device Number.</source>\n        <translation type=\"unfinished\">PCI Device Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"124\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Device Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Device Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"163\"/>\n        <source>PCCARD</source>\n        <translation type=\"unfinished\">PCCARD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"166\"/>\n        <source>PCCARD Settings.</source>\n        <translation type=\"unfinished\">PCCARD Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCCARD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCCARD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"193\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"215\"/>\n        <source>Function Number (0 = First Function).</source>\n        <translation type=\"unfinished\">Function Number (0 = First Function).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"199\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"221\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Function Number (0 = First Function).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Function Number (0 = First Function).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"238\"/>\n        <source>Memory Mapped</source>\n        <translation type=\"unfinished\">Memory Mapped</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"241\"/>\n        <source>Memory Mapped Settings.</source>\n        <translation type=\"unfinished\">Memory Mapped Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Memory Mapped Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Memory Mapped Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"268\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"290\"/>\n        <source>The type of memory to allocate.</source>\n        <translation type=\"unfinished\">The type of memory to allocate.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"271\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"293\"/>\n        <source>Memory Type</source>\n        <translation type=\"unfinished\">Memory Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"274\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"296\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The type of memory to allocate.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The type of memory to allocate.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"300\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1584\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1738\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1753\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3145\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3160\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4416\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4437\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6868\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6883\"/>\n        <source>Reserved</source>\n        <translation type=\"unfinished\">Reserved</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"305\"/>\n        <source>Loader Code</source>\n        <translation type=\"unfinished\">Loader Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"310\"/>\n        <source>Loader Data</source>\n        <translation type=\"unfinished\">Loader Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"315\"/>\n        <source>Boot Services Code</source>\n        <translation type=\"unfinished\">Boot Services Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"320\"/>\n        <source>Boot Services Data</source>\n        <translation type=\"unfinished\">Boot Services Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"325\"/>\n        <source>Runtime Services Code</source>\n        <translation type=\"unfinished\">Runtime Services Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"330\"/>\n        <source>Runtime Services Data</source>\n        <translation type=\"unfinished\">Runtime Services Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"335\"/>\n        <source>Conventional</source>\n        <translation type=\"unfinished\">Conventional</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"340\"/>\n        <source>Unusable</source>\n        <translation type=\"unfinished\">Unusable</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"345\"/>\n        <source>ACPI Reclaim</source>\n        <translation type=\"unfinished\">ACPI Reclaim</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"350\"/>\n        <source>ACPI Memory NVS</source>\n        <translation type=\"unfinished\">ACPI Memory NVS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"355\"/>\n        <source>Memory Mapped IO</source>\n        <translation type=\"unfinished\">Memory Mapped IO</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"360\"/>\n        <source>Memory Mapped IO Port Space</source>\n        <translation type=\"unfinished\">Memory Mapped IO Port Space</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"365\"/>\n        <source>Pal Code</source>\n        <translation type=\"unfinished\">Pal Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"370\"/>\n        <source>Persistent</source>\n        <translation type=\"unfinished\">Persistent</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"375\"/>\n        <source>Unaccepted</source>\n        <translation type=\"unfinished\">Unaccepted</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"383\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7013\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7034\"/>\n        <source>Starting Memory Address.</source>\n        <translation type=\"unfinished\">Starting Memory Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"386\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"407\"/>\n        <source>Start Address</source>\n        <translation type=\"unfinished\">Start Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"389\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7019\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7040\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"423\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7053\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7074\"/>\n        <source>Ending Memory Address.</source>\n        <translation type=\"unfinished\">Ending Memory Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"426\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"432\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"447\"/>\n        <source>End Address</source>\n        <translation type=\"unfinished\">End Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"429\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7080\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ending Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ending Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"467\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"522\"/>\n        <source>Controller</source>\n        <translation type=\"unfinished\">Controller</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"470\"/>\n        <source>Controller settings.</source>\n        <translation type=\"unfinished\">Controller settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"473\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"519\"/>\n        <source>Controller number.</source>\n        <translation type=\"unfinished\">Controller number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"525\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"542\"/>\n        <source>BMC</source>\n        <translation type=\"unfinished\">BMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"545\"/>\n        <source>The Device Path for a Baseboard Management Controller (BMC) host interface.</source>\n        <translation type=\"unfinished\">The Device Path for a Baseboard Management Controller (BMC) host interface.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"548\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for a Baseboard Management Controller (BMC) host interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for a Baseboard Management Controller (BMC) host interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"602\"/>\n        <source>The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.</source>\n        <translation type=\"unfinished\">The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"579\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"589\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2332\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2354\"/>\n        <source>Interface Type</source>\n        <translation type=\"unfinished\">Interface Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"582\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"612\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"625\"/>\n        <source>Keyboard Controller Style</source>\n        <translation type=\"unfinished\">Keyboard Controller Style</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"630\"/>\n        <source>Server Management Interface Chip</source>\n        <translation type=\"unfinished\">Server Management Interface Chip</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"635\"/>\n        <source>Block Transfer</source>\n        <translation type=\"unfinished\">Block Transfer</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"643\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"664\"/>\n        <source>Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.</source>\n        <translation type=\"unfinished\">Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"667\"/>\n        <source>Base Address</source>\n        <translation type=\"unfinished\">Base Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"670\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"688\"/>\n        <source>ACPI</source>\n        <translation type=\"unfinished\">ACPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"805\"/>\n        <source>This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.</source>\n        <translation type=\"unfinished\">This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"808\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"718\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"739\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"832\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"853\"/>\n        <source>Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.</source>\n        <translation type=\"unfinished\">Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"724\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"745\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"838\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"859\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"779\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"872\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"893\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.</source>\n        <translation type=\"unfinished\">Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"764\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"785\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"899\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"802\"/>\n        <source>Expanded</source>\n        <translation type=\"unfinished\">Expanded</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"912\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"933\"/>\n        <source>Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.</source>\n        <translation type=\"unfinished\">Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"915\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"921\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"936\"/>\n        <source>CID</source>\n        <translation type=\"unfinished\">CID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"918\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"939\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"952\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"974\"/>\n        <source>Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.</source>\n        <translation type=\"unfinished\">Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"955\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"961\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"977\"/>\n        <source>HIDSTR</source>\n        <translation type=\"unfinished\">HIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"958\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"980\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"987\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1009\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.</source>\n        <translation type=\"unfinished\">Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"990\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"996\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1012\"/>\n        <source>UIDSTR</source>\n        <translation type=\"unfinished\">UIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"993\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1015\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1044\"/>\n        <source>Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.</source>\n        <translation type=\"unfinished\">Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1025\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1031\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1047\"/>\n        <source>CIDSTR</source>\n        <translation type=\"unfinished\">CIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1028\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1050\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1061\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1094\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1100\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1115\"/>\n        <source>ADR</source>\n        <translation type=\"unfinished\">ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1064\"/>\n        <source>The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.</source>\n        <translation type=\"unfinished\">The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1067\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1091\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1112\"/>\n        <source>ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required</source>\n        <translation type=\"unfinished\">ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1097\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1118\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1131\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1192\"/>\n        <source>This device path may optionally contain more than one ADR entry.</source>\n        <translation type=\"unfinished\">This device path may optionally contain more than one ADR entry.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1195\"/>\n        <source>Additional ADR</source>\n        <translation type=\"unfinished\">Additional ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1198\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path may optionally contain more than one ADR entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path may optionally contain more than one ADR entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1153\"/>\n        <source>Additional ADR format.</source>\n        <translation type=\"unfinished\">Additional ADR format.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1156\"/>\n        <source>Additional ADR format</source>\n        <translation type=\"unfinished\">Additional ADR format</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1159\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Additional ADR format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Additional ADR format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1209\"/>\n        <source>NVDIMM</source>\n        <translation type=\"unfinished\">NVDIMM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1212\"/>\n        <source>This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.</source>\n        <translation type=\"unfinished\">This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1260\"/>\n        <source>NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.</source>\n        <translation type=\"unfinished\">NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1242\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1248\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1263\"/>\n        <source>NFIT Device Handle</source>\n        <translation type=\"unfinished\">NFIT Device Handle</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1245\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1284\"/>\n        <source>ATAPI</source>\n        <translation type=\"unfinished\">ATAPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1287\"/>\n        <source>ATAPI Settings.</source>\n        <translation type=\"unfinished\">ATAPI Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1336\"/>\n        <source>Set to zero for primary or one for secondary.</source>\n        <translation type=\"unfinished\">Set to zero for primary or one for secondary.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1317\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1323\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1339\"/>\n        <source>Primary</source>\n        <translation type=\"unfinished\">Primary</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1320\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1342\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for primary or one for secondary.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for primary or one for secondary.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1349\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1371\"/>\n        <source>Set to zero for master or one for slave mode.</source>\n        <translation type=\"unfinished\">Set to zero for master or one for slave mode.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1374\"/>\n        <source>Slave</source>\n        <translation type=\"unfinished\">Slave</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1377\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for master or one for slave mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for master or one for slave mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1384\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1406\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4054\"/>\n        <source>Logical Unit Number.</source>\n        <translation type=\"unfinished\">Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1390\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1412\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4038\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1429\"/>\n        <source>SCSI</source>\n        <translation type=\"unfinished\">SCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1432\"/>\n        <source>SCSI Settings.</source>\n        <translation type=\"unfinished\">SCSI Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1435\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1481\"/>\n        <source>Target ID on the SCSI bus (PUN).</source>\n        <translation type=\"unfinished\">Target ID on the SCSI bus (PUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1962\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1984\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4969\"/>\n        <source>Target ID</source>\n        <translation type=\"unfinished\">Target ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1465\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1487\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the SCSI bus (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the SCSI bus (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4985\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5006\"/>\n        <source>Logical Unit Number (LUN).</source>\n        <translation type=\"unfinished\">Logical Unit Number (LUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5012\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1545\"/>\n        <source>Fibre Channel</source>\n        <translation type=\"unfinished\">Fibre Channel</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1548\"/>\n        <source>Fibre Channel Settings</source>\n        <translation type=\"unfinished\">Fibre Channel Settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1551\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1596\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1750\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4434\"/>\n        <source>Reserved.</source>\n        <translation type=\"unfinished\">Reserved.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1581\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1602\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1756\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3142\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4419\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1615\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1636\"/>\n        <source>Fibre Channel World Wide Name.</source>\n        <translation type=\"unfinished\">Fibre Channel World Wide Name.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1624\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1639\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4456\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4477\"/>\n        <source>World Wide Name</source>\n        <translation type=\"unfinished\">World Wide Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1621\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1642\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel World Wide Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel World Wide Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1676\"/>\n        <source>Fibre Channel Logical Unit Number.</source>\n        <translation type=\"unfinished\">Fibre Channel Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1661\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1682\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1699\"/>\n        <source>Firewire</source>\n        <translation type=\"unfinished\">Firewire</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1702\"/>\n        <source>Firewire Settings.</source>\n        <translation type=\"unfinished\">Firewire Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1705\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firewire Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firewire Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1790\"/>\n        <source>1394 Global Unique ID (GUID)</source>\n        <translation type=\"unfinished\">1394 Global Unique ID (GUID)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1796\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 Global Unique ID (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 Global Unique ID (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1816\"/>\n        <source>USB settings.</source>\n        <translation type=\"unfinished\">USB settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1865\"/>\n        <source>USB Parent Port Number.</source>\n        <translation type=\"unfinished\">USB Parent Port Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1852\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1868\"/>\n        <source>Parent Port</source>\n        <translation type=\"unfinished\">Parent Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1871\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Parent Port Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Parent Port Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1906\"/>\n        <source>USB Interface Number.</source>\n        <translation type=\"unfinished\">USB Interface Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1912\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1929\"/>\n        <source>I2O</source>\n        <translation type=\"unfinished\">I2O</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1932\"/>\n        <source>I2O Settings</source>\n        <translation type=\"unfinished\">I2O Settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1935\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;I2O Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;I2O Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1981\"/>\n        <source>Target ID (TID) for a device.</source>\n        <translation type=\"unfinished\">Target ID (TID) for a device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1965\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1987\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID (TID) for a device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID (TID) for a device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2004\"/>\n        <source>InfiniBand</source>\n        <translation type=\"unfinished\">InfiniBand</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2007\"/>\n        <source>InfiniBand Settings.</source>\n        <translation type=\"unfinished\">InfiniBand Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2010\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;InfiniBand Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;InfiniBand Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2034\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2067\"/>\n        <source>Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.</source>\n        <translation type=\"unfinished\">Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2043\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2055\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2076\"/>\n        <source>Resource Flags</source>\n        <translation type=\"unfinished\">Resource Flags</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2046\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2079\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2098\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2119\"/>\n        <source>128-bit Global Identifier for remote fabric port</source>\n        <translation type=\"unfinished\">128-bit Global Identifier for remote fabric port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2101\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2122\"/>\n        <source>PORT GID</source>\n        <translation type=\"unfinished\">PORT GID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2104\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2125\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;128-bit Global Identifier for remote fabric port&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;128-bit Global Identifier for remote fabric port&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2135\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2156\"/>\n        <source>64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)</source>\n        <translation type=\"unfinished\">64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2138\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2144\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2159\"/>\n        <source>IOC GUID/Service ID</source>\n        <translation type=\"unfinished\">IOC GUID/Service ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2141\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2162\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2175\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2196\"/>\n        <source>64-bit persistent ID of remote IOC port.</source>\n        <translation type=\"unfinished\">64-bit persistent ID of remote IOC port.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2184\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2199\"/>\n        <source>Target Port ID</source>\n        <translation type=\"unfinished\">Target Port ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2181\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote IOC port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote IOC port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2236\"/>\n        <source>64-bit persistent ID of remote device.</source>\n        <translation type=\"unfinished\">64-bit persistent ID of remote device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2239\"/>\n        <source>Device ID</source>\n        <translation type=\"unfinished\">Device ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2259\"/>\n        <source>MAC Address</source>\n        <translation type=\"unfinished\">MAC Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2262\"/>\n        <source>MAC settings.</source>\n        <translation type=\"unfinished\">MAC settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2289\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2310\"/>\n        <source>The MAC address for a network interface padded with 0s.</source>\n        <translation type=\"unfinished\">The MAC address for a network interface padded with 0s.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2295\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2316\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The MAC address for a network interface padded with 0s.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The MAC address for a network interface padded with 0s.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2329\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2351\"/>\n        <source>Network interface type (i.e., 802.3, FDDI). See RFC 3232.</source>\n        <translation type=\"unfinished\">Network interface type (i.e., 802.3, FDDI). See RFC 3232.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2357\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network interface type (i.e., 802.3, FDDI). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network interface type (i.e., 802.3, FDDI). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2377\"/>\n        <source>IPv4 settings.</source>\n        <translation type=\"unfinished\">IPv4 settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2425\"/>\n        <source>The local IPv4 address.</source>\n        <translation type=\"unfinished\">The local IPv4 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2407\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2763\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2784\"/>\n        <source>Local IP Address</source>\n        <translation type=\"unfinished\">Local IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2431\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2465\"/>\n        <source>The remote IPv4 address.</source>\n        <translation type=\"unfinished\">The remote IPv4 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2447\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2824\"/>\n        <source>Remote IP Address</source>\n        <translation type=\"unfinished\">Remote IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2471\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2862\"/>\n        <source>The local port number.</source>\n        <translation type=\"unfinished\">The local port number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2487\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2865\"/>\n        <source>Local Port</source>\n        <translation type=\"unfinished\">Local Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2490\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2547\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2903\"/>\n        <source>The remote port number.</source>\n        <translation type=\"unfinished\">The remote port number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2550\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2906\"/>\n        <source>Remote Port</source>\n        <translation type=\"unfinished\">Remote Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2553\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2909\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2566\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2588\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2922\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2944\"/>\n        <source>The network protocol (i.e., UDP, TCP). See RFC 3232.</source>\n        <translation type=\"unfinished\">The network protocol (i.e., UDP, TCP). See RFC 3232.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2928\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2950\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The network protocol (i.e., UDP, TCP). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The network protocol (i.e., UDP, TCP). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2631\"/>\n        <source>0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.</source>\n        <translation type=\"unfinished\">0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2635\"/>\n        <source>Static IP Address</source>\n        <translation type=\"unfinished\">Static IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2667\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3083\"/>\n        <source>The Gateway IP Address.</source>\n        <translation type=\"unfinished\">The Gateway IP Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3071\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3086\"/>\n        <source>Gateway IP Address</source>\n        <translation type=\"unfinished\">Gateway IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2673\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Gateway IP Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Gateway IP Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2686\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2707\"/>\n        <source>Subnet mask.</source>\n        <translation type=\"unfinished\">Subnet mask.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2689\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2695\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2710\"/>\n        <source>Subnet Mask</source>\n        <translation type=\"unfinished\">Subnet Mask</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2733\"/>\n        <source>IPv6 settings.</source>\n        <translation type=\"unfinished\">IPv6 settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2760\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2781\"/>\n        <source>The local IPv6 address.</source>\n        <translation type=\"unfinished\">The local IPv6 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2787\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2821\"/>\n        <source>The remote IPv6 address.</source>\n        <translation type=\"unfinished\">The remote IPv6 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2963\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2989\"/>\n        <source>0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.</source>\n        <translation type=\"unfinished\">0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2976\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2994\"/>\n        <source>IP Address Origin</source>\n        <translation type=\"unfinished\">IP Address Origin</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2971\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2997\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3021\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3043\"/>\n        <source>The Prefix Length.</source>\n        <translation type=\"unfinished\">The Prefix Length.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3024\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3030\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3046\"/>\n        <source>Prefix Length</source>\n        <translation type=\"unfinished\">Prefix Length</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3027\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3049\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Prefix Length.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Prefix Length.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3106\"/>\n        <source>UART</source>\n        <translation type=\"unfinished\">UART</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3109\"/>\n        <source>UART Settings.</source>\n        <translation type=\"unfinished\">UART Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3112\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3176\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3197\"/>\n        <source>The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.</source>\n        <translation type=\"unfinished\">The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3179\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3185\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3200\"/>\n        <source>Baud Rate</source>\n        <translation type=\"unfinished\">Baud Rate</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3182\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3203\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3216\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3238\"/>\n        <source>The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.</source>\n        <translation type=\"unfinished\">The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3219\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3225\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3241\"/>\n        <source>Data Bits</source>\n        <translation type=\"unfinished\">Data Bits</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3222\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3257\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3291\"/>\n        <source>The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.</source>\n        <translation type=\"unfinished\">The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3266\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3300\"/>\n        <source>Parity</source>\n        <translation type=\"unfinished\">Parity</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3303\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3313\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3394\"/>\n        <source>Default</source>\n        <translation type=\"unfinished\">Default</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3318\"/>\n        <source>No</source>\n        <translation type=\"unfinished\">No</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3323\"/>\n        <source>Even</source>\n        <translation type=\"unfinished\">Even</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3328\"/>\n        <source>Odd</source>\n        <translation type=\"unfinished\">Odd</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3333\"/>\n        <source>Mark</source>\n        <translation type=\"unfinished\">Mark</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3338\"/>\n        <source>Space</source>\n        <translation type=\"unfinished\">Space</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3346\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3376\"/>\n        <source>The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.</source>\n        <translation type=\"unfinished\">The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3353\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3363\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3383\"/>\n        <source>Stop Bits</source>\n        <translation type=\"unfinished\">Stop Bits</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3356\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3399\"/>\n        <source>1</source>\n        <translation type=\"unfinished\">1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3404\"/>\n        <source>1.5</source>\n        <translation type=\"unfinished\">1.5</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3409\"/>\n        <source>2</source>\n        <translation type=\"unfinished\">2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3421\"/>\n        <source>USB Class</source>\n        <translation type=\"unfinished\">USB Class</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3424\"/>\n        <source>USB Class Settings.</source>\n        <translation type=\"unfinished\">USB Class Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3427\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Class Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Class Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3451\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3472\"/>\n        <source>Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.</source>\n        <translation type=\"unfinished\">Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3454\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3460\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3475\"/>\n        <source>Vendor ID</source>\n        <translation type=\"unfinished\">Vendor ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3457\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3478\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3491\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3512\"/>\n        <source>Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.</source>\n        <translation type=\"unfinished\">Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3515\"/>\n        <source>Product ID</source>\n        <translation type=\"unfinished\">Product ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3518\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3552\"/>\n        <source>The class code assigned by the USB-IF. A value of 0xFF will match any class code.</source>\n        <translation type=\"unfinished\">The class code assigned by the USB-IF. A value of 0xFF will match any class code.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3540\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3555\"/>\n        <source>Device Class</source>\n        <translation type=\"unfinished\">Device Class</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3537\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3558\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The class code assigned by the USB-IF. A value of 0xFF will match any class code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The class code assigned by the USB-IF. A value of 0xFF will match any class code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3592\"/>\n        <source>The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.</source>\n        <translation type=\"unfinished\">The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3574\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3595\"/>\n        <source>Device Subclass</source>\n        <translation type=\"unfinished\">Device Subclass</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3632\"/>\n        <source>The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.</source>\n        <translation type=\"unfinished\">The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3635\"/>\n        <source>Device Protocol</source>\n        <translation type=\"unfinished\">Device Protocol</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3617\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3655\"/>\n        <source>USB WWID</source>\n        <translation type=\"unfinished\">USB WWID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3658\"/>\n        <source>This device path describes a USB device using its serial number.</source>\n        <translation type=\"unfinished\">This device path describes a USB device using its serial number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3661\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a USB device using its serial number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a USB device using its serial number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3685\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3707\"/>\n        <source>USB interface Number.</source>\n        <translation type=\"unfinished\">USB interface Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3747\"/>\n        <source>USB vendor id of the device.</source>\n        <translation type=\"unfinished\">USB vendor id of the device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3750\"/>\n        <source>Device Vendor Id</source>\n        <translation type=\"unfinished\">Device Vendor Id</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3753\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB vendor id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB vendor id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3787\"/>\n        <source>USB product id of the device.</source>\n        <translation type=\"unfinished\">USB product id of the device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3790\"/>\n        <source>Device Product Id</source>\n        <translation type=\"unfinished\">Device Product Id</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3793\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB product id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB product id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3828\"/>\n        <source>Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).</source>\n        <translation type=\"unfinished\">Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3815\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3831\"/>\n        <source>Serial Number</source>\n        <translation type=\"unfinished\">Serial Number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3812\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3845\"/>\n        <source>Device Logical Unit</source>\n        <translation type=\"unfinished\">Device Logical Unit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3848\"/>\n        <source>Device Logical Unit Settings.</source>\n        <translation type=\"unfinished\">Device Logical Unit Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3851\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device Logical Unit Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device Logical Unit Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3897\"/>\n        <source>Logical Unit Number for the interface.</source>\n        <translation type=\"unfinished\">Logical Unit Number for the interface.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3903\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number for the interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number for the interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3923\"/>\n        <source>SATA settings.</source>\n        <translation type=\"unfinished\">SATA settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3950\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3972\"/>\n        <source>The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.</source>\n        <translation type=\"unfinished\">The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3953\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3975\"/>\n        <source>HBA Port</source>\n        <translation type=\"unfinished\">HBA Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3956\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3978\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4013\"/>\n        <source>The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.</source>\n        <translation type=\"unfinished\">The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4000\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4016\"/>\n        <source>Port Multiplier Port</source>\n        <translation type=\"unfinished\">Port Multiplier Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3997\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4019\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4077\"/>\n        <source>iSCSI</source>\n        <translation type=\"unfinished\">iSCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4080\"/>\n        <source>iSCSI Settings.</source>\n        <translation type=\"unfinished\">iSCSI Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4083\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4129\"/>\n        <source>Network Protocol (0 = TCP, 1+ = reserved).</source>\n        <translation type=\"unfinished\">Network Protocol (0 = TCP, 1+ = reserved).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4113\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network Protocol (0 = TCP, 1+ = reserved).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network Protocol (0 = TCP, 1+ = reserved).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4148\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4169\"/>\n        <source>iSCSI Login Options.</source>\n        <translation type=\"unfinished\">iSCSI Login Options.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4151\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4172\"/>\n        <source>Options</source>\n        <translation type=\"unfinished\">Options</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4154\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4175\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Login Options.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Login Options.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4188\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4209\"/>\n        <source>8 byte array containing the iSCSI Logical Unit Number.</source>\n        <translation type=\"unfinished\">8 byte array containing the iSCSI Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4194\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing the iSCSI Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing the iSCSI Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4228\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4250\"/>\n        <source>iSCSI Target Portal group tag the initiator intends to establish a session with.</source>\n        <translation type=\"unfinished\">iSCSI Target Portal group tag the initiator intends to establish a session with.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4231\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4253\"/>\n        <source>Target Portal Group</source>\n        <translation type=\"unfinished\">Target Portal Group</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4234\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4256\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Target Portal group tag the initiator intends to establish a session with.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Target Portal group tag the initiator intends to establish a session with.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4291\"/>\n        <source>iSCSI NodeTarget Name.</source>\n        <translation type=\"unfinished\">iSCSI NodeTarget Name.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4272\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4294\"/>\n        <source>Target Name</source>\n        <translation type=\"unfinished\">Target Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4275\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4297\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI NodeTarget Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI NodeTarget Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4308\"/>\n        <source>VLAN</source>\n        <translation type=\"unfinished\">VLAN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4311\"/>\n        <source>VLAN Settings.</source>\n        <translation type=\"unfinished\">VLAN Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4314\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4360\"/>\n        <source>VLAN identifier (0-4094).</source>\n        <translation type=\"unfinished\">VLAN identifier (0-4094).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4341\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4347\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4363\"/>\n        <source>Vlan ID</source>\n        <translation type=\"unfinished\">Vlan ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4344\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4366\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN identifier (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN identifier (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4383\"/>\n        <source>Fibre Channel Ex</source>\n        <translation type=\"unfinished\">Fibre Channel Ex</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4386\"/>\n        <source>The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation type=\"unfinished\">The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4389\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4474\"/>\n        <source>8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).</source>\n        <translation type=\"unfinished\">8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4480\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4514\"/>\n        <source>8 byte array containing Fibre Channel Logical Unit Number.</source>\n        <translation type=\"unfinished\">8 byte array containing Fibre Channel Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4499\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4520\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4537\"/>\n        <source>SAS Extended Messaging</source>\n        <translation type=\"unfinished\">SAS Extended Messaging</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4540\"/>\n        <source>The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation type=\"unfinished\">The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4543\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4567\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4588\"/>\n        <source>8-byte array of the SAS Address for Serial Attached SCSI Target Port.</source>\n        <translation type=\"unfinished\">8-byte array of the SAS Address for Serial Attached SCSI Target Port.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4570\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4576\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4591\"/>\n        <source>SAS Address</source>\n        <translation type=\"unfinished\">SAS Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4573\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4594\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Address for Serial Attached SCSI Target Port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Address for Serial Attached SCSI Target Port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4628\"/>\n        <source>8-byte array of the SAS Logical Unit Number.</source>\n        <translation type=\"unfinished\">8-byte array of the SAS Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4613\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4634\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4647\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4668\"/>\n        <source>More Information about the device and its interconnect.</source>\n        <translation type=\"unfinished\">More Information about the device and its interconnect.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4650\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4656\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4671\"/>\n        <source>Device and Topology Info</source>\n        <translation type=\"unfinished\">Device and Topology Info</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4653\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4674\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;More Information about the device and its interconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;More Information about the device and its interconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4687\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4709\"/>\n        <source>Relative Target Port (RTP).</source>\n        <translation type=\"unfinished\">Relative Target Port (RTP).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4690\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4696\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4712\"/>\n        <source>Relative Target Port</source>\n        <translation type=\"unfinished\">Relative Target Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4715\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Relative Target Port (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Relative Target Port (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4732\"/>\n        <source>NVM Express NS</source>\n        <translation type=\"unfinished\">NVM Express NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4735\"/>\n        <source>NVM Express Namespace Settings.</source>\n        <translation type=\"unfinished\">NVM Express Namespace Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4738\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM Express Namespace Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM Express Namespace Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4783\"/>\n        <source>Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.</source>\n        <translation type=\"unfinished\">Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4765\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4771\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4786\"/>\n        <source>NSID</source>\n        <translation type=\"unfinished\">NSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4768\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4789\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4802\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4823\"/>\n        <source>This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.</source>\n        <translation type=\"unfinished\">This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4805\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4811\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4826\"/>\n        <source>EUI-64</source>\n        <translation type=\"unfinished\">EUI-64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4808\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4829\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4849\"/>\n        <source>Refer to RFC 3986 for details on the URI contents.</source>\n        <translation type=\"unfinished\">Refer to RFC 3986 for details on the URI contents.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Refer to RFC 3986 for details on the URI contents.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Refer to RFC 3986 for details on the URI contents.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4876\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4898\"/>\n        <source>Instance of the URI pursuant to RFC 3986.</source>\n        <translation type=\"unfinished\">Instance of the URI pursuant to RFC 3986.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4882\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Instance of the URI pursuant to RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Instance of the URI pursuant to RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4915\"/>\n        <source>UFS</source>\n        <translation type=\"unfinished\">UFS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4918\"/>\n        <source>UFS Settings.</source>\n        <translation type=\"unfinished\">UFS Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4966\"/>\n        <source>Target ID on the UFS interface (PUN).</source>\n        <translation type=\"unfinished\">Target ID on the UFS interface (PUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4972\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the UFS interface (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the UFS interface (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5029\"/>\n        <source>SD</source>\n        <translation type=\"unfinished\">SD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5032\"/>\n        <source>SD Settings.</source>\n        <translation type=\"unfinished\">SD Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5035\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5081\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5299\"/>\n        <source>Slot Number</source>\n        <translation type=\"unfinished\">Slot Number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5084\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5280\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5286\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5302\"/>\n        <source>Slot</source>\n        <translation type=\"unfinished\">Slot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5087\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5283\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5305\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Slot Number&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Slot Number&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5104\"/>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\">Bluetooth</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5107\"/>\n        <source>EFI Bluetooth Settings.</source>\n        <translation type=\"unfinished\">EFI Bluetooth Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5110\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI Bluetooth Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI Bluetooth Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5155\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5373\"/>\n        <source>48-bit Bluetooth device address.</source>\n        <translation type=\"unfinished\">48-bit Bluetooth device address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5143\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5158\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5361\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5376\"/>\n        <source>Device Address</source>\n        <translation type=\"unfinished\">Device Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5161\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5379\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-bit Bluetooth device address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-bit Bluetooth device address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5178\"/>\n        <source>Wi-Fi</source>\n        <translation type=\"unfinished\">Wi-Fi</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5181\"/>\n        <source>Wi-Fi Settings.</source>\n        <translation type=\"unfinished\">Wi-Fi Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5184\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wi-Fi Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wi-Fi Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5208\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5230\"/>\n        <source>SSID in octet string.</source>\n        <translation type=\"unfinished\">SSID in octet string.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5211\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5217\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5233\"/>\n        <source>SSID</source>\n        <translation type=\"unfinished\">SSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5214\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5236\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID in octet string.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID in octet string.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5247\"/>\n        <source>eMMC</source>\n        <translation type=\"unfinished\">eMMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5250\"/>\n        <source>Embedded Multi-Media Card Settings.</source>\n        <translation type=\"unfinished\">Embedded Multi-Media Card Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5253\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Embedded Multi-Media Card Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Embedded Multi-Media Card Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5322\"/>\n        <source>BluetoothLE</source>\n        <translation type=\"unfinished\">BluetoothLE</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5325\"/>\n        <source>EFI BluetoothLE Settings.</source>\n        <translation type=\"unfinished\">EFI BluetoothLE Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5328\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI BluetoothLE Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI BluetoothLE Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5416\"/>\n        <source>0x00 - Public Device Address.\n0x01 - Random Device Address.</source>\n        <translation type=\"unfinished\">0x00 - Public Device Address.\n0x01 - Random Device Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5396\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5403\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5420\"/>\n        <source>Address Type</source>\n        <translation type=\"unfinished\">Address Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5399\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5423\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Public Device Address.\n0x01 - Random Device Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Public Device Address.\n0x01 - Random Device Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5428\"/>\n        <source>Public</source>\n        <translation type=\"unfinished\">Public</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5433\"/>\n        <source>Random</source>\n        <translation type=\"unfinished\">Random</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5445\"/>\n        <source>DNS</source>\n        <translation type=\"unfinished\">DNS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5448\"/>\n        <source>DNS Settings.</source>\n        <translation type=\"unfinished\">DNS Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5451\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DNS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DNS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5499\"/>\n        <source>0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.</source>\n        <translation type=\"unfinished\">0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5482\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5506\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5514\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5575\"/>\n        <source>One or more instances of the DNS server address in EFI_IP_ADDRESS.</source>\n        <translation type=\"unfinished\">One or more instances of the DNS server address in EFI_IP_ADDRESS.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5520\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5581\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;One or more instances of the DNS server address in EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;One or more instances of the DNS server address in EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5536\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7584\"/>\n        <source>Data format.</source>\n        <translation type=\"unfinished\">Data format.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5592\"/>\n        <source>NVDIMM NS</source>\n        <translation type=\"unfinished\">NVDIMM NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5595\"/>\n        <source>This device path describes a bootable NVDIMM namespace that is defined by a namespace label.</source>\n        <translation type=\"unfinished\">This device path describes a bootable NVDIMM namespace that is defined by a namespace label.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVDIMM namespace that is defined by a namespace label.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVDIMM namespace that is defined by a namespace label.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5622\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5643\"/>\n        <source>Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.</source>\n        <translation type=\"unfinished\">Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5646\"/>\n        <source>UUID</source>\n        <translation type=\"unfinished\">UUID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5628\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5649\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5663\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5698\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5706\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5724\"/>\n        <source>REST Service</source>\n        <translation type=\"unfinished\">REST Service</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5666\"/>\n        <source>REST Service Settings.</source>\n        <translation type=\"unfinished\">REST Service Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5669\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;REST Service Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;REST Service Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5719\"/>\n        <source>0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.</source>\n        <translation type=\"unfinished\">0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5701\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5727\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5733\"/>\n        <source>Redfish</source>\n        <translation type=\"unfinished\">Redfish</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5738\"/>\n        <source>OData</source>\n        <translation type=\"unfinished\">OData</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5743\"/>\n        <source>Vendor specific</source>\n        <translation type=\"unfinished\">Vendor specific</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5775\"/>\n        <source>0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.</source>\n        <translation type=\"unfinished\">0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5755\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5779\"/>\n        <source>Access Mode</source>\n        <translation type=\"unfinished\">Access Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5782\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5787\"/>\n        <source>In-Band</source>\n        <translation type=\"unfinished\">In-Band</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5792\"/>\n        <source>Out-of-band</source>\n        <translation type=\"unfinished\">Out-of-band</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5821\"/>\n        <source>GUID of vendor specific REST service.</source>\n        <translation type=\"unfinished\">GUID of vendor specific REST service.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID of vendor specific REST service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID of vendor specific REST service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5898\"/>\n        <source>Vendor-defined data.</source>\n        <translation type=\"unfinished\">Vendor-defined data.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5915\"/>\n        <source>NVMe-oF NS</source>\n        <translation type=\"unfinished\">NVMe-oF NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5918\"/>\n        <source>This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.</source>\n        <translation type=\"unfinished\">This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5967\"/>\n        <source>Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.</source>\n        <translation type=\"unfinished\">Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5970\"/>\n        <source>NIDT</source>\n        <translation type=\"unfinished\">NIDT</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5973\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5986\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6007\"/>\n        <source>Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.</source>\n        <translation type=\"unfinished\">Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5989\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5995\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6010\"/>\n        <source>NID</source>\n        <translation type=\"unfinished\">NID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5992\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6013\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6023\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6045\"/>\n        <source>Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.</source>\n        <translation type=\"unfinished\">Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6026\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6048\"/>\n        <source>Subsystem NQN</source>\n        <translation type=\"unfinished\">Subsystem NQN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6029\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6051\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6066\"/>\n        <source>Hard Drive</source>\n        <translation type=\"unfinished\">Hard Drive</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6069\"/>\n        <source>The Hard Drive Media Device Path is used to represent a partition on a hard drive.</source>\n        <translation type=\"unfinished\">The Hard Drive Media Device Path is used to represent a partition on a hard drive.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6072\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Hard Drive Media Device Path is used to represent a partition on a hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Hard Drive Media Device Path is used to represent a partition on a hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6174\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6196\"/>\n        <source>Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].</source>\n        <translation type=\"unfinished\">Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6180\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6236\"/>\n        <source>Starting LBA of the partition on the hard drive.</source>\n        <translation type=\"unfinished\">Starting LBA of the partition on the hard drive.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6466\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6487\"/>\n        <source>Partition Start</source>\n        <translation type=\"unfinished\">Partition Start</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting LBA of the partition on the hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting LBA of the partition on the hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6255\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6276\"/>\n        <source>Size of the partition in units of Logical Blocks.</source>\n        <translation type=\"unfinished\">Size of the partition in units of Logical Blocks.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6258\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6264\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6279\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6527\"/>\n        <source>Partition Size</source>\n        <translation type=\"unfinished\">Partition Size</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6261\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6282\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Logical Blocks.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Logical Blocks.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6295\"/>\n        <source>Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation type=\"unfinished\">Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6301\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6310\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6367\"/>\n        <source>Partition Signature</source>\n        <translation type=\"unfinished\">Partition Signature</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6304\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6322\"/>\n        <source>PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.</source>\n        <translation type=\"unfinished\">PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6328\"/>\n        <source>Signature Type</source>\n        <translation type=\"unfinished\">Signature Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6331\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6338\"/>\n        <source>None</source>\n        <translation type=\"unfinished\">None</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6361\"/>\n        <source>Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation type=\"unfinished\">Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6370\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6392\"/>\n        <source>CD-ROM</source>\n        <translation type=\"unfinished\">CD-ROM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6395\"/>\n        <source>The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.</source>\n        <translation type=\"unfinished\">The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6398\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6444\"/>\n        <source>Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.</source>\n        <translation type=\"unfinished\">Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6425\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6431\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6447\"/>\n        <source>Boot Entry</source>\n        <translation type=\"unfinished\">Boot Entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6450\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6463\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6484\"/>\n        <source>Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.</source>\n        <translation type=\"unfinished\">Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6469\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6490\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6524\"/>\n        <source>Size of the partition in units of Blocks, also called Sectors.</source>\n        <translation type=\"unfinished\">Size of the partition in units of Blocks, also called Sectors.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6530\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Blocks, also called Sectors.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Blocks, also called Sectors.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6547\"/>\n        <source>File Path</source>\n        <translation type=\"unfinished\">File Path</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6550\"/>\n        <source>File Path settings.</source>\n        <translation type=\"unfinished\">File Path settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6553\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File Path settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File Path settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6599\"/>\n        <source>Path including directory and file names.</source>\n        <translation type=\"unfinished\">Path including directory and file names.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6586\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6602\"/>\n        <source>Path Name</source>\n        <translation type=\"unfinished\">Path Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6583\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6605\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Path including directory and file names.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Path including directory and file names.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6619\"/>\n        <source>The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.</source>\n        <translation type=\"unfinished\">The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6622\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6667\"/>\n        <source>The ID of the protocol.</source>\n        <translation type=\"unfinished\">The ID of the protocol.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6673\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ID of the protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ID of the protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6687\"/>\n        <source>Firmware File</source>\n        <translation type=\"unfinished\">Firmware File</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6690\"/>\n        <source>Describes a firmware file in a firmware volume.</source>\n        <translation type=\"unfinished\">Describes a firmware file in a firmware volume.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6693\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware file in a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware file in a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6717\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6738\"/>\n        <source>Firmware file name GUID.</source>\n        <translation type=\"unfinished\">Firmware file name GUID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6723\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6744\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware file name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware file name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6758\"/>\n        <source>Firmware Volume</source>\n        <translation type=\"unfinished\">Firmware Volume</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6761\"/>\n        <source>Describes a firmware volume.</source>\n        <translation type=\"unfinished\">Describes a firmware volume.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6764\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6809\"/>\n        <source>Firmware volume name GUID.</source>\n        <translation type=\"unfinished\">Firmware volume name GUID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware volume name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware volume name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6829\"/>\n        <source>Relative Offset Range</source>\n        <translation type=\"unfinished\">Relative Offset Range</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6832\"/>\n        <source>This device path node specifies a range of offsets relative to the first byte available on the device.</source>\n        <translation type=\"unfinished\">This device path node specifies a range of offsets relative to the first byte available on the device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6835\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path node specifies a range of offsets relative to the first byte available on the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path node specifies a range of offsets relative to the first byte available on the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6880\"/>\n        <source>Reserved for future use.</source>\n        <translation type=\"unfinished\">Reserved for future use.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6886\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved for future use.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved for future use.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6899\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6920\"/>\n        <source>Offset of the first byte, relative to the parent device node.</source>\n        <translation type=\"unfinished\">Offset of the first byte, relative to the parent device node.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6902\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6908\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6923\"/>\n        <source>Starting Offset</source>\n        <translation type=\"unfinished\">Starting Offset</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6905\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the first byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the first byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6939\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6960\"/>\n        <source>Offset of the last byte, relative to the parent device node.</source>\n        <translation type=\"unfinished\">Offset of the last byte, relative to the parent device node.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6942\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6963\"/>\n        <source>Ending Offset</source>\n        <translation type=\"unfinished\">Ending Offset</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6966\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the last byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the last byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6983\"/>\n        <source>RAM Disk</source>\n        <translation type=\"unfinished\">RAM Disk</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6986\"/>\n        <source>RAM Disk Settings.</source>\n        <translation type=\"unfinished\">RAM Disk Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6989\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7016\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7037\"/>\n        <source>Starting Address</source>\n        <translation type=\"unfinished\">Starting Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7056\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7077\"/>\n        <source>Ending Address</source>\n        <translation type=\"unfinished\">Ending Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7093\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7114\"/>\n        <source>GUID that defines the type of the RAM Disk.</source>\n        <translation type=\"unfinished\">GUID that defines the type of the RAM Disk.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7120\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID that defines the type of the RAM Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID that defines the type of the RAM Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7130\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7152\"/>\n        <source>RAM Disk instance number, if supported.</source>\n        <translation type=\"unfinished\">RAM Disk instance number, if supported.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7133\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7155\"/>\n        <source>Disk Instance</source>\n        <translation type=\"unfinished\">Disk Instance</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7158\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk instance number, if supported.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk instance number, if supported.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7179\"/>\n        <source>This Device Path is used to describe the booting of non-EFI-aware operating systems.</source>\n        <translation type=\"unfinished\">This Device Path is used to describe the booting of non-EFI-aware operating systems.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7182\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path is used to describe the booting of non-EFI-aware operating systems.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path is used to describe the booting of non-EFI-aware operating systems.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7206\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7249\"/>\n        <source>An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.</source>\n        <translation type=\"unfinished\">An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7220\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7263\"/>\n        <source>Device Type</source>\n        <translation type=\"unfinished\">Device Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7223\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7290\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7347\"/>\n        <source>Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero</source>\n        <translation type=\"unfinished\">Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7311\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7368\"/>\n        <source>Status Flag</source>\n        <translation type=\"unfinished\">Status Flag</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7371\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7402\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7424\"/>\n        <source>String that describes the boot device to a user.</source>\n        <translation type=\"unfinished\">String that describes the boot device to a user.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7408\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7430\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;String that describes the boot device to a user.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;String that describes the boot device to a user.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7543\"/>\n        <source>Vendor-assigned GUID that defines the data that follows.</source>\n        <translation type=\"unfinished\">Vendor-assigned GUID that defines the data that follows.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7549\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-assigned GUID that defines the data that follows.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-assigned GUID that defines the data that follows.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7562\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7622\"/>\n        <source>Vendor-defined variable size data.</source>\n        <translation type=\"unfinished\">Vendor-defined variable size data.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7568\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7628\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined variable size data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined variable size data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7642\"/>\n        <source>Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.</source>\n        <translation type=\"unfinished\">Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7645\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7721\"/>\n        <source>Unknown file path specifier settings</source>\n        <translation type=\"unfinished\">Unknown file path specifier settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7724\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown file path specifier settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown file path specifier settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7748\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7772\"/>\n        <source>Unknown Type</source>\n        <translation type=\"unfinished\">Unknown Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7754\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7775\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7812\"/>\n        <source>Unknown Sub-Type</source>\n        <translation type=\"unfinished\">Unknown Sub-Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7828\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7831\"/>\n        <source>Unknown data</source>\n        <translation type=\"unfinished\">Unknown data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/filepathdialog.cpp\" line=\"1569\"/>\n        <source>Couldn&apos;t change data format!</source>\n        <translation type=\"unfinished\">Couldn&apos;t change data format!</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeyListModel</name>\n    <message>\n        <location filename=\"../src/hotkeylistmodel.cpp\" line=\"100\"/>\n        <source>boot option</source>\n        <translation type=\"unfinished\">boot option</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Boot option</source>\n        <translation type=\"unfinished\">Boot option</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Hot key</source>\n        <translation type=\"unfinished\">Hot key</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Vendor data</source>\n        <translation type=\"unfinished\">Vendor data</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeysDialog</name>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"20\"/>\n        <source>Hot Keys editor</source>\n        <translation type=\"unfinished\">Hot Keys editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"41\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"44\"/>\n        <source>Hot Keys</source>\n        <translation type=\"unfinished\">Hot Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"47\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"125\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"128\"/>\n        <source>Index filter</source>\n        <translation type=\"unfinished\">Index filter</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"131\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Index filter&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Index filter&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"163\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"166\"/>\n        <source>Remove hot key</source>\n        <translation type=\"unfinished\">Remove hot key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"191\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"194\"/>\n        <source>Add hot key</source>\n        <translation type=\"unfinished\">Add hot key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"197\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <location filename=\"../include/commands.h\" line=\"21\"/>\n        <location filename=\"../include/commands.h\" line=\"66\"/>\n        <source>Change %1 to &quot;%2&quot;</source>\n        <translation type=\"unfinished\">Change %1 to &quot;%2&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"35\"/>\n        <source>Insert %1 entry &quot;%2&quot; at position %3</source>\n        <translation type=\"unfinished\">Insert %1 entry &quot;%2&quot; at position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"50\"/>\n        <source>Remove %1 entry &quot;%2&quot; from position %3</source>\n        <translation type=\"unfinished\">Remove %1 entry &quot;%2&quot; from position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"73\"/>\n        <location filename=\"../src/commands.cpp\" line=\"116\"/>\n        <source>Move %1 entry &quot;%2&quot; from position %3 to %4</source>\n        <translation type=\"unfinished\">Move %1 entry &quot;%2&quot; from position %3 to %4</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <location filename=\"../include/commands.h\" line=\"157\"/>\n        <location filename=\"../include/commands.h\" line=\"198\"/>\n        <source>Change %1 entry &quot;%2&quot; %3 to &quot;%4&quot;</source>\n        <translation type=\"unfinished\">Change %1 entry &quot;%2&quot; %3 to &quot;%4&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <source>Optional data</source>\n        <translation type=\"unfinished\">Optional data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"227\"/>\n        <source>Insert %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation type=\"unfinished\">Insert %1 entry &quot;%2&quot; file path at position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"242\"/>\n        <source>Remove %1 entry &quot;%2&quot; file path from position %3</source>\n        <translation type=\"unfinished\">Remove %1 entry &quot;%2&quot; file path from position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"257\"/>\n        <source>Set %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation type=\"unfinished\">Set %1 entry &quot;%2&quot; file path at position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <source>Insert %1 entry at position %2</source>\n        <translation type=\"unfinished\">Insert %1 entry at position %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>Key</source>\n        <translation type=\"unfinished\">Key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <source>Remove %1 entry from position %2</source>\n        <translation type=\"unfinished\">Remove %1 entry from position %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <location filename=\"../include/commands.h\" line=\"362\"/>\n        <location filename=\"../include/commands.h\" line=\"403\"/>\n        <source>Change %1 entry at position %2 %3 to &quot;%4&quot;</source>\n        <translation type=\"unfinished\">Change %1 entry at position %2 %3 to &quot;%4&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>keys</source>\n        <translation type=\"unfinished\">keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"293\"/>\n        <location filename=\"../src/commands.cpp\" line=\"333\"/>\n        <source>Move %1 entry &quot;%2&quot; file path from position %3 to %4</source>\n        <translation type=\"unfinished\">Move %1 entry &quot;%2&quot; file path from position %3 to %4</translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/efibooteditor_ta.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"ta\" sourcelanguage=\"en_US\">\n<context>\n    <name>BootEntryForm</name>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"169\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"172\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"182\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"185\"/>\n        <source>Description</source>\n        <translation>விவரம்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"198\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"201\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"204\"/>\n        <source>Path</source>\n        <translation>பாதை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"415\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"418\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"478\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"481\"/>\n        <source>Optional data</source>\n        <translation>விருப்ப தரவு</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"421\"/>\n        <source>Optional</source>\n        <translation>விரும்பினால்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"434\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"437\"/>\n        <source>Optional data format</source>\n        <translation>விருப்ப தரவு வடிவம்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"6\"/>\n        <source>Boot entry form</source>\n        <translation>துவக்க நுழைவு படிவம்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"24\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"27\"/>\n        <source>Error</source>\n        <translation>பிழை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"40\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"43\"/>\n        <source>Error note</source>\n        <translation>பிழை குறிப்பு</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"46\"/>\n        <source>This entry placeholder is shown here to indicate it&apos;s referenced in boot order. It won&apos;t be modified on save, just left as is.</source>\n        <translation>இந்த நுழைவு ஒதுக்கிடத்தில் இது துவக்க வரிசையில் குறிப்பிடப்பட்டுள்ளது என்பதைக் குறிக்க இங்கே காட்டப்பட்டுள்ளது. இது சேமிப்பதில் மாற்றப்படாது, அப்படியே விட்டுவிட்டது.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"147\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"150\"/>\n        <source>Hot Keys</source>\n        <translation>சூடான விசைகள்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; சூடான விசைகள் &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"188\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry description.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; நுழைவு விளக்கம். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"222\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"225\"/>\n        <source>Device path</source>\n        <translation>சாதன பாதை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; சாதன பாதை. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"280\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"283\"/>\n        <source>Move file path up</source>\n        <translation>கோப்பு பாதையை மேலே நகர்த்தவும்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"286\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; கோப்பு பாதையை மேலே நகர்த்தவும். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"305\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"308\"/>\n        <source>Move file path down</source>\n        <translation>கோப்பு பாதையை கீழே நகர்த்தவும்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"311\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; கோப்பு பாதையை கீழே நகர்த்தவும். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"330\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"333\"/>\n        <source>Remove file path</source>\n        <translation>கோப்பு பாதையை அகற்று</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"336\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; கோப்பு பாதையை அகற்று. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"355\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"358\"/>\n        <source>Edit file path</source>\n        <translation>கோப்பு பாதையைத் திருத்து</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"361\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Edit file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; கோப்பு பாதையைத் திருத்து. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"380\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"383\"/>\n        <source>Add file path</source>\n        <translation>கோப்பு பாதையைச் சேர்க்கவும்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; கோப்பு பாதையைச் சேர்க்கவும். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; விருப்ப தரவு வடிவம். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"444\"/>\n        <source>BASE64</source>\n        <translation>அடிப்படை 64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"449\"/>\n        <source>UTF-16</source>\n        <translation>யுடிஎஃப் -16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"454\"/>\n        <source>UTF-8</source>\n        <translation>யுடிஎஃப் -8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"459\"/>\n        <source>HEX</source>\n        <translation>ஃச்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"484\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry optional data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; நுழைவு விருப்ப தரவு. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"497\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"500\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"503\"/>\n        <source>Attributes</source>\n        <translation>பண்புக்கூறுகள்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"623\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry category.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; நுழைவு வகை. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"122\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; நுழைவு அட்டவணை. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"540\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Is entry considered for automatic boot?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; தானியங்கி துவக்கத்திற்காக நுழைவு கருதப்படுகிறதா? &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"569\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hidden.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; மறைக்கப்பட்டுள்ளது. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"585\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Force reconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; படை மீண்டும் இணைக்கவும். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"534\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"537\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"543\"/>\n        <source>Active</source>\n        <translation>செயலில்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"579\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"582\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"588\"/>\n        <source>Force reconnect</source>\n        <translation>படை மீண்டும் இணைக்கவும்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"563\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"566\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"572\"/>\n        <source>Hidden</source>\n        <translation>மறைக்கப்பட்ட</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"598\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"601\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"604\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"617\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"620\"/>\n        <source>Category</source>\n        <translation>வகை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"627\"/>\n        <source>Boot</source>\n        <translation>துவக்க</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"632\"/>\n        <source>App</source>\n        <translation>செயலி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"68\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"71\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"74\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"116\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"119\"/>\n        <source>Index</source>\n        <translation>குறியெண்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentryform.cpp\" line=\"117\"/>\n        <source>Couldn&apos;t change optional data format!</source>\n        <translation>விருப்ப தரவு வடிவமைப்பை மாற்ற முடியவில்லை!</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryListModel</name>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"88\"/>\n        <source>Set Next boot to &quot;%1&quot;</source>\n        <translation>அடுத்த துவக்கத்தை &quot;%1&quot; ஆக அமைக்கவும்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"184\"/>\n        <source>index</source>\n        <translation>குறியெண்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"200\"/>\n        <source>description</source>\n        <translation>விவரம்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"237\"/>\n        <source>optional data</source>\n        <translation>விருப்ப தரவு</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"253\"/>\n        <source>attributes</source>\n        <translation>பண்புக்கூறுகள்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"269\"/>\n        <source>next boot</source>\n        <translation>அடுத்த துவக்க</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryWidget</name>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"12\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"221\"/>\n        <source>Boot entry</source>\n        <translation>துவக்க நுழைவு</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"36\"/>\n        <source>Next boot</source>\n        <translation>அடுத்த துவக்க</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"39\"/>\n        <source>Run at next boot</source>\n        <translation>அடுத்த துவக்கத்தில் இயக்கவும்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"42\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;When chosen, entry will run at next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; தேர்ந்தெடுக்கப்பட்டால், அடுத்த துவக்கத்தில் நுழைவு இயங்கும். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"140\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"143\"/>\n        <source>Current boot</source>\n        <translation>தற்போதைய துவக்க</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This entry is currently booted.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; இந்த நுழைவு தற்போது துவக்கப்பட்டுள்ளது. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"181\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; துவக்க நுழைவு அட்டவணை. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"218\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry description, human readable name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; துவக்க நுழைவு விளக்கம், மனிதப் படிக்கக்கூடிய பெயர். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"67\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"70\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"76\"/>\n        <source>Device path</source>\n        <translation>சாதன பாதை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"73\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; துவக்க சாதன பாதை. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"113\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data, arguments passed to boot executable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; விருப்ப தரவு, இயக்கக்கூடிய துவக்க வாதங்கள். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"178\"/>\n        <source>Boot entry index</source>\n        <translation>துவக்க நுழைவு அட்டவணை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"184\"/>\n        <source>Index</source>\n        <translation>குறியெண்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"212\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"215\"/>\n        <source>Boot entry description</source>\n        <translation>துவக்க நுழைவு விளக்கம்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"107\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"110\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"116\"/>\n        <source>Optional data</source>\n        <translation>விருப்ப தரவு</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootData</name>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"111\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"813\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1027\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1361\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1472\"/>\n        <source>%1: not found</source>\n        <translation>%1: கண்டுபிடிக்கப்படவில்லை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"120\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"821\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1387\"/>\n        <source>%1: failed deserialization</source>\n        <translation>%1: தோல்வியுற்ற தேசமயமாக்கல்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Error loading entries</source>\n        <translation>உள்ளீடுகளை ஏற்றுவதில் பிழை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Failed to load some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>சில EFI துவக்க மேலாளர் உள்ளீடுகளை ஏற்றுவதில் தோல்வி:\n\n - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Error saving entries</source>\n        <translation>உள்ளீடுகளைச் சேமிக்கும் பிழை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Entry %1(%2): duplicated index!</source>\n        <translation>நுழைவு %1 ( %2): நகல் அட்டவணை!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"389\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"419\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"458\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"479\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"487\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"516\"/>\n        <source>Error saving %1</source>\n        <translation>%1 ஐ சேமித்தல்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"407\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"470\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"504\"/>\n        <source>Error removing %1</source>\n        <translation>%1 ஐ அகற்றும் பிழை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Error importing boot configuration</source>\n        <translation>துவக்க உள்ளமைவை இறக்குமதி செய்வதில் பிழை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <source>Couldn&apos;t open selected file (%1).</source>\n        <translation>தேர்ந்தெடுக்கப்பட்ட கோப்பைத் திறக்க முடியவில்லை (%1).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <source>Parser failed: %1</source>\n        <translation>பாகுபடுத்தி தோல்வியுற்றது: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <source>Invalid _Type: %1</source>\n        <translation>தவறான _ வகை: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <source>Error exporting boot configuration</source>\n        <translation>துவக்க உள்ளமைவை ஏற்றுமதி செய்வதில் பிழை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <source>Couldn&apos;t open selected file (%1): %2.</source>\n        <translation>தேர்ந்தெடுக்கப்பட்ட கோப்பைத் திறக்க முடியவில்லை ( %1): %2.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <source>Couldn&apos;t write into file (%1): %2.</source>\n        <translation>கோப்பில் எழுத முடியவில்லை ( %1): %2.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Error dumping raw EFI data</source>\n        <translation>ரா EFI தரவை கொட்டுவது பிழை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Failed to dump some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>சில EFI துவக்க மேலாளர் உள்ளீடுகளை கொட்டுவதில் தோல்வி:\n\n - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"905\"/>\n        <source>Timeout</source>\n        <translation>நேரம் முடிந்தது</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"921\"/>\n        <source>Apple boot-args</source>\n        <translation>ஆப்பிள் பூட்-ஆர்க்ச்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"937\"/>\n        <source>Firmware actions</source>\n        <translation>ஃபார்ம்வேர் செயல்கள்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"73\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation>EFI துவக்க மேலாளர் உள்ளீடுகளை ஏற்றுகிறது…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"89\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"787\"/>\n        <source>Searching EFI Boot Manager entries…</source>\n        <translation>EFI துவக்க மேலாளர் உள்ளீடுகளைத் தேடுகிறது…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"116\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"292\"/>\n        <source>Processing EFI Boot Manager entries (%1)…</source>\n        <translation>EFI துவக்க மேலாளர் உள்ளீடுகளை செயலாக்குகிறது (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"308\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation>EFI துவக்க மேலாளர் உள்ளீடுகளை சேமிக்கிறது…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"333\"/>\n        <source>Searching old EFI Boot Manager entries…</source>\n        <translation>பழைய EFI துவக்க மேலாளர் உள்ளீடுகளைத் தேடுகிறது…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"374\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"416\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"447\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"476\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"484\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"491\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"513\"/>\n        <source>Saving EFI Boot Manager entries (%1)…</source>\n        <translation>EFI துவக்க மேலாளர் உள்ளீடுகளை சேமிக்கிறது (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"467\"/>\n        <source>Removing old EFI Boot Manager entries (%1)…</source>\n        <translation>பழைய EFI துவக்க மேலாளர் உள்ளீடுகளை நீக்குதல் (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"404\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"501\"/>\n        <source>Removing EFI Boot Manager entries (%1)…</source>\n        <translation>EFI துவக்க மேலாளர் உள்ளீடுகளை நீக்குதல் (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"94\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"338\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"792\"/>\n        <source>Couldn&apos;t load EFI Boot Manager variables</source>\n        <translation>EFI துவக்க மேலாளர் மாறிகள் ஏற்ற முடியவில்லை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"100\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"799\"/>\n        <source>Couldn&apos;t find any EFI Boot Manager variables</source>\n        <translation>எந்த EFI துவக்க மேலாளர் மாறிகளையும் கண்டுபிடிக்க முடியவில்லை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"529\"/>\n        <source>Importing boot configuration…</source>\n        <translation>துவக்க உள்ளமைவை இறக்குமதி செய்தல்…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"565\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"770\"/>\n        <source>Exporting boot configuration…</source>\n        <translation>துவக்க உள்ளமைவு ஏற்றுமதி…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"587\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"809\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"875\"/>\n        <source>Exporting EFI Boot Manager entries (%1)…</source>\n        <translation>EFI துவக்க மேலாளர் உள்ளீடுகளை ஏற்றுமதி செய்கிறது (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1013\"/>\n        <source>Importing boot configuration from JSON…</source>\n        <translation>சாதொபொகு இலிருந்து துவக்க உள்ளமைவை இறக்குமதி செய்தல்…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1032\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1366\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1477\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1531\"/>\n        <source>Importing EFI Boot Manager entries (%1)…</source>\n        <translation>EFI துவக்க மேலாளர் உள்ளீடுகளை இறக்குமதி செய்கிறது (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1035\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1376\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>%1: %2 expected</source>\n        <translation>%1: %2 எதிர்பார்க்கப்படுகிறது</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1043\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1048\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1053\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <source>number</source>\n        <translation>எண்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1058\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1063\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1068\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1073\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1078\"/>\n        <source>bool</source>\n        <translation>பூல்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1109\"/>\n        <source>%1: unknown boot manager capability</source>\n        <translation>%1: அறியப்படாத துவக்க மேலாளர் திறன்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1122\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1166\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1212\"/>\n        <source>array</source>\n        <translation>வரிசை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1333\"/>\n        <source>string</source>\n        <translation>சரம்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1156\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1192\"/>\n        <source>%1: unknown os indication</source>\n        <translation>%1: அறியப்படாத OS அறிகுறி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1083\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1235\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1264\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1290\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1309\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1328\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>object</source>\n        <translation>பொருள்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <source>hexadecimal number</source>\n        <translation>எக்சாடெசிமல் எண்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1270\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1315\"/>\n        <source>%1: failed parsing</source>\n        <translation>%1: பாகுபடுத்தல் தோல்வியுற்றது</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Failed to import some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>சில EFI துவக்க மேலாளர் உள்ளீடுகளை இறக்குமதி செய்வதில் தோல்வி:\n\n - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1347\"/>\n        <source>Importing boot configuration from raw dump…</source>\n        <translation>மூல டம்பிலிருந்து துவக்க உள்ளமைவை இறக்குமதி செய்தல்…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1379\"/>\n        <source>object(raw_data: string, efi_attributes: number)</source>\n        <extracomment>Expected JSON structure, thrown as error description. raw_data and efi_attributes are field names in JSON file</extracomment>\n        <translation>பொருள் (RAW_DATA: சரம், efi_attributes: எண்)</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"15\"/>\n        <source>Boot</source>\n        <translation>துவக்க</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"16\"/>\n        <source>Driver</source>\n        <translation>இயக்கி</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"17\"/>\n        <source>System Preparation</source>\n        <translation>கணினி தயாரிப்பு</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"18\"/>\n        <source>Platform Recovery</source>\n        <translation>இயங்குதள மீட்பு</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditor</name>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"18\"/>\n        <source>EFI Boot Editor</source>\n        <translation>EFI துவக்க ஆசிரியர்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"71\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"412\"/>\n        <source>Boot</source>\n        <translation>துவக்க</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"74\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"98\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"101\"/>\n        <source>Boot entries</source>\n        <translation>துவக்க உள்ளீடுகள்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"77\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"104\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Boot entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; துவக்க உள்ளீடுகளின் பட்டியல். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"133\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"415\"/>\n        <source>Driver</source>\n        <translation>இயக்கி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"136\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"160\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"163\"/>\n        <source>Driver entries</source>\n        <translation>இயக்கி உள்ளீடுகள்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"139\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"166\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Driver entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; இயக்கி உள்ளீடுகளின் பட்டியல். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"195\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"418\"/>\n        <source>System Preparation</source>\n        <translation>கணினி தயாரிப்பு</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"198\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"222\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"225\"/>\n        <source>SysPrep entries</source>\n        <translation>Sysprep உள்ளீடுகள்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"201\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of SysPrep entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; sysprep உள்ளீடுகளின் பட்டியல். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"257\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"421\"/>\n        <source>Platform Recovery</source>\n        <translation>இயங்குதள மீட்பு</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"260\"/>\n        <source>PlatformRecovery entries</source>\n        <translation>இயங்குதள ரெக்கவரி உள்ளீடுகள்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"263\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of PlatformRecovery entries (READONLY).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; இயங்குதள ரெக்கவரி உள்ளீடுகளின் பட்டியல் (Readonly). &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"284\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"287\"/>\n        <source>PlatformRecovery entries (READONLY)</source>\n        <translation>இயங்குதள ரெக்கவரி உள்ளீடுகள் (வாசிப்பு)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"346\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"349\"/>\n        <source>Add new entry</source>\n        <translation>புதிய நுழைவைச் சேர்க்கவும்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"352\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to add new boot entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; புதிய துவக்க உள்ளீட்டைச் சேர்க்க இதைக் சொடுக்கு செய்க. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"377\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"380\"/>\n        <source>Duplicate entry</source>\n        <translation>உள்ளீடு நகல்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"383\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Duplicate entry&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; நகல் நுழைவு &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"408\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"411\"/>\n        <source>Remove entry</source>\n        <translation>உள்ளீட்டை அகற்று</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"414\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to remove currently selected entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; தற்போது தேர்ந்தெடுக்கப்பட்ட நுழைவை அகற்ற இதைக் சொடுக்கு செய்க. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"439\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"442\"/>\n        <source>Move entry up</source>\n        <translation>நுழைவை நகர்த்தவும்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"445\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; தற்போது தேர்ந்தெடுக்கப்பட்ட நுழைவை நகர்த்த இதைக் சொடுக்கு செய்க. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"470\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"473\"/>\n        <source>Move entry down</source>\n        <translation>நுழைவை கீழே நகர்த்தவும்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"476\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; தற்போது தேர்ந்தெடுக்கப்பட்ட நுழைவை கீழே நகர்த்த இதைக் சொடுக்கு செய்க. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"501\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"504\"/>\n        <source>Reorder entries</source>\n        <translation>உள்ளீடுகளை மறுவரிசைப்படுத்தவும்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"507\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click here to adjust the order of all entries based on their position on the list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt; &lt;body&gt; &lt;p&gt; பட்டியலில் அவற்றின் நிலையின் அடிப்படையில் அனைத்து உள்ளீடுகளின் வரிசையையும் சரிசெய்ய இங்கே சொடுக்கு செய்க. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"599\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"608\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Global settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; உலகளாவிய அமைப்புகள். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"602\"/>\n        <source>Global</source>\n        <translation>உலகளாவிய</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"632\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"635\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"654\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"657\"/>\n        <source>Boot manager timeout</source>\n        <translation>துவக்க மேலாளர் நேரம் முடிந்தது</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"638\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"660\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot manager timeout.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; துவக்க மேலாளர் நேரம் முடிந்தது. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"663\"/>\n        <source>s</source>\n        <translation>கள்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"674\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"677\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"686\"/>\n        <source>Firmware details</source>\n        <translation>ஃபார்ம்வேர் விவரங்கள்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"680\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"689\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; நிலைபொருள் விவரங்கள். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"683\"/>\n        <source>Firmware</source>\n        <translation>ஃபார்ம்வேர்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"719\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"722\"/>\n        <source>Available firmware features</source>\n        <translation>கிடைக்கும் ஃபார்ம்வேர் நற்பொருத்தங்கள்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"725\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware features.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; கிடைக்கக்கூடிய ஃபார்ம்வேர் நற்பொருத்தங்கள். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"728\"/>\n        <source>Features</source>\n        <translation>நற்பொருத்தங்கள்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"737\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"740\"/>\n        <source>Platform supports reporting of deferred capsule processing by creation of result variable</source>\n        <translation>முடிவு மாறியை உருவாக்குவதன் மூலம் ஒத்திவைக்கப்பட்ட காப்ச்யூல் செயலாக்கத்தைப் புகாரளிப்பதை இயங்குதளம் ஆதரிக்கிறது</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"743\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports reporting of deferred capsule processing by creation of result variable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; முடிவு மாறியை உருவாக்குவதன் மூலம் ஒத்திவைக்கப்பட்ட காப்ச்யூல் செயலாக்கத்தைப் புகாரளிப்பதை தளம் ஆதரிக்கிறது. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"746\"/>\n        <source>Capsule Reporting</source>\n        <translation>காப்ச்யூல் அறிக்கை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"756\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"759\"/>\n        <source>Firmware supports timestamp based revocation</source>\n        <translation>ஃபார்ம்வேர் நேர முத்திரை அடிப்படையிலான ரத்து செய்வதை ஆதரிக்கிறது</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"762\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware supports timestamp based revocation.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; ஃபார்ம்வேர் நேர முத்திரை அடிப்படையிலான ரத்து செய்வதை ஆதரிக்கிறது. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"765\"/>\n        <source>Timestamp based revocation</source>\n        <translation>நேர முத்திரை அடிப்படையிலான ரத்து</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"775\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"778\"/>\n        <source>Platform supports processing of Firmware Management Protocol update capsule</source>\n        <translation>ஃபார்ம்வேர் மேலாண்மை நெறிமுறை புதுப்பிப்பு காப்ச்யூலின் செயலாக்கத்தை இயங்குதளம் ஆதரிக்கிறது</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"781\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of Firmware Management Protocol update capsule.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; தளம் ஃபார்ம்வேர் மேலாண்மை நெறிமுறை புதுப்பிப்பு காப்ச்யூலை செயலாக்குவதை ஆதரிக்கிறது. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"784\"/>\n        <source>FMP Capsule</source>\n        <translation>எஃப்.எம்.பி காப்ச்யூல்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"794\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"797\"/>\n        <source>Platform supports processing of file capsules</source>\n        <translation>கோப்பு காப்ச்யூல்களின் செயலாக்கத்தை இயங்குதளம் ஆதரிக்கிறது</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"800\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of file capsules.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; இயங்குதளம் கோப்பு காப்ச்யூல்களை செயலாக்குவதை ஆதரிக்கிறது. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"803\"/>\n        <source>File Capsule</source>\n        <translation>கோப்பு காப்ச்யூல்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"828\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"831\"/>\n        <source>Available firmware actions</source>\n        <translation>கிடைக்கும் ஃபார்ம்வேர் செயல்கள்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware actions.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; கிடைக்கக்கூடிய ஃபார்ம்வேர் செயல்கள். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"837\"/>\n        <source>Actions</source>\n        <translation>செயல்கள்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"846\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"849\"/>\n        <source>Stop at a firmware user interface on the next boot</source>\n        <translation>அடுத்த துவக்கத்தில் ஃபார்ம்வேர் பயனர் இடைமுகத்தில் நிறுத்துங்கள்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Stop at a firmware user interface on the next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; அடுத்த துவக்கத்தில் ஒரு ஃபார்ம்வேர் பயனர் இடைமுகத்தில் நிறுத்துங்கள். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"855\"/>\n        <source>Boot to firmware UI</source>\n        <translation>ஃபார்ம்வேர் இடைமுகம் க்கு துவக்கவும்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"862\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"865\"/>\n        <source>Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot</source>\n        <translation>தற்போதைய உள்ளமைவை சேகரித்தல் மற்றும் புதுப்பிக்கப்பட்ட தரவை அடுத்த துவக்கத்தில் EFI கணினி உள்ளமைவு அட்டவணையில் புகாரளித்தல்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; தூண்டுதல் தற்போதைய உள்ளமைவைச் சேகரித்து, புதுப்பிக்கப்பட்ட தரவை அடுத்த துவக்கத்தில் EFI கணினி உள்ளமைவு அட்டவணையில் புகாரளித்தல். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"871\"/>\n        <source>Collect current config</source>\n        <translation>தற்போதைய கட்டமைப்பை சேகரிக்கவும்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"878\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"881\"/>\n        <source>Indicate that Platform-defined recovery should commence upon reboot</source>\n        <translation>மறுதொடக்கத்தின் போது இயங்குதளம் வரையறுக்கப்பட்ட மீட்பு தொடங்க வேண்டும் என்பதைக் குறிக்கவும்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"884\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that Platform-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; மறுதொடக்கத்தில் இயங்குதளத்தை மீட்டெடுக்க வேண்டும் என்பதைக் குறிக்கவும். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"887\"/>\n        <source>Start Platform recovery</source>\n        <translation>இயங்குதள மீட்டெடுப்பு</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"894\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"897\"/>\n        <source>Indicate that OS-defined recovery should commence upon reboot</source>\n        <translation>மறுதொடக்கத்தில் OS- வரையறுக்கப்பட்ட மீட்பு தொடங்க வேண்டும் என்பதைக் குறிக்கவும்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"900\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that OS-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; மறுதொடக்கத்தில் OS- வரையறுக்கப்பட்ட மீட்பு தொடங்க வேண்டும் என்பதைக் குறிக்கவும். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"903\"/>\n        <source>Start OS recovery</source>\n        <translation>OS மீட்பு தொடங்கவும்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"932\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"935\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"944\"/>\n        <source>Secure boot settings</source>\n        <translation>பாதுகாப்பான துவக்க அமைப்புகள்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"938\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"947\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Secure boot settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; பாதுகாப்பான துவக்க அமைப்புகள். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"941\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1025\"/>\n        <source>Secure Boot</source>\n        <translation>பாதுகாப்பான துவக்க</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"978\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"981\"/>\n        <source>Defines whether the system is currently operating in Audit Mode</source>\n        <translation>கணினி தற்போது தணிக்கை பயன்முறையில் இயங்குகிறதா என்பதை வரையறுக்கிறது</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"984\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Audit Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; கணினி தற்போது தணிக்கை பயன்முறையில் இயங்குகிறதா என்பதை வரையறுக்கிறது. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"987\"/>\n        <source>Audit Mode</source>\n        <translation>தணிக்கை முறை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"997\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1000\"/>\n        <source>Defines whether the system is currently operating in Deployed Mode</source>\n        <translation>கணினி தற்போது பயன்படுத்தப்பட்ட பயன்முறையில் இயங்குகிறதா என்பதை வரையறுக்கிறது</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1003\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Deployed Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; கணினி தற்போது வரிசைப்படுத்தப்பட்ட பயன்முறையில் இயங்குகிறதா என்பதை வரையறுக்கிறது. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1006\"/>\n        <source>Deployed Mode</source>\n        <translation>பயன்படுத்தப்பட்ட பயன்முறை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1016\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1019\"/>\n        <source>Defines whether the platform firmware is operating with Secure Boot enabled</source>\n        <translation>பாதுகாப்பான துவக்கத்துடன் இயங்குதளத்துடன் இயங்குகிறதா என்பதை வரையறுக்கிறது</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1022\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the platform firmware is operating with Secure Boot enabled.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; மேடையில் ஃபார்ம்வேர் பாதுகாப்பான துவக்கத்துடன் இயங்குகிறதா என்பதை வரையறுக்கிறது. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1035\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1038\"/>\n        <source>Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables</source>\n        <translation>துவக்க கொள்கை மாறிகள் பாதுகாப்பதற்கான கோரிக்கைகளில் கணினிக்கு ஏற்பு தேவையா இல்லையா என்பதை வரையறுக்கிறது</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1041\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; துவக்க கொள்கை மாறிகளைப் பாதுகாப்பதற்கான கோரிக்கைகளில் கணினிக்கு ஏற்பு தேவையா இல்லையா என்பதை வரையறுக்கிறது. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1044\"/>\n        <source>Setup Mode</source>\n        <translation>அமைவு பயன்முறை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1054\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1057\"/>\n        <source>Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys</source>\n        <translation>பாதுகாப்பு துவக்க கொள்கை மாறிகள் இயங்குதள விற்பனையாளரைத் தவிர வேறு யாராலும் மாற்றியமைக்கப்பட்டுள்ளதா அல்லது விற்பனையாளர் வழங்கிய விசைகளை வைத்திருப்பதா என்பதை வரையறுக்கிறது</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; பாதுகாப்பு துவக்க கொள்கை மாறிகள் இயங்குதள விற்பனையாளர் அல்லது விற்பனையாளர் வழங்கிய விசைகளை வைத்திருப்பவர் தவிர வேறு யாராலும் மாற்றியமைக்கப்பட்டுள்ளதா என்பதை வரையறுக்கிறது. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1063\"/>\n        <source>Vendor Keys</source>\n        <translation>விற்பனையாளர் விசைகள்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1074\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1077\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1086\"/>\n        <source>Apple settings</source>\n        <translation>ஆப்பிள் அமைப்புகள்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1080\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apple settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; ஆப்பிள் அமைப்புகள். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1083\"/>\n        <source>Apple</source>\n        <translation>அரத்திப்பழம், குமளிப்பழம்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1113\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1116\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1129\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1132\"/>\n        <source>macOS boot arguments</source>\n        <translation>MACOS துவக்க வாதங்கள்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1119\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;macOS boot arguments.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; MACOS துவக்க வாதங்கள். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1161\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1164\"/>\n        <source>Undo stack</source>\n        <translation>அடுக்கை செயல்தவிர்க்கவும்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1167\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo stack&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; செயல்தவிர் அடுக்கை &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1194\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; கோப்பு பட்டியல். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1214\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Help menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; உதவி பட்டியல். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1255\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Exit the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; நிரலில் இருந்து வெளியேறவும். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1272\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apply changes to the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; கணினியில் மாற்றங்களைப் பயன்படுத்துங்கள். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1289\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reloads EFI data from the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; கணினியிலிருந்து EFI தரவை மீண்டும் ஏற்றுகிறது. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1306\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Show information about the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; நிரலைப் பற்றிய தகவல்களைக் காட்டு. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1320\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Export current entries into JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; தற்போதைய உள்ளீடுகளை சாதொபொகு க்கு ஏற்றுமதி செய்யுங்கள். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1337\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Import EFI data from JSON dump.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; சாதொபொகு டம்பிலிருந்து EFI தரவை இறக்குமதி செய்யுங்கள். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1354\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dumps raw EFI data for debugging purposes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; பிழைத்திருத்த நோக்கங்களுக்காக மூல EFI தரவை டம்பிங் செய்கிறது. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1362\"/>\n        <source>&amp;Undo</source>\n        <translation>செயல்தவிர் (&amp;u)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1365\"/>\n        <source>Undo</source>\n        <translation>செயல்தவிர்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1368\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; செயல்தவிர் &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1371\"/>\n        <source>Ctrl+Z</source>\n        <translation>Ctrl+z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1379\"/>\n        <source>&amp;Redo</source>\n        <translation>மீண்டும்செய் (&amp;r)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1382\"/>\n        <source>Redo</source>\n        <translation>மீண்டும்செய்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1385\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Redo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; மீண்டும் &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1388\"/>\n        <source>Ctrl+Shift+Z</source>\n        <translation>Ctrl+shift+z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1396\"/>\n        <source>Hot &amp;keys</source>\n        <translation>சூடான &amp; விசைகள்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1399\"/>\n        <source>Hot Keys</source>\n        <translation>சூடான விசைகள்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1402\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; சூடான விசைகள் &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"593\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"596\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"605\"/>\n        <source>Global settings</source>\n        <translation>உலகளாவிய அமைப்புகள்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"641\"/>\n        <source>Timeout</source>\n        <translation>நேரம் முடிந்தது</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1122\"/>\n        <source>Boot args</source>\n        <translation>துவக்க வாதங்கள்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1188\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1191\"/>\n        <source>File</source>\n        <translation>கோப்பு</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1197\"/>\n        <source>&amp;File</source>\n        <translation>கோப்பு (&amp;f)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1208\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1211\"/>\n        <source>Help</source>\n        <translation>உதவி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1217\"/>\n        <source>&amp;Help</source>\n        <translation>உதவி (&amp;h)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1225\"/>\n        <source>&amp;Edit</source>\n        <translation>திருத்து (&amp;e)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1249\"/>\n        <source>&amp;Quit</source>\n        <translation>&amp;வெளியேறு</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1252\"/>\n        <source>Quit</source>\n        <translation>வெளியேறு</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1258\"/>\n        <source>Ctrl+Q</source>\n        <translation>Ctrl+q</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1266\"/>\n        <source>&amp;Save</source>\n        <translation>சேமி (&amp;s)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1269\"/>\n        <source>Save</source>\n        <translation>சேமி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1275\"/>\n        <source>Ctrl+S</source>\n        <translation>Ctrl+s</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1283\"/>\n        <source>&amp;Reload</source>\n        <translation>மீளேற்று</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1286\"/>\n        <source>Reload</source>\n        <translation>மீளேற்று</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1292\"/>\n        <source>Ctrl+R</source>\n        <translation>Ctrl+r</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1300\"/>\n        <source>About &amp;EFI Boot Editor</source>\n        <translation>இஎப்ஐ துவக்க திருத்திப் பற்றி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1303\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"29\"/>\n        <source>About EFI Boot Editor</source>\n        <translation>இஎப்ஐ துவக்க திருத்திப் பற்றி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1314\"/>\n        <source>&amp;Export</source>\n        <translation>&amp; ஏற்றுமதி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1317\"/>\n        <source>Export</source>\n        <translation>ஏற்றுமதி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1323\"/>\n        <source>Ctrl+E</source>\n        <translation>Ctrl+e</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1331\"/>\n        <source>&amp;Import</source>\n        <translation>&amp; இறக்குமதி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1334\"/>\n        <source>Import</source>\n        <translation>இறக்குமதி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1340\"/>\n        <source>Ctrl+I</source>\n        <translation>Ctrl+i</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1348\"/>\n        <source>&amp;Dump raw EFI data</source>\n        <translation>&amp; மூல EFI தரவை டம்ப் செய்யுங்கள்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1351\"/>\n        <source>Dump raw EFI data</source>\n        <translation>மூல EFI தரவை டம்ப் செய்யுங்கள்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"26\"/>\n        <source>Working…</source>\n        <translation>பணிபுரிகிறது…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"92\"/>\n        <source>Undo %1</source>\n        <translation>%1 ஐ செயல்தவிர்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"95\"/>\n        <source>Redo %1</source>\n        <translation>மீண்டும் %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"137\"/>\n        <source>Are you sure you want to reload the entries?&lt;br/&gt;ALL of your changes will be lost!</source>\n        <translation>உள்ளீடுகளை மீண்டும் ஏற்ற விரும்புகிறீர்களா? &lt;br/&gt; உங்கள் மாற்றங்கள் அனைத்தும் இழக்கப்படும்!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"162\"/>\n        <source>Are you sure you want to reorder the boot entries?&lt;br/&gt;All indexes will be overwritten!</source>\n        <translation>துவக்க உள்ளீடுகளை மறுவரிசைப்படுத்த விரும்புகிறீர்களா? &lt;br/&gt; அனைத்து குறியீடுகளும் மேலெழுதப்படும்!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"221\"/>\n        <source>Are you sure you want to save?&lt;br/&gt;Your EFI configuration will be overwritten!</source>\n        <translation>நீங்கள் நிச்சயமாக சேமிக்க விரும்புகிறீர்களா? &lt;br/&gt; உங்கள் EFI உள்ளமைவு மேலெழுதப்படும்!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <source>Open boot configuration dump</source>\n        <translation>துவக்க கட்டமைப்பு டம்ப்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>JSON documents (*.json)</source>\n        <translation>சாதொபொகு ஆவணங்கள் (*.JSON)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <source>Save boot configuration dump</source>\n        <translation>துவக்க உள்ளமைவு டம்பை சேமிக்கவும்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>Save raw EFI dump</source>\n        <translation>மூல EFI டம்பை சேமிக்கவும்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"31\"/>\n        <source>&lt;h1&gt;EFI Boot Editor&lt;/h1&gt;&lt;p&gt;Version &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Boot Editor for (U)EFI based systems.&lt;/p&gt;</source>\n        <extracomment>About dialog</extracomment>\n        <translation>&lt;h1&gt;இஎப்ஐ துவக்க திருத்தி&lt;/h1&gt;&lt;p&gt; பதிப்பு &lt;b&gt;%1 &lt;/b&gt; &lt;/p&gt; &lt;p&gt; (U) EFI அடிப்படையிலான அமைப்புகளுக்கான துவக்க திருத்தி. &lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"45\"/>\n        <source>&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;Website&lt;/a&gt;&lt;/p&gt;&lt;p&gt;The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.&lt;/p&gt;&lt;p&gt;License: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL Version 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;On Linux uses &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; for EFI variables access.&lt;/p&gt;&lt;p&gt;Uses Tango Icons as fallback icons.&lt;/p&gt;</source>\n        <extracomment>About dialog details</extracomment>\n        <translation>&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;வலைத்தளம்&lt;/a&gt;&lt;/p&gt;&lt;p&gt;குறிப்பிட்ட நோக்கத்திற்காக வடிவமைப்பு, வணிகத்தன்மை மற்றும் பொருத்தம் ஆகியவற்றின் உத்தரவாதம் உட்பட, எந்தவொரு உத்தரவாதமும் இல்லாமல் நிரல் வழங்கப்படுகிறது.&lt;/p&gt;&lt;p&gt;உரிமம்: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL பதிப்பு 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;லினக்ஸில் EFI மாறிகள் அணுகலுக்காக &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; ஐப் பயன்படுத்துகிறது.&lt;/p&gt;&lt;p&gt;டேங்கோ ஐகான்களை ஃபால்பேக் ஐகான்களாகப் பயன்படுத்துகிறது.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"330\"/>\n        <source>Reorder %1 entries</source>\n        <translation>%1 உள்ளீடுகளை மறுவரிசைப்படுத்தவும்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"453\"/>\n        <source>Are you sure you want to quit?</source>\n        <translation>நிச்சயமாக நீங்கள் வெளியேற வேண்டுமா?</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"123\"/>\n        <source>EFI support required</source>\n        <translation>EFI உதவி தேவை</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditorCLI</name>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"13\"/>\n        <source>Boot Editor for (U)EFI based systems.</source>\n        <translation>(U) EFI அடிப்படையிலான அமைப்புகளுக்கான துவக்க ஆசிரியர்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <source>Export configuration.</source>\n        <translation>ஏற்றுமதி உள்ளமைவு.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>FILE</source>\n        <translation>கோப்பு</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <source>Dump raw EFI data.</source>\n        <translation>மூல EFI தரவை டம்ப் செய்யுங்கள்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>Import configuration from JSON (either from export or raw dump).</source>\n        <translation>சாதொபொகு இலிருந்து உள்ளமைவை இறக்குமதி செய்யுங்கள் (ஏற்றுமதி அல்லது மூல டம்பிலிருந்து).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"19\"/>\n        <source>Force import, don&apos;t ask for confirmation.</source>\n        <translation>இறக்குமதியை கட்டாயப்படுத்துங்கள், உறுதிப்படுத்தல் கேட்க வேண்டாம்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"26\"/>\n        <source>EFI support required</source>\n        <translation>EFI உதவி தேவை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"45\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation>EFI துவக்க மேலாளர் உள்ளீடுகளை ஏற்றுகிறது…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"47\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"57\"/>\n        <source>Exporting boot configuration…</source>\n        <translation>துவக்க உள்ளமைவு ஏற்றுமதி…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"67\"/>\n        <source>Importing boot configuration…</source>\n        <translation>துவக்க உள்ளமைவை இறக்குமதி செய்தல்…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Loaded %0 %1 entries</source>\n        <translation>ஏற்றப்பட்ட %0 %1 உள்ளீடுகள்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <source>Boot</source>\n        <translation>துவக்க</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <source>Driver</source>\n        <translation>இயக்கி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <source>System Preparation</source>\n        <translation>கணினி தயாரிப்பு</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Hot Key</source>\n        <translation>சூடான விசை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"78\"/>\n        <source>Are you sure you want to save?\nYour EFI configuration will be overwritten!</source>\n        <translation>நீங்கள் நிச்சயமாக சேமிக்க விரும்புகிறீர்களா?\n உங்கள் EFI உள்ளமைவு மேலெழுதப்படும்!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"86\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation>EFI துவக்க மேலாளர் உள்ளீடுகளை சேமிக்கிறது…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"98\"/>\n        <source>ERROR: %0! %1</source>\n        <translation>பிழை: %0! %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"114\"/>\n        <source>Finished</source>\n        <translation>முடிந்தது</translation>\n    </message>\n</context>\n<context>\n    <name>EFIKeySequenceEdit</name>\n    <message>\n        <location filename=\"../src/efikeysequenceedit.cpp\" line=\"109\"/>\n        <source>Press hot key</source>\n        <translation>சூடான விசையை அழுத்தவும்</translation>\n    </message>\n</context>\n<context>\n    <name>FilePathDialog</name>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"12\"/>\n        <source>File path editor</source>\n        <translation>கோப்பு பாதை எடிட்டர்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"47\"/>\n        <source>PCI</source>\n        <translation>பி.சி.ஐ.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"80\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"86\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"196\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"202\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"218\"/>\n        <source>Function</source>\n        <translation>செயல்பாடு</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"121\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"127\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"143\"/>\n        <source>Device</source>\n        <translation>சாதனம்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"721\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"727\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"742\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"835\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"841\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"856\"/>\n        <source>HID</source>\n        <translation>மறைந்தது</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"761\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"767\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"782\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"896\"/>\n        <source>UID</source>\n        <translation>Uid</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1813\"/>\n        <source>USB</source>\n        <translation>யூ.எச்.பி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1819\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; யூ.எச்.பி அமைப்புகள். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1893\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1909\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3688\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3710\"/>\n        <source>Interface</source>\n        <translation>இடைமுகம்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7442\"/>\n        <source>Vendor</source>\n        <translation>விற்பனையாளர்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7445\"/>\n        <source>Vendor settings</source>\n        <translation>விற்பனையாளர் அமைப்புகள்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7448\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; விற்பனையாளர் அமைப்புகள். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1778\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1793\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5824\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6348\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7117\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7546\"/>\n        <source>GUID</source>\n        <translation>வழிகாட்டுதல்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5539\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7587\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7850\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7853\"/>\n        <source>Data format</source>\n        <translation>தரவு வடிவம்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5542\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7590\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7856\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; தரவு வடிவம். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5546\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5869\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7860\"/>\n        <source>BASE64</source>\n        <translation>அடிப்படை 64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1168\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5551\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5874\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7865\"/>\n        <source>UTF-16</source>\n        <translation>யுடிஎஃப் -16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1173\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5556\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7604\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7870\"/>\n        <source>UTF-8</source>\n        <translation>யுடிஎஃப் -8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5561\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7875\"/>\n        <source>HEX</source>\n        <translation>ஃச்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5523\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5901\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7888\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7891\"/>\n        <source>Data</source>\n        <translation>தகவல்கள்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7894\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; தரவு. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7565\"/>\n        <source>Vendor data</source>\n        <translation>விற்பனையாளர் தரவு</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7481\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7757\"/>\n        <source>Type</source>\n        <translation>வகை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7478\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7500\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; வகை. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7504\"/>\n        <source>HW</source>\n        <translation>எச்.டபிள்யூ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7509\"/>\n        <source>MSG</source>\n        <translation>எம்.எச்.சி.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7514\"/>\n        <source>MEDIA</source>\n        <translation>ஊடகம்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2292\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2298\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2313\"/>\n        <source>MAC</source>\n        <translation>மேக்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2265\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;MAC settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; மேக் அமைப்புகள். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2374\"/>\n        <source>IPv4</source>\n        <translation>Iprsh</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2380\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv4 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; ipv4 அமைப்புகள். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2569\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2591\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2925\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2931\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2947\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4110\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4116\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4132\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6616\"/>\n        <source>Protocol</source>\n        <translation>நெறிமுறை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3003\"/>\n        <source>Static</source>\n        <translation>நிலையான</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2692\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Subnet mask.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; சப்நெட் மாச்க். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2730\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5479\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5486\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5503\"/>\n        <source>IPv6</source>\n        <translation>ஐபிவி 6</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2736\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv6 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; ipv6 அமைப்புகள். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3008\"/>\n        <source>Stateless auto-configuration</source>\n        <translation>நிலையற்ற ஆட்டோ-உள்ளமைவு</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3013\"/>\n        <source>Stateful auto-configuration</source>\n        <translation>மாநில ஆட்டோ-உள்ளமைவு</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3920\"/>\n        <source>SATA</source>\n        <translation>எப்பொழுதும்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SATA settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; SATA அமைப்புகள். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1387\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1393\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1409\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1658\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1664\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1679\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3900\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4035\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4041\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4057\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4191\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4197\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4212\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4496\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4502\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4610\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4616\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4988\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5009\"/>\n        <source>LUN</source>\n        <translation>LUN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4885\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4901\"/>\n        <source>URI</source>\n        <translation>யூரி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6105\"/>\n        <source>Disk</source>\n        <translation>வட்டு</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6102\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; வட்டு. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6123\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6126\"/>\n        <source>Choose disk</source>\n        <translation>வட்டு தேர்வு செய்யவும்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6129\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Choose disk from discovered in the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; கணினியில் கண்டுபிடிக்கப்பட்ட வட்டைத் தேர்வுசெய்க. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6133\"/>\n        <source>Custom</source>\n        <translation>தனிப்பயன்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6147\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6150\"/>\n        <source>Reload drives</source>\n        <translation>இயக்கிகளை மீண்டும் ஏற்றவும்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reload system drives list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; கணினி இயக்கிகள் பட்டியலை மீண்டும் ஏற்றவும். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6343\"/>\n        <source>MBR</source>\n        <translation>எம்.பி.ஆர்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6177\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6183\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6199\"/>\n        <source>Partition</source>\n        <translation>பிரிவினை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6720\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6741\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6797\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6812\"/>\n        <source>Name</source>\n        <translation>பெயர்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7176\"/>\n        <source>BIOS Boot Specification</source>\n        <translation>பயாச் துவக்க விவரக்குறிப்பு</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7405\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7411\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7427\"/>\n        <source>Description</source>\n        <translation>விவரம்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7639\"/>\n        <source>End</source>\n        <translation>முடிவு</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7669\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7672\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7678\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7797\"/>\n        <source>Sub-Type</source>\n        <translation>துணை வகை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7675\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7697\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; துணை வகை. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7701\"/>\n        <source>End This Instance</source>\n        <translation>இந்த நிகழ்வை முடிக்கவும்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7706\"/>\n        <source>End Entire</source>\n        <translation>முழு முடிவுக்கு</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7718\"/>\n        <source>Unknown</source>\n        <translation>தெரியவில்லை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"50\"/>\n        <source>The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.</source>\n        <translation>பிசிஐக்கான சாதன பாதை பிசிஐ சாதனத்திற்கான பிசிஐ உள்ளமைவு விண்வெளி முகவரிக்கான பாதையை வரையறுக்கிறது.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"53\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; PCI க்கான சாதன பாதை பிசிஐ சாதனத்திற்கான பிசிஐ உள்ளமைவு விண்வெளி முகவரியுக்கான பாதையை வரையறுக்கிறது. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"77\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"99\"/>\n        <source>PCI Function Number.</source>\n        <translation>பிசிஐ செயல்பாட்டு எண்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"83\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"105\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Function Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; பிசிஐ செயல்பாட்டு எண். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"118\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"140\"/>\n        <source>PCI Device Number.</source>\n        <translation>பிசிஐ சாதன எண்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"124\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Device Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; பிசிஐ சாதன எண்&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"163\"/>\n        <source>PCCARD</source>\n        <translation>Pccard</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"166\"/>\n        <source>PCCARD Settings.</source>\n        <translation>Pccard அமைப்புகள்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCCARD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; pccard அமைப்புகள். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"193\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"215\"/>\n        <source>Function Number (0 = First Function).</source>\n        <translation>செயல்பாட்டு எண் (0 = முதல் செயல்பாடு).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"199\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"221\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Function Number (0 = First Function).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; செயல்பாட்டு எண் (0 = முதல் செயல்பாடு). &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"238\"/>\n        <source>Memory Mapped</source>\n        <translation>நினைவகம் வரைபடமாக்கப்பட்டது</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"241\"/>\n        <source>Memory Mapped Settings.</source>\n        <translation>நினைவக வரைபட அமைப்புகள்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Memory Mapped Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; நினைவக வரைபட அமைப்புகள். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"268\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"290\"/>\n        <source>The type of memory to allocate.</source>\n        <translation>ஒதுக்க நினைவக வகை.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"271\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"293\"/>\n        <source>Memory Type</source>\n        <translation>நினைவக வகை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"274\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"296\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The type of memory to allocate.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; ஒதுக்க வேண்டும் என்ற நினைவக வகை. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"300\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1584\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1738\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1753\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3145\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3160\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4416\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4437\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6868\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6883\"/>\n        <source>Reserved</source>\n        <translation>ஒதுக்கப்பட்டுள்ளது</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"305\"/>\n        <source>Loader Code</source>\n        <translation>ஏற்றி குறியீடு</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"310\"/>\n        <source>Loader Data</source>\n        <translation>ஏற்றி தரவு</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"315\"/>\n        <source>Boot Services Code</source>\n        <translation>துவக்க சேவைகள் குறியீடு</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"320\"/>\n        <source>Boot Services Data</source>\n        <translation>துவக்க பணி தரவு</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"325\"/>\n        <source>Runtime Services Code</source>\n        <translation>இயக்க நேர சேவைகள் குறியீடு</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"330\"/>\n        <source>Runtime Services Data</source>\n        <translation>இயக்க நேர பணி தரவு</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"335\"/>\n        <source>Conventional</source>\n        <translation>வழக்கமான</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"340\"/>\n        <source>Unusable</source>\n        <translation>பயன்படுத்த முடியாதது</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"345\"/>\n        <source>ACPI Reclaim</source>\n        <translation>ACPI மீட்டெடுக்கும்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"350\"/>\n        <source>ACPI Memory NVS</source>\n        <translation>ACPI நினைவகம் NVS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"355\"/>\n        <source>Memory Mapped IO</source>\n        <translation>நினைவக மேப் ஐஓ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"360\"/>\n        <source>Memory Mapped IO Port Space</source>\n        <translation>நினைவக மேப் ஐஓ துறைமுகம் இடம்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"365\"/>\n        <source>Pal Code</source>\n        <translation>பால் குறியீடு</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"370\"/>\n        <source>Persistent</source>\n        <translation>விடாமுயற்சி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"375\"/>\n        <source>Unaccepted</source>\n        <translation>ஏற்றுக்கொள்ளப்படாதது</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"383\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7013\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7034\"/>\n        <source>Starting Memory Address.</source>\n        <translation>நினைவக முகவரி தொடங்குகிறது.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"386\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"407\"/>\n        <source>Start Address</source>\n        <translation>முகவரியைத் தொடங்குங்கள்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"389\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7019\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7040\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; நினைவக முகவரியைத் தொடங்குதல். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"423\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7053\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7074\"/>\n        <source>Ending Memory Address.</source>\n        <translation>நினைவக முகவரியை முடித்தல்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"426\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"432\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"447\"/>\n        <source>End Address</source>\n        <translation>இறுதி முகவரி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"429\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7080\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ending Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; நினைவக முகவரியை முடித்தல். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"467\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"522\"/>\n        <source>Controller</source>\n        <translation>கட்டுப்படுத்தி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"470\"/>\n        <source>Controller settings.</source>\n        <translation>கட்டுப்பாட்டு அமைப்புகள்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"473\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; கட்டுப்பாட்டு அமைப்புகள். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"519\"/>\n        <source>Controller number.</source>\n        <translation>கட்டுப்படுத்தி எண்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"525\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; கட்டுப்பாட்டு எண். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"542\"/>\n        <source>BMC</source>\n        <translation>பி.எம்.சி.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"545\"/>\n        <source>The Device Path for a Baseboard Management Controller (BMC) host interface.</source>\n        <translation>பேச்போர்டு மேலாண்மை கட்டுப்படுத்தி (பிஎம்சி) புரவலன் இடைமுகத்திற்கான சாதன பாதை.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"548\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for a Baseboard Management Controller (BMC) host interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; ஒரு பேச்போர்டு மேனேச்மென்ட் கன்ட்ரோலருக்கான சாதன பாதை (பிஎம்சி) புரவலன் இடைமுகம். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"602\"/>\n        <source>The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.</source>\n        <translation>பேச்போர்டு மேனேச்மென்ட் கன்ட்ரோலர் (பிஎம்சி) புரவலன் இடைமுக வகை:\n 0x00 - தெரியவில்லை.\n 0x01 - KCS: விசைப்பலகை கட்டுப்படுத்தி பாணி.\n 0x02 - SMIC: சேவையக மேலாண்மை இடைமுக சிப்.\n 0x03 - BT: தொகுதி பரிமாற்றம்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"579\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"589\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2332\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2354\"/>\n        <source>Interface Type</source>\n        <translation>இடைமுக வகை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"582\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"612\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; பேச்போர்டு மேனேச்மென்ட் கன்ட்ரோலர் (பிஎம்சி) புரவலன் இடைமுக வகை:\n 0x00 - தெரியவில்லை.\n 0x01 - KCS: விசைப்பலகை கட்டுப்படுத்தி பாணி.\n 0x02 - SMIC: சேவையக மேலாண்மை இடைமுக சிப்.\n 0x03 - BT: தொகுதி பரிமாற்றம்.&lt;/p&gt;&lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"625\"/>\n        <source>Keyboard Controller Style</source>\n        <translation>விசைப்பலகை கட்டுப்படுத்தி பாணி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"630\"/>\n        <source>Server Management Interface Chip</source>\n        <translation>சேவையக மேலாண்மை இடைமுக சிப்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"635\"/>\n        <source>Block Transfer</source>\n        <translation>தொகுதி பரிமாற்றம்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"643\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"664\"/>\n        <source>Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.</source>\n        <translation>BMC இன் அடிப்படை முகவரி (நினைவகம்-வரைபட அல்லது I/O). புலத்தின் மிகக் குறைவான பிட் 1 ஆக இருந்தால், முகவரி I/O இடத்தில் உள்ளது; இல்லையெனில், முகவரி நினைவகம்-வரைபடமானது. பயன்பாட்டு விவரங்களுக்கு ஐபிஎம்ஐ இடைமுக விவரக்குறிப்பைப் பார்க்கவும்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"667\"/>\n        <source>Base Address</source>\n        <translation>அடிப்படை முகவரி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"670\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; BMC இன் அடிப்படை முகவரி (நினைவகம்-வரைபட அல்லது I/O). புலத்தின் மிகக் குறைவான பிட் 1 ஆக இருந்தால், முகவரி I/O இடத்தில் உள்ளது; இல்லையெனில், முகவரி நினைவகம்-வரைபடமானது. பயன்பாட்டு விவரங்களுக்கான ஐபிஎம்ஐ இடைமுக விவரக்குறிப்பைப் பார்க்கவும்.&lt;/p&gt;&lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"688\"/>\n        <source>ACPI</source>\n        <translation>ACPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"805\"/>\n        <source>This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.</source>\n        <translation>இந்த சாதன பாதையில் ACPI சாதன ஐடிகள் உள்ளன, அவை சாதனத்தின் செருகியை குறிக்கும் மற்றும் வன்பொருள் ஐடி மற்றும் அதனுடன் தொடர்புடைய தனித்துவமான ஐடியைக் குறிக்கின்றன.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"808\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; இந்த சாதன பாதையில் ACPI சாதன ஐடிகள் உள்ளன, அவை சாதனத்தின் செருகியை குறிக்கும் மற்றும் வன்பொருள் ஐடி மற்றும் அதனுடன் தொடர்புடைய தனித்துவமான தொடர்ச்சியான ஐடி. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"718\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"739\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"832\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"853\"/>\n        <source>Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.</source>\n        <translation>சாதனங்கள் PNP வன்பொருள் ஐடி ஒரு எண் 32-பிட் சுருக்கப்பட்ட EISA- வகை ஐடியில் சேமிக்கப்பட்டுள்ளது. இந்த மதிப்பு ACPI பெயர் இடத்தில் தொடர்புடைய மறுத்தத்துடன் பொருந்த வேண்டும்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"724\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"745\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"838\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"859\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; சாதனங்கள் PNP வன்பொருள் ஐடி ஒரு எண் 32-பிட் சுருக்கப்பட்ட EISA- வகை ஐடியில் சேமிக்கப்பட்டுள்ளது. இந்த மதிப்பு ACPI பெயர் இடத்தில் தொடர்புடைய மறுத்தத்துடன் பொருந்த வேண்டும்.&lt;/p&gt;&lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"779\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"872\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"893\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.</source>\n        <translation>இரண்டு சாதனங்களில் ஒரே மறைக்கப்பட்டிருந்தால் ACPI க்கு தேவைப்படும் தனித்துவமான ஐடி. இந்த மதிப்பு ACPI பெயர் இடத்தில் தொடர்புடைய UID/HID சோடியுடன் பொருந்த வேண்டும். UID இன் 32-பிட் எண் மதிப்பு வகை மட்டுமே ஆதரிக்கப்படுகிறது; இதனால் ACPI பெயர் இடத்தில் UID க்கு சரங்கள் பயன்படுத்தப்படக்கூடாது.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"764\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"785\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"899\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; இரண்டு சாதனங்களில் ஒரே மறைக்கப்பட்டிருந்தால் ACPI க்கு தேவைப்படும் தனித்துவமான ஐடி. இந்த மதிப்பு ACPI பெயர் இடத்தில் தொடர்புடைய UID/HID சோடியுடன் பொருந்த வேண்டும். UID இன் 32-பிட் எண் மதிப்பு வகை மட்டுமே ஆதரிக்கப்படுகிறது; இதனால் ACPI பெயர் இடத்தில் UID க்கு சரங்கள் பயன்படுத்தப்படக்கூடாது. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"802\"/>\n        <source>Expanded</source>\n        <translation>விரிவாக்கப்பட்டது</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"912\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"933\"/>\n        <source>Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.</source>\n        <translation>சாதனங்கள் இணக்கமான பி.என்.பி வன்பொருள் ஐடி ஒரு எண் 32-பிட் சுருக்கப்பட்ட ஈசா-வகை ஐடியில் சேமிக்கப்பட்டுள்ளது. இந்த மதிப்பு ACPI பெயர் இடத்தில் தொடர்புடைய CID ஆல் திருப்பி அனுப்பப்பட்ட இணக்கமான சாதன ஐடிகளில் ஒன்றைக் பொருத்த வேண்டும்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"915\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"921\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"936\"/>\n        <source>CID</source>\n        <translation>சிஐடி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"918\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"939\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; சாதனங்கள் இணக்கமான PNP வன்பொருள் ஐடி ஒரு எண் 32-பிட் சுருக்கப்பட்ட EISA- வகை ஐடியில் சேமிக்கப்பட்டுள்ளது. இந்த மதிப்பு ACPI பெயர் இடத்தில் தொடர்புடைய CID ஆல் திருப்பி அனுப்பப்பட்ட இணக்கமான சாதன ஐடிகளில் குறைந்தபட்சம் பொருந்த வேண்டும். &lt;/p&gt;&lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"952\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"974\"/>\n        <source>Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.</source>\n        <translation>சாதனங்கள் PNP வன்பொருள் ஐடி ஒரு சரமாக சேமிக்கப்படுகிறது. இந்த மதிப்பு ACPI பெயர் இடத்தில் தொடர்புடைய மறுத்தத்துடன் பொருந்த வேண்டும். இந்த சரத்தின் நீளம் 0 ஆக இருந்தால், HID புலம் பயன்படுத்தப்படுகிறது. இந்த சரத்தின் நீளம் 0 ஐ விட அதிகமாக இருந்தால், இந்த புலம் HID புலத்தை மீறுகிறது.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"955\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"961\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"977\"/>\n        <source>HIDSTR</source>\n        <translation>வடிகட்டி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"958\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"980\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; சாதனங்கள் PNP வன்பொருள் ஐடி ஒரு சரமாகச் சேமிக்கப்பட்டுள்ளன. இந்த மதிப்பு ACPI பெயர் இடத்தில் தொடர்புடைய மறுத்தத்துடன் பொருந்த வேண்டும். இந்தச் சரத்தின் நீளம் 0 ஆக இருந்தால், HID புலம் பயன்படுத்தப்படுகிறது. இந்தச் சரத்தின் நீளம் 0 ஐ விட அதிகமாக இருந்தால், இந்தப் புலம் HID புலத்தை மீறுகிறது. &lt;/p&gt;&lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"987\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1009\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.</source>\n        <translation>இரண்டு சாதனங்களில் ஒரே மறைக்கப்பட்டிருந்தால் ACPI க்கு தேவைப்படும் தனித்துவமான ஐடி. இந்த மதிப்பு ACPI பெயர் இடத்தில் தொடர்புடைய UID/HID சோடியுடன் பொருந்த வேண்டும். இந்த மதிப்பு ஒரு சரமாக சேமிக்கப்படுகிறது. இந்த சரத்தின் நீளம் 0 என்றால், UID புலம் பயன்படுத்தப்படுகிறது. இந்த சரத்தின் நீளம் 0 ஐ விட அதிகமாக இருந்தால், இந்த புலம் UID புலத்தை மீறுகிறது.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"990\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"996\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1012\"/>\n        <source>UIDSTR</source>\n        <translation>Uidstr</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"993\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1015\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; இரண்டு சாதனங்களில் ஒரே மறைக்கப்பட்டிருந்தால் ACPI க்கு தேவைப்படும் தனித்துவமான ஐடி. இந்த மதிப்பு ACPI பெயர் இடத்தில் தொடர்புடைய UID/HID சோடியுடன் பொருந்த வேண்டும். இந்த மதிப்பு ஒரு சரமாகச் சேமிக்கப்படுகிறது. இந்தச் சரத்தின் நீளம் 0 என்றால், UID புலம் பயன்படுத்தப்படுகிறது. இந்தச் சரத்தின் நீளம் 0 ஐ விட அதிகமாக இருந்தால், இந்தப் புலம் UID புலத்தை மீறுகிறது. &lt;/p&gt;&lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1044\"/>\n        <source>Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.</source>\n        <translation>சாதனங்கள் இணக்கமான PNP வன்பொருள் ஐடி ஒரு சரமாக சேமிக்கப்படுகிறது. இந்த மதிப்பு ACPI பெயர்வெளியில் தொடர்புடைய CID ஆல் திருப்பி அனுப்பப்பட்ட இணக்கமான சாதன ஐடிகளில் குறைந்தபட்சம் பொருந்த வேண்டும். இந்த சரத்தின் நீளம் 0 ஆக இருந்தால், சிஐடி புலம் பயன்படுத்தப்படுகிறது. இந்த சரத்தின் நீளம் 0 ஐ விட அதிகமாக இருந்தால், இந்த புலம் CID புலத்தை மீறுகிறது.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1025\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1031\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1047\"/>\n        <source>CIDSTR</source>\n        <translation>Cidstr</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1028\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1050\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; சாதனங்கள் இணக்கமான PNP வன்பொருள் ஐடி ஒரு சரமாகச் சேமிக்கப்படுகிறது. இந்த மதிப்பு ACPI பெயர்வெளியில் தொடர்புடைய CID ஆல் திருப்பி அனுப்பப்பட்ட இணக்கமான சாதன ஐடிகளில் குறைந்தபட்சம் பொருந்த வேண்டும். இந்தச் சரத்தின் நீளம் 0 ஆக இருந்தால், சிஐடி புலம் பயன்படுத்தப்படுகிறது. இந்தச் சரத்தின் நீளம் 0 ஐ விட அதிகமாக இருந்தால், இந்தப் புலம் சிஐடி புலத்தை மீறுகிறது. &lt;/p&gt;&lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1061\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1094\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1100\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1115\"/>\n        <source>ADR</source>\n        <translation>ஏ.டி.ஆர்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1064\"/>\n        <source>The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.</source>\n        <translation>கிராபிக்ச் வெளியீட்டு நெறிமுறையை ஆதரிக்க வீடியோ வெளியீட்டு சாதன பண்புகளைக் கொண்டிருக்க ஏடிஆர் சாதன பாதை பயன்படுத்தப்படுகிறது.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1067\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; கிராபிக்ச் வெளியீட்டு நெறிமுறையை ஆதரிக்க வீடியோ வெளியீட்டு சாதன பண்புகளைக் கொண்டிருக்க ADR சாதன பாதை பயன்படுத்தப்படுகிறது. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1091\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1112\"/>\n        <source>ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required</source>\n        <translation>ஏடிஆர் மதிப்பு. வீடியோ வெளியீட்டு சாதனங்களுக்கு இந்த புலத்தின் மதிப்பு அட்டவணை B-2 ACPI 3.0 விவரக்குறிப்பிலிருந்து வருகிறது. குறைந்தது ஒரு ஏடிஆர் மதிப்பு தேவை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1097\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1118\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; adr மதிப்பு. வீடியோ வெளியீட்டு சாதனங்களுக்கு இந்த புலத்தின் மதிப்பு அட்டவணை B-2 ACPI 3.0 விவரக்குறிப்பிலிருந்து வருகிறது. குறைந்தது ஒரு ஏடிஆர் மதிப்பு தேவை &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1131\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1192\"/>\n        <source>This device path may optionally contain more than one ADR entry.</source>\n        <translation>இந்த சாதன பாதையில் விருப்பமாக ஒன்றுக்கு மேற்பட்ட ஏடிஆர் நுழைவு இருக்கலாம்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1195\"/>\n        <source>Additional ADR</source>\n        <translation>கூடுதல் ஏ.டி.ஆர்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1198\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path may optionally contain more than one ADR entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; இந்தச் சாதனப் பாதையில் ஒன்றுக்கு மேற்பட்ட ADR உள்ளீடு இருக்கலாம்.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1153\"/>\n        <source>Additional ADR format.</source>\n        <translation>கூடுதல் ஏடிஆர் வடிவம்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1156\"/>\n        <source>Additional ADR format</source>\n        <translation>கூடுதல் ஏடிஆர் வடிவம்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1159\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Additional ADR format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; கூடுதல் ADR வடிவம். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1209\"/>\n        <source>NVDIMM</source>\n        <translation>நவ்திமாம்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1212\"/>\n        <source>This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.</source>\n        <translation>இந்த சாதன பாதை ACPI 6.0 விவரக்குறிப்பு வரையறுக்கப்பட்ட NFIT சாதன கைப்பிடியை அடையாளங்காட்டியாகப் பயன்படுத்தி ஒரு NVDIMM சாதனத்தை விவரிக்கிறது.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; இந்த சாதன பாதை ACPI 6.0 விவரக்குறிப்பு வரையறுக்கப்பட்ட NFIT சாதன கைப்பிடியை அடையாளங்காட்டியாகப் பயன்படுத்தி ஒரு NVDIMM சாதனத்தை விவரிக்கிறது. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1260\"/>\n        <source>NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.</source>\n        <translation>NFIT சாதன கைப்பிடி - தனித்துவமான உடல் அடையாளங்காட்டி. இந்த கைப்பிடிக்கு பயன்படுத்தப்படும் புலங்களின் குறிப்பிட்ட வரையறைக்கு ACPI வரையறுக்கப்பட்ட சாதனங்கள் மற்றும் சாதன குறிப்பிட்ட பொருள்கள் பிரிவு, NVDIMM சாதனங்கள் துணை அத்தியாயத்தைப் பார்க்கவும்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1242\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1248\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1263\"/>\n        <source>NFIT Device Handle</source>\n        <translation>NFIT சாதன கைப்பிடி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1245\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; NFIT சாதன கைப்பிடி - தனித்துவமான உடல் அடையாளங்காட்டி. இந்தக் கைப்பிடிக்கு பயன்படுத்தப்படும் புலங்களின் குறிப்பிட்ட வரையறைக்கு ACPI வரையறுக்கப்பட்ட சாதனங்கள் மற்றும் சாதன குறிப்பிட்ட பொருள்கள் பிரிவு, NVDIMM சாதனங்கள் துணை அத்தியாயத்தைப் பார்க்கவும்.&lt;/p&gt;&lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1284\"/>\n        <source>ATAPI</source>\n        <translation>அல்லது</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1287\"/>\n        <source>ATAPI Settings.</source>\n        <translation>ATAPI அமைப்புகள்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; atapi அமைப்புகள். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1336\"/>\n        <source>Set to zero for primary or one for secondary.</source>\n        <translation>முதன்மை பூச்சியமாக அமைக்கவும் அல்லது இரண்டாம் நிலைக்கு ஒன்று.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1317\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1323\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1339\"/>\n        <source>Primary</source>\n        <translation>முதன்மை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1320\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1342\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for primary or one for secondary.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; முதன்மை அல்லது இரண்டாம் நிலைக்கு பூச்சியமாக அமைக்கவும். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1349\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1371\"/>\n        <source>Set to zero for master or one for slave mode.</source>\n        <translation>மாச்டருக்கு பூச்சியமாக அமைக்கவும் அல்லது அடிமை பயன்முறைக்கு ஒன்று.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1374\"/>\n        <source>Slave</source>\n        <translation>அடிமை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1377\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for master or one for slave mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; மாச்டருக்கு பூச்சியமாக அமைக்கவும் அல்லது அடிமை பயன்முறைக்கு ஒன்று. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1384\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1406\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4054\"/>\n        <source>Logical Unit Number.</source>\n        <translation>தருக்க அலகு எண்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1390\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1412\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4038\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; தருக்க அலகு எண். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1429\"/>\n        <source>SCSI</source>\n        <translation>SCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1432\"/>\n        <source>SCSI Settings.</source>\n        <translation>SCSI அமைப்புகள்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1435\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; SCSI அமைப்புகள். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1481\"/>\n        <source>Target ID on the SCSI bus (PUN).</source>\n        <translation>எச்சிஎச்ஐ பச் (புன்) இல் இலக்கு ஐடி.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1962\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1984\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4969\"/>\n        <source>Target ID</source>\n        <translation>இலக்கு ஐடி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1465\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1487\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the SCSI bus (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; SCSI பச்சில் இலக்கு ஐடி (pun). &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4985\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5006\"/>\n        <source>Logical Unit Number (LUN).</source>\n        <translation>தருக்க அலகு எண் (LUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5012\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; தருக்க அலகு எண் (LUN). &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1545\"/>\n        <source>Fibre Channel</source>\n        <translation>ஃபைபர் சேனல்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1548\"/>\n        <source>Fibre Channel Settings</source>\n        <translation>ஃபைபர் சேனல் அமைப்புகள்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1551\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; ஃபைபர் சேனல் அமைப்புகள் &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1596\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1750\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4434\"/>\n        <source>Reserved.</source>\n        <translation>ஒதுக்கப்பட்டுள்ளது.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1581\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1602\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1756\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3142\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4419\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; ஒதுக்கப்பட்டுள்ளது. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1615\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1636\"/>\n        <source>Fibre Channel World Wide Name.</source>\n        <translation>ஃபைபர் சேனல் உலகளாவிய பெயர்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1624\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1639\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4456\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4477\"/>\n        <source>World Wide Name</source>\n        <translation>உலகளாவிய பெயர்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1621\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1642\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel World Wide Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; ஃபைபர் சேனல் உலகளாவிய பெயர். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1676\"/>\n        <source>Fibre Channel Logical Unit Number.</source>\n        <translation>ஃபைபர் சேனல் தருக்க அலகு எண்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1661\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1682\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; ஃபைபர் சேனல் தருக்க அலகு எண். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1699\"/>\n        <source>Firewire</source>\n        <translation>ஃபயர்வேர்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1702\"/>\n        <source>Firewire Settings.</source>\n        <translation>ஃபயர்வேர் அமைப்புகள்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1705\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firewire Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; ஃபயர்வேர் அமைப்புகள். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1790\"/>\n        <source>1394 Global Unique ID (GUID)</source>\n        <translation>1394 உலகளாவிய தனித்துவமான ஐடி (கைட்)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1796\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 Global Unique ID (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; 1394 உலகளாவிய தனித்துவமான ஐடி (GUID) &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1816\"/>\n        <source>USB settings.</source>\n        <translation>யூ.எச்.பி அமைப்புகள்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1865\"/>\n        <source>USB Parent Port Number.</source>\n        <translation>யூ.எச்.பி பெற்றோர் துறைமுகம் எண்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1852\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1868\"/>\n        <source>Parent Port</source>\n        <translation>பெற்றோர் போர்டல்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1871\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Parent Port Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; யூ.எச்.பி பெற்றோர் துறைமுகம் எண். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1906\"/>\n        <source>USB Interface Number.</source>\n        <translation>யூ.எச்.பி இடைமுக எண்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1912\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; யூ.எச்.பி இடைமுக எண்.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1929\"/>\n        <source>I2O</source>\n        <translation>ச்ரீ 2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1932\"/>\n        <source>I2O Settings</source>\n        <translation>I2o அமைப்புகள்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1935\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;I2O Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; i2o அமைப்புகள் &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1981\"/>\n        <source>Target ID (TID) for a device.</source>\n        <translation>ஒரு சாதனத்திற்கான இலக்கு ஐடி (TID).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1965\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1987\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID (TID) for a device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; ஒரு சாதனத்திற்கான இலக்கு ஐடி (TID). &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2004\"/>\n        <source>InfiniBand</source>\n        <translation>எண்ணியல்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2007\"/>\n        <source>InfiniBand Settings.</source>\n        <translation>இன்பினிபாண்ட் அமைப்புகள்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2010\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;InfiniBand Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; இன்ஃபினிபாண்ட் அமைப்புகள். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2034\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2067\"/>\n        <source>Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.</source>\n        <translation>இன்பினிபாண்ட் சாதன பாதை கூறுகளை அடையாளம் காண/நிர்வகிக்க உதவும் கொடிகள்:\n பிட் 0 - ஐஓசி/சேவை (0 பி = ஐஓசி, 1 பி = சேவை).\n பிட் 1 - துவக்க சூழலை நீட்டிக்கவும்.\n பிட் 2 - கன்சோல் நெறிமுறை.\n பிட் 3 - சேமிப்பக நெறிமுறை.\n பிட் 4 - பிணைய நெறிமுறை.\n மற்ற அனைத்து பிட்களும் ஒதுக்கப்பட்டுள்ளன.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2043\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2055\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2076\"/>\n        <source>Resource Flags</source>\n        <translation>வள கொடிகள்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2046\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2079\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; இன்ஃபினிபாண்ட் சாதன பாதை கூறுகளை அடையாளம் காண/நிர்வகிக்க உதவும் கொடிகள்:\n பிட் 0 - ஐஓசி/சேவை (0 பி = ஐஓசி, 1 பி = சேவை).\n பிட் 1 - துவக்க சூழலை நீட்டிக்கவும்.\n பிட் 2 - கன்சோல் நெறிமுறை.\n பிட் 3 - சேமிப்பக நெறிமுறை.\n பிட் 4 - பிணைய நெறிமுறை.\n மற்ற எல்லா பிட்களும் ஒதுக்கப்பட்டுள்ளன.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2098\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2119\"/>\n        <source>128-bit Global Identifier for remote fabric port</source>\n        <translation>தொலைநிலை துணி துறைமுகத்திற்கான 128-பிட் உலகளாவிய அடையாளங்காட்டி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2101\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2122\"/>\n        <source>PORT GID</source>\n        <translation>துறைமுகம் அறிவிலி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2104\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2125\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;128-bit Global Identifier for remote fabric port&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; ரிமோட் ஃபேப்ரிக் போர்ட்டுக்கான 128-பிட் உலகளாவிய அடையாளங்காட்டி &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2135\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2156\"/>\n        <source>64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)</source>\n        <translation>தொலைநிலை IOC அல்லது சேவையக செயல்முறைக்கு 64-பிட் தனிப்பட்ட அடையாளங்காட்டி. வளக் கொடிகளால் குறிப்பிடப்பட்ட புலத்தின் விளக்கம் (பிட் 0)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2138\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2144\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2159\"/>\n        <source>IOC GUID/Service ID</source>\n        <translation>IOC GUID/SERVICE ஐடி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2141\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2162\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; தொலைநிலை IOC அல்லது சேவையக செயல்முறைக்கு 64-பிட் தனிப்பட்ட அடையாளங்காட்டியை. வளக் கொடிகளால் குறிப்பிடப்பட்ட புலத்தின் விளக்கம் (பிட் 0) &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2175\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2196\"/>\n        <source>64-bit persistent ID of remote IOC port.</source>\n        <translation>தொலைதூர ஐ.ஓ.சி போர்ட்டின் 64-பிட் தொடர்ச்சியான ஐடி.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2184\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2199\"/>\n        <source>Target Port ID</source>\n        <translation>இலக்கு துறைமுகம் ஐடி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2181\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote IOC port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; ரிமோட் ஐஓசி போர்ட்டின் 64-பிட் தொடர்ச்சியான ஐடி.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2236\"/>\n        <source>64-bit persistent ID of remote device.</source>\n        <translation>தொலைநிலை சாதனத்தின் 64-பிட் தொடர்ச்சியான ஐடி.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2239\"/>\n        <source>Device ID</source>\n        <translation>கருவி அடையாளம்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; தொலைநிலை சாதனத்தின் 64-பிட் தொடர்ச்சியான ஐடி.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2259\"/>\n        <source>MAC Address</source>\n        <translation>மேக் முகவரி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2262\"/>\n        <source>MAC settings.</source>\n        <translation>மேக் அமைப்புகள்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2289\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2310\"/>\n        <source>The MAC address for a network interface padded with 0s.</source>\n        <translation>0S உடன் திணிக்கப்பட்ட பிணைய இடைமுகத்திற்கான MAC முகவரி.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2295\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2316\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The MAC address for a network interface padded with 0s.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; 0S உடன் திணிக்கப்பட்ட ஒரு பிணைய இடைமுகத்திற்கான MAC முகவரி. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2329\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2351\"/>\n        <source>Network interface type (i.e., 802.3, FDDI). See RFC 3232.</source>\n        <translation>பிணையம் இடைமுக வகை (அதாவது, 802.3, FDDI). RFC 3232 ஐப் பார்க்கவும்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2357\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network interface type (i.e., 802.3, FDDI). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; பிணைய இடைமுக வகை (அதாவது, 802.3, FDDI). RFC 3232 ஐக் காண்க. &lt;/p&gt;&lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2377\"/>\n        <source>IPv4 settings.</source>\n        <translation>ஐபிவி 4 அமைப்புகள்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2425\"/>\n        <source>The local IPv4 address.</source>\n        <translation>உள்ளக ஐபிவி 4 முகவரி.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2407\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2763\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2784\"/>\n        <source>Local IP Address</source>\n        <translation>உள்ளக ஐபி முகவரி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2431\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; உள்ளக IPv4 முகவரி. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2465\"/>\n        <source>The remote IPv4 address.</source>\n        <translation>தொலை ஐபிவி 4 முகவரி.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2447\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2824\"/>\n        <source>Remote IP Address</source>\n        <translation>தொலை ஐபி முகவரி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2471\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; ரிமோட் ஐபிவி 4 முகவரி. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2862\"/>\n        <source>The local port number.</source>\n        <translation>உள்ளக துறைமுகம் எண்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2487\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2865\"/>\n        <source>Local Port</source>\n        <translation>உள்ளக துறைமுகம்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2490\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; உள்ளக துறைமுகம் எண். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2547\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2903\"/>\n        <source>The remote port number.</source>\n        <translation>ரிமோட் துறைமுகம் எண்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2550\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2906\"/>\n        <source>Remote Port</source>\n        <translation>தொலை துறைமுகம்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2553\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2909\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; ரிமோட் துறைமுகம் எண். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2566\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2588\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2922\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2944\"/>\n        <source>The network protocol (i.e., UDP, TCP). See RFC 3232.</source>\n        <translation>பிணையம் நெறிமுறை (அதாவது, யுடிபி, டி.சி.பி). RFC 3232 ஐப் பார்க்கவும்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2928\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2950\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The network protocol (i.e., UDP, TCP). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; பிணைய நெறிமுறை (அதாவது, UDP, TCP). RFC 3232 ஐக் காண்க. &lt;/p&gt;&lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2631\"/>\n        <source>0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.</source>\n        <translation>0x00 - மூல ஐபி முகவரி DHCP என்றாலும் ஒதுக்கப்பட்டது.\n 0x01 - மூல ஐபி முகவரி நிலையான முறையில் பிணைக்கப்பட்டுள்ளது.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2635\"/>\n        <source>Static IP Address</source>\n        <translation>நிலையான ஐபி முகவரி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; 0x00 - மூல ஐபி முகவரி DHCP என்றாலும் ஒதுக்கப்பட்டது.\n 0x01 - மூல ஐபி முகவரி நிலையான முறையில் பிணைக்கப்பட்டுள்ளது. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2667\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3083\"/>\n        <source>The Gateway IP Address.</source>\n        <translation>நுழைவாயில் ஐபி முகவரி.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3071\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3086\"/>\n        <source>Gateway IP Address</source>\n        <translation>நுழைவாயில் ஐபி முகவரி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2673\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Gateway IP Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; நுழைவாயில் ஐபி முகவரி. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2686\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2707\"/>\n        <source>Subnet mask.</source>\n        <translation>சப்நெட் மாச்க்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2689\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2695\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2710\"/>\n        <source>Subnet Mask</source>\n        <translation>சப்நெட் மாச்க்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2733\"/>\n        <source>IPv6 settings.</source>\n        <translation>ஐபிவி 6 அமைப்புகள்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2760\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2781\"/>\n        <source>The local IPv6 address.</source>\n        <translation>உள்ளக ஐபிவி 6 முகவரி.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2787\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; உள்ளக IPv6 முகவரி. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2821\"/>\n        <source>The remote IPv6 address.</source>\n        <translation>தொலை ஐபிவி 6 முகவரி.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; ரிமோட் ஐபிவி 6 முகவரி. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2963\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2989\"/>\n        <source>0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.</source>\n        <translation>0x00 - உள்ளக ஐபி முகவரி கைமுறையாக கட்டமைக்கப்பட்டது.\n 0x01 - உள்ளக ஐபி முகவரி ஐபிவி 6 நிலையற்ற ஆட்டோ -உள்ளமைவு மூலம் ஒதுக்கப்படுகிறது.\n 0x02 - உள்ளக ஐபி முகவரி ஐபிவி 6 மாநில உள்ளமைவு மூலம் ஒதுக்கப்படுகிறது.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2976\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2994\"/>\n        <source>IP Address Origin</source>\n        <translation>ஐபி முகவரி தோற்றம்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2971\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2997\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; 0x00 - உள்ளக ஐபி முகவரி கைமுறையாகக் கட்டமைக்கப்பட்டது.\n 0x01 - உள்ளக ஐபி முகவரி ஐபிவி 6 நிலையற்ற ஆட்டோ -உள்ளமைவு மூலம் ஒதுக்கப்படுகிறது.\n 0x02 - உள்ளக ஐபி முகவரி ஐபிவி 6 மாநில உள்ளமைவு மூலம் ஒதுக்கப்படுகிறது. &lt;/p&gt;&lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3021\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3043\"/>\n        <source>The Prefix Length.</source>\n        <translation>முன்னொட்டு நீளம்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3024\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3030\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3046\"/>\n        <source>Prefix Length</source>\n        <translation>முன்னொட்டு நீளம்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3027\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3049\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Prefix Length.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; முன்னொட்டு நீளம். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3106\"/>\n        <source>UART</source>\n        <translation>Uart</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3109\"/>\n        <source>UART Settings.</source>\n        <translation>UART அமைப்புகள்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3112\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; uart அமைப்புகள். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3176\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3197\"/>\n        <source>The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.</source>\n        <translation>UART பாணி சாதனத்திற்கான பாட் வீத அமைப்பு. 0 இன் மதிப்பு என்பது சாதனங்களின் இயல்புநிலை பாட் வீதம் பயன்படுத்தப்படும் என்பதாகும்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3179\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3185\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3200\"/>\n        <source>Baud Rate</source>\n        <translation>பாட் வீதம்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3182\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3203\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; UART பாணி சாதனத்திற்கான பாட் வீத அமைப்பு. 0 இன் மதிப்பு என்பது சாதனங்களின் இயல்புநிலை பாட் வீதம் பயன்படுத்தப்படும் என்பதாகும். &lt;/p&gt;&lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3216\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3238\"/>\n        <source>The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.</source>\n        <translation>UART பாணி சாதனத்திற்கான தரவு பிட்களின் எண்ணிக்கை. 0 இன் மதிப்பு என்பது சாதனங்களின் இயல்புநிலை தரவு பிட்களின் எண்ணிக்கை பயன்படுத்தப்படும் என்பதாகும்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3219\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3225\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3241\"/>\n        <source>Data Bits</source>\n        <translation>தரவு பிட்கள்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3222\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; UART பாணி சாதனத்திற்கான தரவு பிட்களின் எண்ணிக்கை. 0 இன் மதிப்பு என்பது சாதனங்களின் இயல்புநிலை தரவு பிட்களின் எண்ணிக்கை பயன்படுத்தப்படும்.&lt;/p&gt;&lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3257\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3291\"/>\n        <source>The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.</source>\n        <translation>UART பாணி சாதனத்திற்கான சமநிலை அமைப்பு:\n 0x00 - இயல்புநிலை சமநிலை.\n 0x01 - சமநிலை இல்லை.\n 0x02 - ஒரு நிகர் கூட.\n 0x03 - ஒற்றைப்படை சமநிலை.\n 0x04 - மார்க் சமநிலை.\n 0x05 - விண்வெளி சமநிலை.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3266\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3300\"/>\n        <source>Parity</source>\n        <translation>ஒரு நிகர்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3303\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; UART பாணி சாதனத்திற்கான சமநிலை அமைப்பு:\n 0x00 - இயல்புநிலை சமநிலை.\n 0x01 - சமநிலை இல்லை.\n 0x02 - ஒரு நிகர் கூட.\n 0x03 - ஒற்றைப்படை சமநிலை.\n 0x04 - மார்க் சமநிலை.\n 0x05 - விண்வெளி சமநிலை. &lt;/p&gt;&lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3313\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3394\"/>\n        <source>Default</source>\n        <translation>இயல்புநிலை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3318\"/>\n        <source>No</source>\n        <translation>இல்லை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3323\"/>\n        <source>Even</source>\n        <translation>இரட்டை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3328\"/>\n        <source>Odd</source>\n        <translation>ஒற்றைப் படை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3333\"/>\n        <source>Mark</source>\n        <translation>குறி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3338\"/>\n        <source>Space</source>\n        <translation>இடைவெளி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3346\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3376\"/>\n        <source>The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.</source>\n        <translation>UART பாணி சாதனத்திற்கான நிறுத்த பிட்களின் எண்ணிக்கை:\n 0x00 - இயல்புநிலை நிறுத்த பிட்கள்.\n 0x01 - 1 ச்டாப் பிட்.\n 0x02 - 1.5 நிறுத்த பிட்கள்.\n 0x03 - 2 ச்டாப் பிட்கள்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3353\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3363\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3383\"/>\n        <source>Stop Bits</source>\n        <translation>பிட்களை நிறுத்து</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3356\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; UART பாணி சாதனத்திற்கான நிறுத்தப் பிட்களின் எண்ணிக்கை:\n 0x00 - இயல்புநிலை நிறுத்தப் பிட்கள்.\n 0x01 - 1 ச்டாப் பிட்.\n 0x02 - 1.5 நிறுத்தப் பிட்கள்.\n 0x03 - 2 ச்டாப் பிட்கள். &lt;/p&gt;&lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3399\"/>\n        <source>1</source>\n        <translation>1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3404\"/>\n        <source>1.5</source>\n        <translation>1.5</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3409\"/>\n        <source>2</source>\n        <translation>2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3421\"/>\n        <source>USB Class</source>\n        <translation>யூ.எச்.பி வகுப்பு</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3424\"/>\n        <source>USB Class Settings.</source>\n        <translation>யூ.எச்.பி வகுப்பு அமைப்புகள்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3427\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Class Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; யூ.எச்.பி வகுப்பு அமைப்புகள். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3451\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3472\"/>\n        <source>Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.</source>\n        <translation>யூ.எச்.பி-ஐஎஃப் ஒதுக்கிய விற்பனையாளர் ஐடி. 0xFFFF இன் மதிப்பு எந்த விற்பனையாளர் ஐடியையும் பொருத்தும்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3454\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3460\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3475\"/>\n        <source>Vendor ID</source>\n        <translation>விற்பனையாளர் ஐடி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3457\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3478\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; USB-IF ஆல் ஒதுக்கப்பட்ட விற்பனையாளர் ஐடி. 0xffff இன் மதிப்பு எந்த விற்பனையாளர் ஐடியையும் பொருத்தும். &lt;/p&gt;&lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3491\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3512\"/>\n        <source>Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.</source>\n        <translation>யூ.எச்.பி-ஐஎஃப் ஒதுக்கிய தயாரிப்பு ஐடி. 0xFFFF இன் மதிப்பு எந்த தயாரிப்பு ஐடியையும் பொருத்தும்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3515\"/>\n        <source>Product ID</source>\n        <translation>தயாரிப்பு ஐடி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3518\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; USB-IF ஆல் ஒதுக்கப்பட்ட தயாரிப்பு ஐடி. 0xffff இன் மதிப்பு எந்த தயாரிப்பு ஐடியையும் பொருத்தும். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3552\"/>\n        <source>The class code assigned by the USB-IF. A value of 0xFF will match any class code.</source>\n        <translation>யூ.எச்.பி-ஐஎஃப் ஒதுக்கிய வகுப்பு குறியீடு. 0xFF இன் மதிப்பு எந்த வகுப்புக் குறியீட்டையும் பொருத்தும்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3540\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3555\"/>\n        <source>Device Class</source>\n        <translation>சாதன வகுப்பு</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3537\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3558\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The class code assigned by the USB-IF. A value of 0xFF will match any class code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; யூ.எச்.பி-ஐஎஃப் ஒதுக்கிய வகுப்புக் குறியீடு. 0xFF இன் மதிப்பு எந்த வகுப்புக் குறியீட்டையும் பொருத்துகிறது. &lt;/p&gt;&lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3592\"/>\n        <source>The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.</source>\n        <translation>யூ.எச்.பி-ஐஎஃப் ஒதுக்கிய துணைப்பிரிவு குறியீடு. 0xFF இன் மதிப்பு எந்த துணைப்பிரிவு குறியீட்டையும் பொருத்தும்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3574\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3595\"/>\n        <source>Device Subclass</source>\n        <translation>சாதன துணைப்பிரிவு</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; யூ.எச்.பி-ஐஎஃப் ஒதுக்கிய துணைப்பிரிவு குறியீடு. 0xFF இன் மதிப்பு எந்தத் துணைப்பிரிவு குறியீட்டையும் பொருத்துகிறது. &lt;/p&gt;&lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3632\"/>\n        <source>The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.</source>\n        <translation>யூ.எச்.பி-ஐஎஃப் ஒதுக்கிய நெறிமுறை குறியீடு. 0xFF இன் மதிப்பு எந்த நெறிமுறை குறியீட்டையும் பொருத்தும்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3635\"/>\n        <source>Device Protocol</source>\n        <translation>சாதன நெறிமுறை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3617\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; யூ.எச்.பி-ஐஎஃப் ஒதுக்கிய நெறிமுறை குறியீடு. 0xFF இன் மதிப்பு எந்த நெறிமுறை குறியீட்டையும் பொருத்துகிறது. &lt;/p&gt;&lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3655\"/>\n        <source>USB WWID</source>\n        <translation>USB WWID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3658\"/>\n        <source>This device path describes a USB device using its serial number.</source>\n        <translation>இந்த சாதன பாதை ஒரு யூ.எச்.பி சாதனத்தை அதன் வரிசை எண்ணைப் பயன்படுத்தி விவரிக்கிறது.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3661\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a USB device using its serial number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; இந்தச் சாதன பாதை அதன் வரிசை எண்ணைப் பயன்படுத்தி ஒரு யூ.எச்.பி சாதனத்தை விவரிக்கிறது.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3685\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3707\"/>\n        <source>USB interface Number.</source>\n        <translation>யூ.எச்.பி இடைமுக எண்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; யூ.எச்.பி இடைமுக எண். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3747\"/>\n        <source>USB vendor id of the device.</source>\n        <translation>சாதனத்தின் யூ.எச்.பி விற்பனையாளர் ஐடி.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3750\"/>\n        <source>Device Vendor Id</source>\n        <translation>சாதன விற்பனையாளர் ஐடி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3753\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB vendor id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; சாதனத்தின் யூ.எச்.பி விற்பனையாளர் ஐடி. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3787\"/>\n        <source>USB product id of the device.</source>\n        <translation>சாதனத்தின் யூ.எச்.பி தயாரிப்பு ஐடி.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3790\"/>\n        <source>Device Product Id</source>\n        <translation>சாதன தயாரிப்பு ஐடி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3793\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB product id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; சாதனத்தின் யூ.எச்.பி தயாரிப்பு ஐடி. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3828\"/>\n        <source>Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).</source>\n        <translation>யூ.எச்.பி வரிசை எண்ணின் கடைசி 64 அல்லது-ஃபெவர் யுடிஎஃப் -16 எழுத்துக்கள். சரத்தின் நீளம் நீள புலத்தால் தீர்மானிக்கப்படுகிறது, இது வரிசை எண் புலத்தின் ஆஃப்செட் (10).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3815\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3831\"/>\n        <source>Serial Number</source>\n        <translation>வரிசை எண்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3812\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; யூ.எச்.பி வரிசை எண்ணின் கடைசி 64 அல்லது-ஃபெவர் யுடிஎஃப் -16 எழுத்துக்கள். சரத்தின் நீளம் நீளப் புலத்தால் தீர்மானிக்கப்படுகிறது வரிசை எண் புலத்தின் ஆஃப்செட் (10).&lt;/p&gt;&lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3845\"/>\n        <source>Device Logical Unit</source>\n        <translation>சாதனம் தருக்க அலகு</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3848\"/>\n        <source>Device Logical Unit Settings.</source>\n        <translation>சாதனம் தருக்க அலகு அமைப்புகள்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3851\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device Logical Unit Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; சாதன தருக்க அலகு அமைப்புகள். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3897\"/>\n        <source>Logical Unit Number for the interface.</source>\n        <translation>இடைமுகத்திற்கான தருக்க அலகு எண்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3903\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number for the interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; இடைமுகத்திற்கான தருக்க அலகு எண். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3923\"/>\n        <source>SATA settings.</source>\n        <translation>SATA அமைப்புகள்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3950\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3972\"/>\n        <source>The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.</source>\n        <translation>சாதனம் அல்லது துறைமுகம் பெருக்கி இணைப்பை எளிதாக்கும் HBA துறைமுகம் எண். 0xffff மதிப்பு ஒதுக்கப்பட்டுள்ளது.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3953\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3975\"/>\n        <source>HBA Port</source>\n        <translation>HBA துறைமுகம்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3956\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3978\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; சாதனம் அல்லது துறைமுகம் பெருக்கி இணைப்பை எளிதாக்கும் HBA துறைமுகம் எண். 0xffff மதிப்பு ஒதுக்கப்பட்டுள்ளது. &lt;/p&gt;&lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4013\"/>\n        <source>The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.</source>\n        <translation>சாதனத்திற்கான இணைப்பை எளிதாக்கும் துறைமுகம் பெருக்கி துறைமுகம் எண். சாதனம் நேரடியாக HBA உடன் இணைக்கப்பட்டிருந்தால் 0xffff ஆக அமைக்கப்பட வேண்டும்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4000\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4016\"/>\n        <source>Port Multiplier Port</source>\n        <translation>துறைமுகம் பெருக்கி துறைமுகம்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3997\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4019\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; சாதனத்திற்கான இணைப்பை எளிதாக்கும் துறைமுகம் பெருக்கி துறைமுகம் எண். சாதனம் நேரடியாக HBA உடன் இணைக்கப்பட்டிருந்தால் 0xffff ஆக அமைக்கப்பட வேண்டும். &lt;/p&gt;&lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4077\"/>\n        <source>iSCSI</source>\n        <translation>iscsi</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4080\"/>\n        <source>iSCSI Settings.</source>\n        <translation>ISCSI அமைப்புகள்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4083\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; iscsi அமைப்புகள். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4129\"/>\n        <source>Network Protocol (0 = TCP, 1+ = reserved).</source>\n        <translation>பிணையம் நெறிமுறை (0 = TCP, 1+ = ஒதுக்கப்பட்டுள்ளது).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4113\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network Protocol (0 = TCP, 1+ = reserved).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; பிணையம் நெறிமுறை (0 = TCP, 1+ = ஒதுக்கப்பட்டுள்ளது).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4148\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4169\"/>\n        <source>iSCSI Login Options.</source>\n        <translation>ISCSI உள்நுழைவு விருப்பங்கள்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4151\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4172\"/>\n        <source>Options</source>\n        <translation>விருப்பங்கள்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4154\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4175\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Login Options.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; ISCSI உள்நுழைவு விருப்பங்கள். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4188\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4209\"/>\n        <source>8 byte array containing the iSCSI Logical Unit Number.</source>\n        <translation>ஐ.எச்.சி.எச்.ஐ தருக்க அலகு எண்ணைக் கொண்ட 8 பைட் வரிசை.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4194\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing the iSCSI Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; 8 ISCSI தருக்க அலகு எண்ணைக் கொண்ட 8 பைட் வரிசை.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4228\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4250\"/>\n        <source>iSCSI Target Portal group tag the initiator intends to establish a session with.</source>\n        <translation>ஐ.எச்.சி.எச்.ஐ இலக்கு போர்டல் குழு குறிச்சொல் ஒரு அமர்வை நிறுவ துவக்கி விரும்புகிறது.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4231\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4253\"/>\n        <source>Target Portal Group</source>\n        <translation>இலக்கு போர்டல் குழு</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4234\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4256\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Target Portal group tag the initiator intends to establish a session with.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ஐ.எஸ்.சி.எஸ்.ஐ இலக்கு போர்ட்டல் குழு குறிச்சொல் ஒரு அமர்வை நிறுவ துவக்கி விரும்புகிறது.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4291\"/>\n        <source>iSCSI NodeTarget Name.</source>\n        <translation>iscsi nodetarget பெயர்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4272\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4294\"/>\n        <source>Target Name</source>\n        <translation>இலக்கு பெயர்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4275\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4297\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI NodeTarget Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; iscsi nodetarget பெயர்.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4308\"/>\n        <source>VLAN</source>\n        <translation>Vlan</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4311\"/>\n        <source>VLAN Settings.</source>\n        <translation>VLAN அமைப்புகள்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4314\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; VLAN அமைப்புகள். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4360\"/>\n        <source>VLAN identifier (0-4094).</source>\n        <translation>VLAN அடையாளங்காட்டி (0-4094).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4341\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4347\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4363\"/>\n        <source>Vlan ID</source>\n        <translation>VLAN ஐடி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4344\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4366\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN identifier (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; VLAN அடையாளங்காட்டி (0-4094). &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4383\"/>\n        <source>Fibre Channel Ex</source>\n        <translation>ஃபைபர் சேனல் முன்னாள்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4386\"/>\n        <source>The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation>ஃபைபர் சேனல் முன்னாள் சாதன பாதை T-10 SCSI கட்டமைப்பு மாதிரி 4 விவரக்குறிப்புடன் இணங்க தருக்க அலகு எண் புலத்தின் வரையறையை தெளிவுபடுத்துகிறது.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4389\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt; &lt;body&gt; &lt;p&gt; ஃபைபர் சேனல் ஃச் சாதன பாதை தருக்க அலகு எண் புலத்தின் வரையறையை டி -10 எச்சிஎச்ஐ கட்டமைப்பு மாதிரி 4 விவரக்குறிப்புடன் இணங்கத் தெளிவுபடுத்துகிறது. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4474\"/>\n        <source>8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).</source>\n        <translation>ஃபைபர் சேனல் எண்ட் சாதன துறைமுகம் பெயர் (a.k.a., உலகளாவிய பெயர்) கொண்ட 8 பைட் வரிசை.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4480\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; ஃபைபர் சேனல் முடிவு சாதன துறைமுகம் பெயர் (a.k.a., உலகளாவிய பெயர்) கொண்ட 8 பைட் வரிசை. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4514\"/>\n        <source>8 byte array containing Fibre Channel Logical Unit Number.</source>\n        <translation>ஃபைபர் சேனல் தருக்க அலகு எண் கொண்ட 8 பைட் வரிசை.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4499\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4520\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; ஃபைபர் சேனல் தருக்க அலகு எண்ணைக் கொண்ட 8 பைட் வரிசை. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4537\"/>\n        <source>SAS Extended Messaging</source>\n        <translation>SAS நீட்டிக்கப்பட்ட செய்தி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4540\"/>\n        <source>The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation>T-10 SCSI கட்டமைப்பு மாதிரி 4 விவரக்குறிப்புடன் இணங்க SAS EX சாதன பாதை தருக்க அலகு எண் புலத்தின் வரையறையை தெளிவுபடுத்துகிறது.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4543\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; SAS EX சாதன பாதை T-10 SCSI கட்டமைப்பு மாதிரி 4 விவரக்குறிப்புடன் ஒத்துப்போகத் தருக்க அலகு எண் புலத்தின் வரையறையைத் தெளிவுபடுத்துகிறது. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4567\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4588\"/>\n        <source>8-byte array of the SAS Address for Serial Attached SCSI Target Port.</source>\n        <translation>தொடர் இணைக்கப்பட்ட SCSI இலக்கு துறைமுகத்திற்கான SAS முகவரியின் 8-பைட் வரிசை.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4570\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4576\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4591\"/>\n        <source>SAS Address</source>\n        <translation>SAS முகவரி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4573\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4594\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Address for Serial Attached SCSI Target Port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; தொடர் இணைக்கப்பட்ட SCSI இலக்கு துறைமுகத்திற்கான SAS முகவரியின் 8-பைட் வரிசை. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4628\"/>\n        <source>8-byte array of the SAS Logical Unit Number.</source>\n        <translation>SAS தருக்க அலகு எண்ணின் 8-பைட் வரிசை.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4613\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4634\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; SAS தருக்க அலகு எண்ணின் 8-பைட் வரிசை. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4647\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4668\"/>\n        <source>More Information about the device and its interconnect.</source>\n        <translation>சாதனம் மற்றும் அதன் ஒன்றோடொன்று பற்றிய கூடுதல் தகவல்கள்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4650\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4656\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4671\"/>\n        <source>Device and Topology Info</source>\n        <translation>சாதனம் மற்றும் இடவியல் செய்தி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4653\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4674\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;More Information about the device and its interconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; சாதனம் மற்றும் அதன் ஒன்றோடொன்று பற்றிய கூடுதல் தகவல்கள். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4687\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4709\"/>\n        <source>Relative Target Port (RTP).</source>\n        <translation>உறவினர் இலக்கு துறைமுகம் (RTP).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4690\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4696\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4712\"/>\n        <source>Relative Target Port</source>\n        <translation>உறவினர் இலக்கு துறைமுகம்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4715\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Relative Target Port (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; உறவினர் இலக்கு துறைமுகம் (RTP). &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4732\"/>\n        <source>NVM Express NS</source>\n        <translation>என்விஎம் எக்ச்பிரச் என்எச்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4735\"/>\n        <source>NVM Express Namespace Settings.</source>\n        <translation>என்விஎம் எக்ச்பிரச் பெயர்வெளி அமைப்புகள்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4738\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM Express Namespace Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; nvm எக்ச்பிரச் பெயர்வெளி அமைப்புகள். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4783\"/>\n        <source>Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.</source>\n        <translation>பெயர்வெளி அடையாளங்காட்டி (என்.எச்.ஐ.டி). 0 மற்றும் 0xFFFFFFF இன் மதிப்புகள் செல்லாது.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4765\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4771\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4786\"/>\n        <source>NSID</source>\n        <translation>Nsid</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4768\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4789\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; பெயர்வெளி அடையாளங்காட்டி (NSID). 0 மற்றும் 0xffffffff இன் மதிப்புகள் தவறானவை. &lt;/p&gt;&lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4802\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4823\"/>\n        <source>This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.</source>\n        <translation>இந்த துறையில் IEEE விரிவாக்கப்பட்ட தனித்துவமான அடையாளங்காட்டி (EUI-64) உள்ளது. EUI-64 மதிப்பு இல்லாத சாதனங்கள் இந்த புலத்தை 0 மதிப்புடன் துவக்க வேண்டும்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4805\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4811\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4826\"/>\n        <source>EUI-64</source>\n        <translation>EUI-64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4808\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4829\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; இந்தத் துறையில் IEEE விரிவாக்கப்பட்ட தனித்துவமான அடையாளங்காட்டி (EUI-64) உள்ளது. EUI-64 மதிப்பு இல்லாத சாதனங்கள் இந்தப் புலத்தை 0 மதிப்புடன் துவக்க வேண்டும். &lt;/p&gt;&lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4849\"/>\n        <source>Refer to RFC 3986 for details on the URI contents.</source>\n        <translation>யூரி உள்ளடக்கங்கள் குறித்த விவரங்களுக்கு RFC 3986 ஐப் பார்க்கவும்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Refer to RFC 3986 for details on the URI contents.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; யூரி உள்ளடக்கங்களைப் பற்றிய விவரங்களுக்கு RFC 3986 ஐப் பார்க்கவும். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4876\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4898\"/>\n        <source>Instance of the URI pursuant to RFC 3986.</source>\n        <translation>RFC 3986 க்கு இணங்க யூரி இன் நிகழ்வு.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4882\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Instance of the URI pursuant to RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; RFC 3986 க்கு இணங்க யூரி இன் சான்று. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4915\"/>\n        <source>UFS</source>\n        <translation>யுஎஃப்எச்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4918\"/>\n        <source>UFS Settings.</source>\n        <translation>யுஎஃப்எச் அமைப்புகள்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; UFS அமைப்புகள். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4966\"/>\n        <source>Target ID on the UFS interface (PUN).</source>\n        <translation>யுஎஃப்எச் இடைமுகத்தில் (புன்) இலக்கு ஐடி.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4972\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the UFS interface (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; UFS இடைமுகத்தில் இலக்கு ஐடி (pun). &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5029\"/>\n        <source>SD</source>\n        <translation>எச்.டி.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5032\"/>\n        <source>SD Settings.</source>\n        <translation>எச்டி அமைப்புகள்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5035\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; எச்டி அமைப்புகள். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5081\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5299\"/>\n        <source>Slot Number</source>\n        <translation>ச்லாட் எண்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5084\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5280\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5286\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5302\"/>\n        <source>Slot</source>\n        <translation>ச்லாட்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5087\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5283\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5305\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Slot Number&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; ச்லாட் எண் &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5104\"/>\n        <source>Bluetooth</source>\n        <translation>ஊடலை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5107\"/>\n        <source>EFI Bluetooth Settings.</source>\n        <translation>இஃஐ ஊடலை அமைப்புகள்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5110\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI Bluetooth Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; EFI ஊடலை அமைப்புகள். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5155\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5373\"/>\n        <source>48-bit Bluetooth device address.</source>\n        <translation>48-பிட் ஊடலை சாதன முகவரி.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5143\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5158\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5361\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5376\"/>\n        <source>Device Address</source>\n        <translation>சாதன முகவரி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5161\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5379\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-bit Bluetooth device address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; 48-பிட் ஊடலை சாதன முகவரி. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5178\"/>\n        <source>Wi-Fi</source>\n        <translation>இல்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5181\"/>\n        <source>Wi-Fi Settings.</source>\n        <translation>வைஃபை அமைப்புகள்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5184\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wi-Fi Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; வைஃபை அமைப்புகள். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5208\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5230\"/>\n        <source>SSID in octet string.</source>\n        <translation>ஆக்டெட் சரத்தில் SSID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5211\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5217\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5233\"/>\n        <source>SSID</source>\n        <translation>Ssid</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5214\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5236\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID in octet string.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; ஆக்டெட் சரம். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt; இல் SSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5247\"/>\n        <source>eMMC</source>\n        <translation>EMMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5250\"/>\n        <source>Embedded Multi-Media Card Settings.</source>\n        <translation>உட்பொதிக்கப்பட்ட மல்டி மீடியா அட்டை அமைப்புகள்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5253\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Embedded Multi-Media Card Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; உட்பொதிக்கப்பட்ட மல்டி மீடியா அட்டை அமைப்புகள். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5322\"/>\n        <source>BluetoothLE</source>\n        <translation>ஊடலைஎல்இ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5325\"/>\n        <source>EFI BluetoothLE Settings.</source>\n        <translation>இஃஐ ஊடலைஎல்இ அமைப்புகள்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5328\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI BluetoothLE Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; EFI ஊடலை அமைப்புகள்.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5416\"/>\n        <source>0x00 - Public Device Address.\n0x01 - Random Device Address.</source>\n        <translation>0x00 - பொது சாதன முகவரி.\n 0x01 - சீரற்ற சாதன முகவரி.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5396\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5403\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5420\"/>\n        <source>Address Type</source>\n        <translation>முகவரி வகை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5399\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5423\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Public Device Address.\n0x01 - Random Device Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; 0x00 - பொது சாதன முகவரி.\n 0x01 - சீரற்ற சாதன முகவரி. &lt;/p&gt;&lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5428\"/>\n        <source>Public</source>\n        <translation>பொது</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5433\"/>\n        <source>Random</source>\n        <translation>சீரற்ற</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5445\"/>\n        <source>DNS</source>\n        <translation>டிஎன்எச்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5448\"/>\n        <source>DNS Settings.</source>\n        <translation>டிஎன்எச் அமைப்புகள்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5451\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DNS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; dns அமைப்புகள். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5499\"/>\n        <source>0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.</source>\n        <translation>0x00 - டிஎன்எச் சேவையக முகவரி ஐபிவி 4 முகவரி.\n 0x01 - டிஎன்எச் சேவையக முகவரி ஐபிவி 6 முகவரி.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5482\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5506\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; 0x00 - DNS சேவையக முகவரி IPv4 முகவரி.\n 0x01 - DNS சேவையக முகவரி IPv6 முகவரி. &lt;/p&gt;&lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5514\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5575\"/>\n        <source>One or more instances of the DNS server address in EFI_IP_ADDRESS.</source>\n        <translation>EFI_IP_ADDRESS இல் DNS சேவையக முகவரியின் ஒன்று அல்லது அதற்கு மேற்பட்ட நிகழ்வுகள்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5520\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5581\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;One or more instances of the DNS server address in EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; EFI_IP_ADDRESS இல் உள்ள DNS சேவையக முகவரியின் ஒன்று அல்லது அதற்கு மேற்பட்ட நிகழ்வுகள். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5536\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7584\"/>\n        <source>Data format.</source>\n        <translation>தரவு வடிவம்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5592\"/>\n        <source>NVDIMM NS</source>\n        <translation>Nvdimm ns</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5595\"/>\n        <source>This device path describes a bootable NVDIMM namespace that is defined by a namespace label.</source>\n        <translation>இந்த சாதன பாதை ஒரு பெயர்வெளி லேபிளால் வரையறுக்கப்பட்ட துவக்கக்கூடிய NVDIMM பெயர்வெளியை விவரிக்கிறது.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVDIMM namespace that is defined by a namespace label.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; இந்த சாதன பாதை ஒரு பெயரிடக்கூடிய NVDIMM பெயர்வெளியை விவரிக்கிறது, இது பெயர்வெளி லேபிளால் வரையறுக்கப்படுகிறது. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5622\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5643\"/>\n        <source>Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.</source>\n        <translation>பெயர்வெளி தனித்துவமான சிட்டை அடையாளங்காட்டி UUID. இந்த புலத்தின் விவரங்களுக்கு NVDIMM சிட்டை நெறிமுறை - சிட்டை வரையறைகள் பிரிவில் UUID விளக்கத்தைப் பார்க்கவும்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5646\"/>\n        <source>UUID</source>\n        <translation>Uuid</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5628\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5649\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; பெயர்வெளி தனித்துவமான சிட்டை அடையாளங்காட்டி uuid. இந்தப் புலத்தின் விவரங்களுக்கு NVDIMM சிட்டை நெறிமுறையில் - சிட்டை வரையறைகள் பிரிவில் UUID விளக்கத்தைக் காண்க. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5663\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5698\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5706\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5724\"/>\n        <source>REST Service</source>\n        <translation>ஓய்வு பணி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5666\"/>\n        <source>REST Service Settings.</source>\n        <translation>பணி அமைப்புகளை மீட்டமைக்கவும்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5669\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;REST Service Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; ஓய்வு பணி அமைப்புகள். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5719\"/>\n        <source>0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.</source>\n        <translation>0x01 - ரெட்ஃபிச் ஓய்வு சேவை.\n 0x02 - ஓடாட்டா ஓய்வு சேவை.\n 0xff - விற்பனையாளர் குறிப்பிட்ட ஓய்வு பணி.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5701\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5727\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; 0x01 - ரெட்ஃபிச் ஓய்வு சேவை.\n 0x02 - ஓடாட்டா ஓய்வு சேவை.\n 0xff - விற்பனையாளர் குறிப்பிட்ட ஓய்வு பணி. &lt;/p&gt;&lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5733\"/>\n        <source>Redfish</source>\n        <translation>ரெட்ஃபிச்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5738\"/>\n        <source>OData</source>\n        <translation>ஓடாட்டா</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5743\"/>\n        <source>Vendor specific</source>\n        <translation>விற்பனையாளர் குறிப்பிட்ட</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5775\"/>\n        <source>0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.</source>\n        <translation>0x01 - இன் -பேண்ட் ஓய்வு சேவை.\n 0x02-பேண்ட்-க்கு வெளியே ஓய்வு பணி.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5755\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5779\"/>\n        <source>Access Mode</source>\n        <translation>அணுகல் பயன்முறை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5782\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; 0x01 - -பேண்ட் ஓய்வு சேவை.\n 0x02-பேண்ட்-க்கு வெளியே ஓய்வு பணி. &lt;/p&gt;&lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5787\"/>\n        <source>In-Band</source>\n        <translation>-இசைக்குழு</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5792\"/>\n        <source>Out-of-band</source>\n        <translation>பேண்ட்-க்கு வெளியே</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5821\"/>\n        <source>GUID of vendor specific REST service.</source>\n        <translation>விற்பனையாளர் குறிப்பிட்ட ஓய்வு சேவையின் கை.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID of vendor specific REST service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; விற்பனையாளர் குறிப்பிட்ட ஓய்வு சேவையின் வழிகாட்டுதல். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5898\"/>\n        <source>Vendor-defined data.</source>\n        <translation>விற்பனையாளர் வரையறுக்கப்பட்ட தரவு.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; விற்பனையாளர் வரையறுக்கப்பட்ட தரவு. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5915\"/>\n        <source>NVMe-oF NS</source>\n        <translation>Nvme-of ns</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5918\"/>\n        <source>This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.</source>\n        <translation>இந்த சாதன பாதை ஃபைபர் பெயர்வெளியில் துவக்கக்கூடிய என்விஎம்இ விவரிக்கிறது, இது ஒரு தனித்துவமான பெயர்வெளி மற்றும் துணை அமைப்பு NQN அடையாளத்தால் வரையறுக்கப்படுகிறது.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; இந்த சாதன பாதை ஃபைபர் பெயர்வெளியில் துவக்கக்கூடிய என்விஎம்இ விவரிக்கிறது, இது ஒரு தனித்துவமான பெயர்வெளி மற்றும் துணை அமைப்பு NQN அடையாளத்தால் வரையறுக்கப்படுகிறது. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5967\"/>\n        <source>Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.</source>\n        <translation>என்.வி.எம் எக்ச்பிரச் அடிப்படை விவரக்குறிப்பால் சிஎன்எச் 03 எச் நிட் புலத்தில் (1 எச், 2 எச், அல்லது 3 எச்) வரையறுக்கப்பட்ட உலகளவில் தனித்துவமான வகை மதிப்புகளுக்கு பெயர்வெளி அடையாளங்காட்டி வகை (என்ஐடிடி).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5970\"/>\n        <source>NIDT</source>\n        <translation>என்ஐடி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5973\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; பெயர்வெளி அடையாளங்காட்டி வகை (NIDT), என்விஎம் எக்ச்பிரச் அடிப்படை விவரக்குறிப்பால் சிஎன்எச் 03 எச் நிட் புலத்தில் (1H, 2H, அல்லது 3H) வரையறுக்கப்பட்ட உலகளாவிய தனித்துவமான வகை மதிப்புகளுக்கு. &lt;/p &gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5986\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6007\"/>\n        <source>Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.</source>\n        <translation>பிக் எண்டியன் வடிவத்தில் என்விஎம் எக்ச்பிரச் அடிப்படை விவரக்குறிப்பால் பெயர்வெளி அடையாள டி-ச்கிரிப்டர் பட்டியலில் (சிஎன்எச் 03 எச்) வரையறுக்கப்பட்ட உலகளாவிய தனித்துவமான மதிப்பு, பெயர்வெளி அடையாளங்காட்டி (என்ஐடி).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5989\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5995\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6010\"/>\n        <source>NID</source>\n        <translation>இல்லை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5992\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6013\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; பெயர்வெளி அடையாளங்காட்டி (என்ஐடி), பெரிய எண்டியன் வடிவத்தில் என்விஎம் எக்ச்பிரச் அடிப்படை விவரக்குறிப்பால் பெயர்வெளி அடையாள டி-ச்கிரிப்டர் பட்டியலில் (சிஎன்எச் 03 எச்) வரையறுக்கப்பட்ட உலகளவில் தனித்துவமான மதிப்பு. &lt;/p &gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6023\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6045\"/>\n        <source>Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.</source>\n        <translation>என்விஎம் எக்ச்பிரச் அடிப்படை விவரக்குறிப்பில் என்விஎம் தகுதிவாய்ந்த பெயருக்கு இணங்க என்.வி.எம் -8 சரம் என்-பைட்டுகளாக சேமிக்கப்பட்ட என்விஎம் துணை அமைப்பின் தனித்துவமான அடையாளங்காட்டி. அடையாளம் மற்றும் அங்கீகார நோக்கங்களுக்காக துணை அமைப்பு NQN பயன்படுத்தப்படுகிறது. அதிகபட்ச நீளம் 224 பைட்டுகள்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6026\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6048\"/>\n        <source>Subsystem NQN</source>\n        <translation>துணை அமைப்பு NQN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6029\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6051\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; என்விஎம் எக்ச்பிரச் அடிப்படை விவரக்குறிப்பில் என்விஎம் தகுதிவாய்ந்த பெயருக்கு இணங்க, என்.வி.எம் -8 சரம் என்-பைட்டுகளாக சேமிக்கப்பட்ட ஒரு என்விஎம் துணை அமைப்பின் தனித்துவமான அடையாளங்காட்டி. அடையாளம் மற்றும் அங்கீகார நோக்கங்களுக்காகத் துணை அமைப்பு NQN பயன்படுத்தப்படுகிறது. அதிகபட்ச நீளம் 224 பைட்டுகள். &lt;/p&gt;&lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6066\"/>\n        <source>Hard Drive</source>\n        <translation>வன்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6069\"/>\n        <source>The Hard Drive Media Device Path is used to represent a partition on a hard drive.</source>\n        <translation>வன்வட்டில் ஒரு பகிர்வைக் குறிக்க வன் மீடியா சாதன பாதை பயன்படுத்தப்படுகிறது.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6072\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Hard Drive Media Device Path is used to represent a partition on a hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; வன் ஒரு வன்வட்டில் ஒரு பகிர்வைக் குறிக்க வன் ஊடக சாதன பாதை பயன்படுத்தப்படுகிறது. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6174\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6196\"/>\n        <source>Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].</source>\n        <translation>நுழைவு 1 உடன் தொடங்கி ஒரு பகிர்வு அட்டவணையில் உள்ளீட்டை விவரிக்கிறது. பகிர்வு எண் பூச்சியம் முழு சாதனத்தையும் குறிக்கிறது. ஒரு MBR பகிர்வுக்கான செல்லுபடியாகும் பகிர்வு எண்கள் [1, 4]. சிபிடி பகிர்வுக்கான செல்லுபடியாகும் பகிர்வு எண்கள் [1, எண்ஃபார்டிசென்ட்ரிகள்].</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6180\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; நுழைவு 1 உடன் தொடங்கி ஒரு பகிர்வு அட்டவணையில் உள்ளீட்டை விவரிக்கிறது. பகிர்வு எண் பூச்சியம் முழு சாதனத்தையும் குறிக்கிறது. ஒரு MBR பகிர்வுக்கான செல்லுபடியாகும் பகிர்வு எண்கள் [1, 4]. ஒரு சிபிடி பகிர்வுக்கான செல்லுபடியாகும் பகிர்வு எண்கள் [1, numberofpartitionenties]. &lt;/p&gt;&lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6236\"/>\n        <source>Starting LBA of the partition on the hard drive.</source>\n        <translation>வன்வட்டில் பகிர்வின் எல்பிஏ தொடங்குகிறது.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6466\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6487\"/>\n        <source>Partition Start</source>\n        <translation>பகிர்வு தொடக்க</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting LBA of the partition on the hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; வன்வட்டில் பகிர்வின் LBA ஐத் தொடங்குதல். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6255\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6276\"/>\n        <source>Size of the partition in units of Logical Blocks.</source>\n        <translation>தருக்க தொகுதிகளின் அலகுகளில் பகிர்வின் அளவு.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6258\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6264\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6279\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6527\"/>\n        <source>Partition Size</source>\n        <translation>பகிர்வு அளவு</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6261\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6282\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Logical Blocks.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; தர்க்கரீதியான தொகுதிகளின் அலகுகளில் பகிர்வின் அளவு. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6295\"/>\n        <source>Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation>இந்த பகிர்வுக்கு தனித்துவமான கையொப்பம்:\n கையொப்பம் 0 ஆக இருந்தால், இந்த புலம் 16 பூச்சியங்களுடன் துவக்கப்பட வேண்டும்.\n கையொப்பம் 1 ஆக இருந்தால், MBR கையொப்பம் இந்த புலத்தின் முதல் 4 பைட்டுகளில் சேமிக்கப்படுகிறது. மற்ற 12 பைட்டுகள் பூச்சியங்களுடன் தொடங்கப்படுகின்றன.\n கையொப்பம் 2 ஆக இருந்தால், இந்த புலத்தில் 16 பைட் கையொப்பம் உள்ளது.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6301\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6310\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6367\"/>\n        <source>Partition Signature</source>\n        <translation>பகிர்வு கையொப்பம்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6304\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; இந்தப் பகிர்வுக்குத் தனித்துவமான கையொப்பம்:\n கையொப்பம் 0 ஆக இருந்தால், இந்தப் புலம் 16 பூச்சியங்களுடன் துவக்கப்பட வேண்டும்.\n கையொப்பம் 1 ஆக இருந்தால், MBR கையொப்பம் இந்தப் புலத்தின் முதல் 4 பைட்டுகளில் சேமிக்கப்படுகிறது. மற்ற 12 பைட்டுகள் பூச்சியங்களுடன் தொடங்கப்படுகின்றன.\n கையொப்பம் 2 ஆக இருந்தால், இந்தப் புலத்தில் 16 பைட் கையொப்பம் உள்ளது.&lt;/p&gt;&lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6322\"/>\n        <source>PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.</source>\n        <translation>வட்டு கையொப்பத்தின் பகுதி வகை (பயன்படுத்தப்படாத மதிப்புகள் ஒதுக்கப்பட்டவை):\n 0x00 - வட்டு கையொப்பம் இல்லை.\n 0x01 - 0x01 Mbr வகை 0x1b8 முகவரியிலிருந்து 32 -பிட் கையொப்பம்.\n 0x02 - கைட் கையொப்பம்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6328\"/>\n        <source>Signature Type</source>\n        <translation>கையொப்ப வகை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6331\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt; &lt;body&gt; &lt;p&gt; வட்டு கையொப்பத்தின் பகுதி வகை (பயன்படுத்தப்படாத மதிப்புகள் ஒதுக்கப்பட்டவை):\n 0x00 - வட்டு கையொப்பம் இல்லை.\n 0x01 - 0x01 Mbr வகை 0x1b8 முகவரியிலிருந்து 32 -பிட் கையொப்பம்.\n 0x02 - கைட் கையொப்பம். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6338\"/>\n        <source>None</source>\n        <translation>எதுவுமில்லை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6361\"/>\n        <source>Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation>இந்த பகிர்வுக்கு தனித்துவமான கையொப்பம்:\n கையொப்பம் 0 ஆக இருந்தால், இந்த புலம் 16 பூச்சியங்களுடன் துவக்கப்பட வேண்டும்.\n கையொப்பம் 1 ஆக இருந்தால், MBR கையொப்பம் இந்த புலத்தின் முதல் 4 பைட்டுகளில் சேமிக்கப்படுகிறது. மற்ற 12 பைட்டுகள் பூச்சியங்களுடன் தொடங்கப்படுகின்றன.\n கையொப்பம் 2 ஆக இருந்தால், இந்த புலத்தில் 16 பைட் கையொப்பம் உள்ளது.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6370\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; இந்தப் பகிர்வுக்குத் தனித்துவமான கையொப்பம்:\n கையொப்பம் 0 ஆக இருந்தால், இந்தப் புலம் 16 பூச்சியங்களுடன் துவக்கப்பட வேண்டும்.\n கையொப்பம் 1 ஆக இருந்தால், MBR கையொப்பம் இந்தப் புலத்தின் முதல் 4 பைட்டுகளில் சேமிக்கப்படுகிறது. மற்ற 12 பைட்டுகள் பூச்சியங்களுடன் தொடங்கப்படுகின்றன.\n கையொப்பம் 2 ஆக இருந்தால், இந்தப் புலத்தில் 16 பைட் கையொப்பம் உள்ளது. &lt;/p&gt;&lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6392\"/>\n        <source>CD-ROM</source>\n        <translation>சிடி-ரோம்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6395\"/>\n        <source>The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.</source>\n        <translation>சிடி-ரோம் மீடியா சாதன பாதை ஒரு சிடி-ரோமில் இருக்கும் கணினி பகிர்வை வரையறுக்கப் பயன்படுகிறது.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6398\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; குறுவட்டு-ரோமில் இருக்கும் கணினி பகிர்வை வரையறுக்க சிடி-ரோம் மீடியா சாதன பாதை பயன்படுத்தப்படுகிறது. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6444\"/>\n        <source>Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.</source>\n        <translation>துவக்க பட்டியலிலிருந்து துவக்க நுழைவு எண். ஆரம்ப/இயல்புநிலை நுழைவு பூச்சியமாக வரையறுக்கப்படுகிறது.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6425\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6431\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6447\"/>\n        <source>Boot Entry</source>\n        <translation>துவக்க நுழைவு</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6450\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; துவக்க பட்டியலிலிருந்து துவக்க நுழைவு எண். ஆரம்ப/இயல்புநிலை நுழைவு பூச்சியமாக வரையறுக்கப்படுகிறது. &lt;/p&gt;&lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6463\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6484\"/>\n        <source>Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.</source>\n        <translation>நடுத்தரத்தில் பகிர்வின் RBA ஐத் தொடங்குகிறது. சிடி-ரோம்கள் உறவினர் தருக்க தொகுதி முகவரியைப் பயன்படுத்துகின்றன.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6469\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6490\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; நடுத்தரத்தில் பகிர்வின் RBA ஐத் தொடங்குகிறது. குறுவட்டு-ரோம்கள் உறவினர் தருக்க தொகுதி முகவரியைப் பயன்படுத்துகின்றன. &lt;/p&gt;&lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6524\"/>\n        <source>Size of the partition in units of Blocks, also called Sectors.</source>\n        <translation>தொகுதிகளின் அலகுகளில் பகிர்வின் அளவு, துறைகள் என்றும் அழைக்கப்படுகிறது.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6530\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Blocks, also called Sectors.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; தொகுதிகளின் அலகுகளில் பகிர்வின் அளவு, துறைகள் என்றும் அழைக்கப்படுகிறது. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6547\"/>\n        <source>File Path</source>\n        <translation>கோப்பு பாதை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6550\"/>\n        <source>File Path settings.</source>\n        <translation>கோப்பு பாதை அமைப்புகள்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6553\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File Path settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; கோப்பு பாதை அமைப்புகள். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6599\"/>\n        <source>Path including directory and file names.</source>\n        <translation>அடைவு மற்றும் கோப்பு பெயர்கள் உள்ளிட்ட பாதை.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6586\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6602\"/>\n        <source>Path Name</source>\n        <translation>பாதை பெயர்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6583\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6605\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Path including directory and file names.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; அடைவு மற்றும் கோப்பு பெயர்கள் உட்பட பாதை. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6619\"/>\n        <source>The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.</source>\n        <translation>குறிப்பிடப்பட்ட பாதையின் இடத்தில் சாதன பாதையில் பயன்படுத்தப்படும் நெறிமுறையைக் குறிக்க மீடியா நெறிமுறை சாதன பாதை பயன்படுத்தப்படுகிறது.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6622\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; குறிப்பிடப்பட்ட பாதையின் இடத்தில் சாதனப் பாதையில் பயன்படுத்தப்படும் நெறிமுறையைக் குறிக்க மீடியா நெறிமுறை சாதன பாதை பயன்படுத்தப்படுகிறது. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6667\"/>\n        <source>The ID of the protocol.</source>\n        <translation>நெறிமுறையின் ஐடி.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6673\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ID of the protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; நெறிமுறையின் ஐடி. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6687\"/>\n        <source>Firmware File</source>\n        <translation>ஃபார்ம்வேர் கோப்பு</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6690\"/>\n        <source>Describes a firmware file in a firmware volume.</source>\n        <translation>ஃபார்ம்வேர் தொகுதியில் ஃபார்ம்வேர் கோப்பை விவரிக்கிறது.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6693\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware file in a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; ஒரு ஃபார்ம்வேர் தொகுதியில் ஒரு ஃபார்ம்வேர் கோப்பை விவரிக்கிறது. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6717\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6738\"/>\n        <source>Firmware file name GUID.</source>\n        <translation>ஃபார்ம்வேர் கோப்பு பெயர் வழிகாட்டி.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6723\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6744\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware file name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; ஃபார்ம்வேர் கோப்பு பெயர் கை. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6758\"/>\n        <source>Firmware Volume</source>\n        <translation>ஃபார்ம்வேர் தொகுதி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6761\"/>\n        <source>Describes a firmware volume.</source>\n        <translation>ஃபார்ம்வேர் அளவை விவரிக்கிறது.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6764\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; ஒரு ஃபார்ம்வேர் அளவை விவரிக்கிறது. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6809\"/>\n        <source>Firmware volume name GUID.</source>\n        <translation>ஃபார்ம்வேர் தொகுதி பெயர் வழிகாட்டி.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware volume name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; ஃபார்ம்வேர் தொகுதி பெயர் கை. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6829\"/>\n        <source>Relative Offset Range</source>\n        <translation>உறவினர் ஆஃப்செட் வரம்பு</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6832\"/>\n        <source>This device path node specifies a range of offsets relative to the first byte available on the device.</source>\n        <translation>இந்த சாதன பாதை முனை சாதனத்தில் கிடைக்கும் முதல் பைட்டுடன் தொடர்புடைய ஆஃப்செட்டுகளின் வரம்பைக் குறிப்பிடுகிறது.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6835\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path node specifies a range of offsets relative to the first byte available on the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; இந்த சாதன பாதை முனை சாதனத்தில் கிடைக்கும் முதல் பைட்டுடன் தொடர்புடைய ஆஃப்செட்டுகளின் வரம்பைக் குறிப்பிடுகிறது. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6880\"/>\n        <source>Reserved for future use.</source>\n        <translation>எதிர்கால பயன்பாட்டிற்காக ஒதுக்கப்பட்டுள்ளது.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6886\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved for future use.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; எதிர்கால பயன்பாட்டிற்கு ஒதுக்கப்பட்டுள்ளது. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6899\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6920\"/>\n        <source>Offset of the first byte, relative to the parent device node.</source>\n        <translation>பெற்றோர் சாதன முனையுடன் தொடர்புடைய முதல் பைட்டின் ஆஃப்செட்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6902\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6908\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6923\"/>\n        <source>Starting Offset</source>\n        <translation>ஆஃப்செட் தொடங்குகிறது</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6905\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the first byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; முதல் பைட்டின் ஆஃப்செட், பெற்றோர் சாதன முனையுடன் தொடர்புடையது. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6939\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6960\"/>\n        <source>Offset of the last byte, relative to the parent device node.</source>\n        <translation>பெற்றோர் சாதன முனையுடன் தொடர்புடைய கடைசி பைட்டின் ஆஃப்செட்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6942\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6963\"/>\n        <source>Ending Offset</source>\n        <translation>ஆஃப்செட் முடிவுக்கு வருகிறது</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6966\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the last byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; கடைசி பைட்டின் ஆஃப்செட், பெற்றோர் சாதன முனையுடன் தொடர்புடையது. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6983\"/>\n        <source>RAM Disk</source>\n        <translation>ராம் வட்டு</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6986\"/>\n        <source>RAM Disk Settings.</source>\n        <translation>ராம் வட்டு அமைப்புகள்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6989\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; ரேம் வட்டு அமைப்புகள். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7016\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7037\"/>\n        <source>Starting Address</source>\n        <translation>முகவரி தொடங்கும்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7056\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7077\"/>\n        <source>Ending Address</source>\n        <translation>முடிவு முகவரி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7093\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7114\"/>\n        <source>GUID that defines the type of the RAM Disk.</source>\n        <translation>ரேம் வட்டின் வகையை வரையறுக்கும் கை.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7120\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID that defines the type of the RAM Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; ரேம் வட்டின் வகையை வரையறுக்கும் கை. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7130\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7152\"/>\n        <source>RAM Disk instance number, if supported.</source>\n        <translation>ராம் வட்டு நிகழ்வு எண், ஆதரித்தால்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7133\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7155\"/>\n        <source>Disk Instance</source>\n        <translation>வட்டு நிகழ்வு</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7158\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk instance number, if supported.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; ராம் வட்டு நிகழ்வு எண், ஆதரிக்கப்பட்டால். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7179\"/>\n        <source>This Device Path is used to describe the booting of non-EFI-aware operating systems.</source>\n        <translation>EFI- விழிப்புணர்வு அல்லாத இயக்க முறைமைகளின் துவக்கத்தை விவரிக்க இந்த சாதன பாதை பயன்படுத்தப்படுகிறது.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7182\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path is used to describe the booting of non-EFI-aware operating systems.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; EFI- விழிப்புணர்வு அல்லாத இயக்க முறைமைகளின் துவக்கத்தை விவரிக்க இந்த சாதன பாதை பயன்படுத்தப்படுகிறது. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7206\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7249\"/>\n        <source>An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.</source>\n        <translation>இது எந்த வகையான சாதனம் என்பதை விவரிக்கும் அடையாள எண்:\n 0x00 - ஒதுக்கப்பட்டுள்ளது.\n 0x01 - நெகிழ்.\n 0x02 - வன் வட்டு.\n 0x03 - சிடி -ரோம்.\n 0x04 - PCMCIA.\n 0x05 - யூ.எச்.பி சாதனம்.\n 0x06 - உட்பொதிக்கப்பட்ட பிணையம்.\n 0x07..0x7f - ஒதுக்கப்பட்டுள்ளது.\n 0x80 - பெவ் சாதனம்.\n 0x81..0xfe - ஒதுக்கப்பட்டுள்ளது.\n 0xff - தெரியவில்லை.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7220\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7263\"/>\n        <source>Device Type</source>\n        <translation>சாதன வகை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7223\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; இது எந்த வகையான சாதனம் என்பதை விவரிக்கும் அடையாள எண்:\n 0x00 - ஒதுக்கப்பட்டுள்ளது.\n 0x01 - நெகிழ்.\n 0x02 - வன் வட்டு.\n 0x03 - சிடி -ரோம்.\n 0x04 - PCMCIA.\n 0x05 - யூ.எச்.பி சாதனம்.\n 0x06 - உட்பொதிக்கப்பட்ட பிணையம்.\n 0x07..0x7f - ஒதுக்கப்பட்டுள்ளது.\n 0x80 - பெவ் சாதனம்.\n 0x81..0xfe - ஒதுக்கப்பட்டுள்ளது.\n 0xff - தெரியவில்லை. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7290\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7347\"/>\n        <source>Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero</source>\n        <translation>பயாச் துவக்க விவரக்குறிப்பால் வரையறுக்கப்பட்ட நிலை கொடிகள்:\n | பிட்கள் | புலம் | மதிப்பு | விளக்கம்\n | ======= | =============== |\n | 3..0 | பழைய நிலை | 0..15 | கடைசி துவக்கத்தில் அட்டவணையில் இந்த நுழைவு குறியீடு. தனிப்பட்ட சாதன கண்டறிதல் முடிந்தால் ஐபிஎல் அல்லது பி.சி.வி முன்னுரிமையைப் புதுப்பிக்க.\n | -------- | -------------- | ------- | -------------\n | 7..4 | (ஒதுக்கப்பட்டுள்ளது) | 0 | எதிர்கால பயன்பாட்டிற்காக ஒதுக்கப்பட்டுள்ளது, பூச்சியமாக இருக்க வேண்டும்.\n | -------- | -------------- | ------- | -------------\n | 8 | இயக்கப்பட்டது | 0..1 | 0 = துவக்க (ஐபிஎல்) நுழைவு புறக்கணிக்கப்படும்; துவக்க இணைப்புக்கு (பி.சி.வி) நுழைவு அழைக்கப்படாது.\n | | | | 1 = நுழைவு துவக்க முயற்சிக்கும் (ஐபிஎல்); துவக்க இணைப்புக்கு (பி.சி.வி) நுழைவு அழைக்கப்படும்.\n | -------- | --------------- | ------- | -------------\n | 9 | தோல்வியுற்றது | 0..1 | 0 = துவக்க முயற்சிக்கப்படவில்லை, அல்லது துவக்க தோல்வி ஏற்பட்டதா என்பது தெரியவில்லை (ஐபிஎல்); நுழைவு வெற்றிகரமாக இணைக்கப்பட்டுள்ளது (பி.சி.வி).\n | | | | 1 = தோல்வியுற்ற துவக்க முயற்சி (ஐபிஎல்); தோல்வியுற்ற இணைப்பு முயற்சி (பி.சி.வி).\n | -------- | --------------- | ------- | -------------\n | 11..10 | மீடியா தற்போது | 0..3 | 0 = சாதனத்தில் துவக்கக்கூடிய மீடியா இல்லை.\n | | | | 1 = துவக்கக்கூடிய மீடியா இருந்தால் தெரியவில்லை.\n | | | | 2 = மீடியா தற்போது மற்றும் துவக்கக்கூடியதாக தோன்றுகிறது.\n | | | | 3 = எதிர்கால பயன்பாட்டிற்கு ஒதுக்கப்பட்டுள்ளது.\n | -------- | --------------- | ------- | -------------\n | 15..12 | (ஒதுக்கப்பட்டுள்ளது) | 0 | எதிர்கால பயன்பாட்டிற்காக ஒதுக்கப்பட்டுள்ளது, பூச்சியமாக இருக்க வேண்டும்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7311\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7368\"/>\n        <source>Status Flag</source>\n        <translation>நிலை கொடி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7371\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; பயாச் துவக்க விவரக்குறிப்பால் வரையறுக்கப்பட்டுள்ளபடி நிலை கொடிகள்:\n | பிட்கள் | புலம் | மதிப்பு | விளக்கம்\n | ======= | =============== |\n | 3..0 | பழைய நிலை | 0..15 | கடைசி துவக்கத்தில் அட்டவணையில் இந்த நுழைவு குறியீடு. தனிப்பட்ட சாதன கண்டறிதல் முடிந்தால் ஐபிஎல் அல்லது பி.சி.வி முன்னுரிமையைப் புதுப்பிக்க.\n | -------- | -------------- | ------- | -------------\n | 7..4 | (ஒதுக்கப்பட்டுள்ளது) | 0 | எதிர்கால பயன்பாட்டிற்காக ஒதுக்கப்பட்டுள்ளது, பூச்சியமாக இருக்க வேண்டும்.\n | -------- | -------------- | ------- | -------------\n | 8 | இயக்கப்பட்டது | 0..1 | 0 = துவக்க (ஐபிஎல்) நுழைவு புறக்கணிக்கப்படும்; துவக்க இணைப்புக்கு (பி.சி.வி) நுழைவு அழைக்கப்படாது.\n | | | | 1 = நுழைவு துவக்க முயற்சிக்கும் (ஐபிஎல்); துவக்க இணைப்புக்கு (பி.சி.வி) நுழைவு அழைக்கப்படும்.\n | -------- | --------------- | ------- | -------------\n | 9 | தோல்வியுற்றது | 0..1 | 0 = துவக்க முயற்சிக்கப்படவில்லை, அல்லது துவக்க தோல்வி ஏற்பட்டதா என்பது தெரியவில்லை (ஐபிஎல்); நுழைவு வெற்றிகரமாக இணைக்கப்பட்டுள்ளது (பி.சி.வி).\n | | | | 1 = தோல்வியுற்ற துவக்க முயற்சி (ஐபிஎல்); தோல்வியுற்ற இணைப்பு முயற்சி (பி.சி.வி).\n | -------- | --------------- | ------- | -------------\n | 11..10 | மீடியா தற்போது | 0..3 | 0 = சாதனத்தில் துவக்கக்கூடிய மீடியா இல்லை.\n | | | | 1 = துவக்கக்கூடிய மீடியா இருந்தால் தெரியவில்லை.\n | | | | 2 = மீடியா தற்போது மற்றும் துவக்கக்கூடியதாக தோன்றுகிறது.\n | | | | 3 = எதிர்கால பயன்பாட்டிற்கு ஒதுக்கப்பட்டுள்ளது.\n | -------- | --------------- | ------- | -------------\n | 15..12 | (ஒதுக்கப்பட்டுள்ளது) | 0 | எதிர்கால பயன்பாட்டிற்காக ஒதுக்கப்பட்டுள்ளது, பூச்சியமாக இருக்க வேண்டும் &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7402\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7424\"/>\n        <source>String that describes the boot device to a user.</source>\n        <translation>துவக்க சாதனத்தை ஒரு பயனருக்கு விவரிக்கும் சரம்.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7408\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7430\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;String that describes the boot device to a user.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; துவக்க சாதனத்தை ஒரு பயனருக்கு விவரிக்கும் சரம். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7543\"/>\n        <source>Vendor-assigned GUID that defines the data that follows.</source>\n        <translation>தொடர்ந்து வரும் தரவை வரையறுக்கும் விற்பனையாளர்-ஒதுக்கப்பட்ட கை.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7549\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-assigned GUID that defines the data that follows.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; விற்பனையாளர்-ஒதுக்கப்பட்ட GUID ஐத் தொடர்ந்து வரும் தரவை வரையறுக்கிறது. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7562\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7622\"/>\n        <source>Vendor-defined variable size data.</source>\n        <translation>விற்பனையாளர் வரையறுக்கப்பட்ட மாறி அளவு தரவு.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7568\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7628\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined variable size data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; விற்பனையாளர் வரையறுக்கப்பட்ட மாறி அளவு தரவு. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7642\"/>\n        <source>Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.</source>\n        <translation>துணை வகையைப் பொறுத்து, சாதன பாதை நிகழ்வு அல்லது சாதன பாதை கட்டமைப்பின் முடிவைக் குறிக்க இந்த சாதன பாதை முனை பயன்படுத்தப்படுகிறது.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7645\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt; &lt;body&gt; &lt;p&gt; துணை வகையைப் பொறுத்து, இந்தச் சாதன பாதை முனை சாதன பாதை நிகழ்வு அல்லது சாதன பாதை கட்டமைப்பின் முடிவைக் குறிக்கப் பயன்படுகிறது. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7721\"/>\n        <source>Unknown file path specifier settings</source>\n        <translation>அறியப்படாத கோப்பு பாதை விவரக்குறிப்பு அமைப்புகள்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7724\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown file path specifier settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; அறியப்படாத கோப்பு பாதை விவரக்குறிப்பு அமைப்புகள். &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7748\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7772\"/>\n        <source>Unknown Type</source>\n        <translation>தெரியாத வகை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7754\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7775\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; அறியப்படாத வகை. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7812\"/>\n        <source>Unknown Sub-Type</source>\n        <translation>தெரியாத துணை வகை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; அறியப்படாத துணை வகை. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7828\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7831\"/>\n        <source>Unknown data</source>\n        <translation>அறியப்படாத தரவு</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; அறியப்படாத தரவு. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/filepathdialog.cpp\" line=\"1569\"/>\n        <source>Couldn&apos;t change data format!</source>\n        <translation>தரவு வடிவமைப்பை மாற்ற முடியவில்லை!</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeyListModel</name>\n    <message>\n        <location filename=\"../src/hotkeylistmodel.cpp\" line=\"100\"/>\n        <source>boot option</source>\n        <translation>துவக்க விருப்பம்</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Boot option</source>\n        <translation>துவக்க விருப்பம்</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Hot key</source>\n        <translation>சூடான விசை</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Vendor data</source>\n        <translation>விற்பனையாளர் தரவு</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeysDialog</name>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"20\"/>\n        <source>Hot Keys editor</source>\n        <translation>ஆட் கீச் ஆசிரியர்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"41\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"44\"/>\n        <source>Hot Keys</source>\n        <translation>சூடான விசைகள்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"47\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; சூடான விசைகள் &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"125\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"128\"/>\n        <source>Index filter</source>\n        <translation>குறியீட்டு வடிகட்டி</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"131\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Index filter&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; குறியீட்டு வடிகட்டி &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"163\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"166\"/>\n        <source>Remove hot key</source>\n        <translation>சூடான விசையை அகற்று</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; சூடான விசையை அகற்று &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"191\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"194\"/>\n        <source>Add hot key</source>\n        <translation>சூடான விசையைச் சேர்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"197\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt; &lt;head/&gt; &lt;body&gt; &lt;p&gt; சூடான விசையைச் சேர்க்கவும் &lt;/p&gt; &lt;/body&gt; &lt;/html&gt;</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <location filename=\"../include/commands.h\" line=\"21\"/>\n        <location filename=\"../include/commands.h\" line=\"66\"/>\n        <source>Change %1 to &quot;%2&quot;</source>\n        <translation>%1 ஐ &quot; %2&quot; ஆக மாற்றவும்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"35\"/>\n        <source>Insert %1 entry &quot;%2&quot; at position %3</source>\n        <translation>%3 நிலையில் %1 நுழைவு &quot; %2&quot; ஐ செருகவும்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"50\"/>\n        <source>Remove %1 entry &quot;%2&quot; from position %3</source>\n        <translation>%3 நிலையில் இருந்து %1 நுழைவு &quot; %2&quot; ஐ அகற்று</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"73\"/>\n        <location filename=\"../src/commands.cpp\" line=\"116\"/>\n        <source>Move %1 entry &quot;%2&quot; from position %3 to %4</source>\n        <translation>%3 முதல் %4 வரை %1 நுழைவு &quot; %2&quot; ஐ நகர்த்தவும்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <location filename=\"../include/commands.h\" line=\"157\"/>\n        <location filename=\"../include/commands.h\" line=\"198\"/>\n        <source>Change %1 entry &quot;%2&quot; %3 to &quot;%4&quot;</source>\n        <translation>%1 நுழைவு &quot; %2&quot; %3 முதல் &quot; %4&quot; வரை மாற்றவும்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <source>Optional data</source>\n        <translation>விருப்ப தரவு</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"227\"/>\n        <source>Insert %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation>%1 நுழைவு &quot; %2&quot; கோப்பு பாதையை %3 இல் செருகவும்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"242\"/>\n        <source>Remove %1 entry &quot;%2&quot; file path from position %3</source>\n        <translation>நிலை %3 இலிருந்து %1 நுழைவு &quot; %2&quot; கோப்பு பாதையை அகற்று</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"257\"/>\n        <source>Set %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation>%1 நுழைவு &quot; %2&quot; கோப்பு பாதையை %3 நிலையில் அமைக்கவும்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <source>Insert %1 entry at position %2</source>\n        <translation>%1 நுழைவை %2 இல் செருகவும்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>Key</source>\n        <translation>விசை</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <source>Remove %1 entry from position %2</source>\n        <translation>நிலை %2 இலிருந்து %1 நுழைவை அகற்று</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <location filename=\"../include/commands.h\" line=\"362\"/>\n        <location filename=\"../include/commands.h\" line=\"403\"/>\n        <source>Change %1 entry at position %2 %3 to &quot;%4&quot;</source>\n        <translation>%1 நுழைவை %2 %3 முதல் &quot; %4&quot; வரை மாற்றவும்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>keys</source>\n        <translation>விசைகள்</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"293\"/>\n        <location filename=\"../src/commands.cpp\" line=\"333\"/>\n        <source>Move %1 entry &quot;%2&quot; file path from position %3 to %4</source>\n        <translation>%1 நுழைவு &quot; %2&quot; கோப்பு பாதையை நிலை %3 முதல் %4 வரை நகர்த்தவும்</translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/efibooteditor_tr.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"tr\" sourcelanguage=\"en_US\">\n<context>\n    <name>BootEntryForm</name>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"169\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"172\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"182\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"185\"/>\n        <source>Description</source>\n        <translation>Tanım</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"198\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"201\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"204\"/>\n        <source>Path</source>\n        <translation>Yol</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"415\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"418\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"478\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"481\"/>\n        <source>Optional data</source>\n        <translation>İsteğe bağlı veri</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"421\"/>\n        <source>Optional</source>\n        <translation>İsteğe bağlı</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"434\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"437\"/>\n        <source>Optional data format</source>\n        <translation>İsteğe bağlı veri biçimi</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"6\"/>\n        <source>Boot entry form</source>\n        <translation>Önyükleme girdi formu</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"24\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"27\"/>\n        <source>Error</source>\n        <translation>Hata</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"40\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"43\"/>\n        <source>Error note</source>\n        <translation>Hata notu</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"46\"/>\n        <source>This entry placeholder is shown here to indicate it&apos;s referenced in boot order. It won&apos;t be modified on save, just left as is.</source>\n        <translation>Bu giriş yer tutucusu, önyükleme sırasında başvurulduğunu göstermek için burada gösterilmiştir. Kaydetme sırasında değiştirilmeyecek, olduğu gibi bırakılacaktır.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"147\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"150\"/>\n        <source>Hot Keys</source>\n        <translation>Kısayol Tuşları</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"188\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry description.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Girdi tanımı.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"222\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"225\"/>\n        <source>Device path</source>\n        <translation>Aygıt yolu</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Aygıt yolu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"280\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"283\"/>\n        <source>Move file path up</source>\n        <translation>Dosya yolunu yukarı taşı</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"286\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"305\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"308\"/>\n        <source>Move file path down</source>\n        <translation>Dosya yolunu aşağı taşı</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"311\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"330\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"333\"/>\n        <source>Remove file path</source>\n        <translation>Dosya yolunu sil</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"336\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dosya yolunu sil.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"355\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"358\"/>\n        <source>Edit file path</source>\n        <translation>Dosya yolunu düzenle</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"361\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Edit file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dosya yolunu düzenle.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"380\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"383\"/>\n        <source>Add file path</source>\n        <translation>Dosya yolu ekle</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dosya yolu ekle.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"444\"/>\n        <source>BASE64</source>\n        <translation>BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"449\"/>\n        <source>UTF-16</source>\n        <translation>UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"454\"/>\n        <source>UTF-8</source>\n        <translation>UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"459\"/>\n        <source>HEX</source>\n        <translation>HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"484\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry optional data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry optional data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"497\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"500\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"503\"/>\n        <source>Attributes</source>\n        <translation>Nitelikler</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"623\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry category.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry category.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"122\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"540\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Is entry considered for automatic boot?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Is entry considered for automatic boot?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"569\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hidden.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hidden.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"585\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Force reconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Force reconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"534\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"537\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"543\"/>\n        <source>Active</source>\n        <translation>Aktif</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"579\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"582\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"588\"/>\n        <source>Force reconnect</source>\n        <translation>Yeniden bağlanmaya zorla</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"563\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"566\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"572\"/>\n        <source>Hidden</source>\n        <translation>Gizli</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"598\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"601\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"604\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"617\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"620\"/>\n        <source>Category</source>\n        <translation>Kategori</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"627\"/>\n        <source>Boot</source>\n        <translation>Ön Yükleme</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"632\"/>\n        <source>App</source>\n        <translation>Uygulama</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"68\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"71\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"74\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"116\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"119\"/>\n        <source>Index</source>\n        <translation>Dizin</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentryform.cpp\" line=\"117\"/>\n        <source>Couldn&apos;t change optional data format!</source>\n        <translation>İsteğe bağlı veri formatı değiştirilemedi!</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryListModel</name>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"88\"/>\n        <source>Set Next boot to &quot;%1&quot;</source>\n        <translation>Sonraki önyüklemeyi “%1” olarak ayarla</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"184\"/>\n        <source>index</source>\n        <translation>Dizin</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"200\"/>\n        <source>description</source>\n        <translation>açıklama</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"237\"/>\n        <source>optional data</source>\n        <translation>isteğe bağlı veriler</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"253\"/>\n        <source>attributes</source>\n        <translation>nitelikler</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"269\"/>\n        <source>next boot</source>\n        <translation>sonraki önyükleme</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryWidget</name>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"12\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"221\"/>\n        <source>Boot entry</source>\n        <translation>Önyükleme girişi</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"36\"/>\n        <source>Next boot</source>\n        <translation>Sonraki önyükleme</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"39\"/>\n        <source>Run at next boot</source>\n        <translation>Sonraki önyüklemede çalıştır</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"42\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;When chosen, entry will run at next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Seçildiğinde, giriş bir sonraki açılışta çalışacaktır.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"140\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"143\"/>\n        <source>Current boot</source>\n        <translation>Güncel önyükleme</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This entry is currently booted.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Bu giriş şu anda önyüklenmiştir.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"181\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Önyükleme giriş dizini.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"218\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry description, human readable name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Önyükleme girişi açıklaması, insan tarafından okunabilir ad.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"67\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"70\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"76\"/>\n        <source>Device path</source>\n        <translation>Cihaz yolu</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"73\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Önyükleme aygıtı yolu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"113\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data, arguments passed to boot executable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;İsteğe bağlı veriler, önyükleme yürütülebilir dosyasına aktarılan argümanlar.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"178\"/>\n        <source>Boot entry index</source>\n        <translation>Önyükleme giriş dizini</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"184\"/>\n        <source>Index</source>\n        <translation>Dizin</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"212\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"215\"/>\n        <source>Boot entry description</source>\n        <translation>Önyükleme girişi açıklaması</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"107\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"110\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"116\"/>\n        <source>Optional data</source>\n        <translation>İsteğe bağlı veriler</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootData</name>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"111\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"813\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1027\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1361\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1472\"/>\n        <source>%1: not found</source>\n        <translation>%1: bulunamadı</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"120\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"821\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1387\"/>\n        <source>%1: failed deserialization</source>\n        <translation>%1: serileştirme başarısız oldu</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Error loading entries</source>\n        <translation>Girişler yüklenirken hata oluştu</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Failed to load some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>Bazı EFI Önyükleme Yöneticisi girdileri yüklenemedi:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Error saving entries</source>\n        <translation type=\"unfinished\">Error saving entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Entry %1(%2): duplicated index!</source>\n        <translation type=\"unfinished\">Entry %1(%2): duplicated index!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"389\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"419\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"458\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"479\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"487\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"516\"/>\n        <source>Error saving %1</source>\n        <translation type=\"unfinished\">Error saving %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"407\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"470\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"504\"/>\n        <source>Error removing %1</source>\n        <translation type=\"unfinished\">Error removing %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Error importing boot configuration</source>\n        <translation type=\"unfinished\">Error importing boot configuration</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <source>Couldn&apos;t open selected file (%1).</source>\n        <translation type=\"unfinished\">Couldn&apos;t open selected file (%1).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <source>Parser failed: %1</source>\n        <translation type=\"unfinished\">Parser failed: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <source>Invalid _Type: %1</source>\n        <translation type=\"unfinished\">Invalid _Type: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <source>Error exporting boot configuration</source>\n        <translation type=\"unfinished\">Error exporting boot configuration</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <source>Couldn&apos;t open selected file (%1): %2.</source>\n        <translation type=\"unfinished\">Couldn&apos;t open selected file (%1): %2.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <source>Couldn&apos;t write into file (%1): %2.</source>\n        <translation type=\"unfinished\">Couldn&apos;t write into file (%1): %2.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Error dumping raw EFI data</source>\n        <translation type=\"unfinished\">Error dumping raw EFI data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Failed to dump some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation type=\"unfinished\">Failed to dump some EFI Boot Manager entries:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"905\"/>\n        <source>Timeout</source>\n        <translation type=\"unfinished\">Timeout</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"921\"/>\n        <source>Apple boot-args</source>\n        <translation type=\"unfinished\">Apple boot-args</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"937\"/>\n        <source>Firmware actions</source>\n        <translation type=\"unfinished\">Firmware actions</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"73\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Loading EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"89\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"787\"/>\n        <source>Searching EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Searching EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"116\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"292\"/>\n        <source>Processing EFI Boot Manager entries (%1)…</source>\n        <translation type=\"unfinished\">Processing EFI Boot Manager entries (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"308\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Saving EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"333\"/>\n        <source>Searching old EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Searching old EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"374\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"416\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"447\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"476\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"484\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"491\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"513\"/>\n        <source>Saving EFI Boot Manager entries (%1)…</source>\n        <translation type=\"unfinished\">Saving EFI Boot Manager entries (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"467\"/>\n        <source>Removing old EFI Boot Manager entries (%1)…</source>\n        <translation type=\"unfinished\">Removing old EFI Boot Manager entries (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"404\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"501\"/>\n        <source>Removing EFI Boot Manager entries (%1)…</source>\n        <translation type=\"unfinished\">Removing EFI Boot Manager entries (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"94\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"338\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"792\"/>\n        <source>Couldn&apos;t load EFI Boot Manager variables</source>\n        <translation type=\"unfinished\">Couldn&apos;t load EFI Boot Manager variables</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"100\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"799\"/>\n        <source>Couldn&apos;t find any EFI Boot Manager variables</source>\n        <translation type=\"unfinished\">Couldn&apos;t find any EFI Boot Manager variables</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"529\"/>\n        <source>Importing boot configuration…</source>\n        <translation type=\"unfinished\">Importing boot configuration…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"565\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"770\"/>\n        <source>Exporting boot configuration…</source>\n        <translation type=\"unfinished\">Exporting boot configuration…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"587\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"809\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"875\"/>\n        <source>Exporting EFI Boot Manager entries (%1)…</source>\n        <translation type=\"unfinished\">Exporting EFI Boot Manager entries (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1013\"/>\n        <source>Importing boot configuration from JSON…</source>\n        <translation type=\"unfinished\">Importing boot configuration from JSON…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1032\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1366\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1477\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1531\"/>\n        <source>Importing EFI Boot Manager entries (%1)…</source>\n        <translation type=\"unfinished\">Importing EFI Boot Manager entries (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1035\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1376\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>%1: %2 expected</source>\n        <translation type=\"unfinished\">%1: %2 expected</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1043\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1048\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1053\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <source>number</source>\n        <translation type=\"unfinished\">number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1058\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1063\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1068\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1073\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1078\"/>\n        <source>bool</source>\n        <translation type=\"unfinished\">bool</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1109\"/>\n        <source>%1: unknown boot manager capability</source>\n        <translation type=\"unfinished\">%1: unknown boot manager capability</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1122\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1166\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1212\"/>\n        <source>array</source>\n        <translation type=\"unfinished\">array</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1333\"/>\n        <source>string</source>\n        <translation type=\"unfinished\">string</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1156\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1192\"/>\n        <source>%1: unknown os indication</source>\n        <translation type=\"unfinished\">%1: unknown os indication</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1083\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1235\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1264\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1290\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1309\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1328\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>object</source>\n        <translation type=\"unfinished\">object</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <source>hexadecimal number</source>\n        <translation type=\"unfinished\">hexadecimal number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1270\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1315\"/>\n        <source>%1: failed parsing</source>\n        <translation type=\"unfinished\">%1: failed parsing</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Failed to import some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation type=\"unfinished\">Failed to import some EFI Boot Manager entries:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1347\"/>\n        <source>Importing boot configuration from raw dump…</source>\n        <translation type=\"unfinished\">Importing boot configuration from raw dump…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1379\"/>\n        <source>object(raw_data: string, efi_attributes: number)</source>\n        <extracomment>Expected JSON structure, thrown as error description. raw_data and efi_attributes are field names in JSON file</extracomment>\n        <translation type=\"unfinished\">object(raw_data: string, efi_attributes: number)</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"15\"/>\n        <source>Boot</source>\n        <translation type=\"unfinished\">Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"16\"/>\n        <source>Driver</source>\n        <translation type=\"unfinished\">Driver</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"17\"/>\n        <source>System Preparation</source>\n        <translation type=\"unfinished\">System Preparation</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"18\"/>\n        <source>Platform Recovery</source>\n        <translation type=\"unfinished\">Platform Recovery</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditor</name>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"18\"/>\n        <source>EFI Boot Editor</source>\n        <translation type=\"unfinished\">EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"71\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"412\"/>\n        <source>Boot</source>\n        <translation type=\"unfinished\">Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"74\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"98\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"101\"/>\n        <source>Boot entries</source>\n        <translation type=\"unfinished\">Boot entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"77\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"104\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Boot entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Boot entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"133\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"415\"/>\n        <source>Driver</source>\n        <translation type=\"unfinished\">Driver</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"136\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"160\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"163\"/>\n        <source>Driver entries</source>\n        <translation type=\"unfinished\">Driver entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"139\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"166\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Driver entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Driver entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"195\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"418\"/>\n        <source>System Preparation</source>\n        <translation type=\"unfinished\">System Preparation</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"198\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"222\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"225\"/>\n        <source>SysPrep entries</source>\n        <translation type=\"unfinished\">SysPrep entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"201\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of SysPrep entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of SysPrep entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"257\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"421\"/>\n        <source>Platform Recovery</source>\n        <translation type=\"unfinished\">Platform Recovery</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"260\"/>\n        <source>PlatformRecovery entries</source>\n        <translation type=\"unfinished\">PlatformRecovery entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"263\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of PlatformRecovery entries (READONLY).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of PlatformRecovery entries (READONLY).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"284\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"287\"/>\n        <source>PlatformRecovery entries (READONLY)</source>\n        <translation type=\"unfinished\">PlatformRecovery entries (READONLY)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"346\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"349\"/>\n        <source>Add new entry</source>\n        <translation type=\"unfinished\">Add new entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"352\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to add new boot entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to add new boot entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"377\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"380\"/>\n        <source>Duplicate entry</source>\n        <translation type=\"unfinished\">Duplicate entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"383\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Duplicate entry&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Duplicate entry&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"408\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"411\"/>\n        <source>Remove entry</source>\n        <translation type=\"unfinished\">Remove entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"414\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to remove currently selected entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to remove currently selected entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"439\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"442\"/>\n        <source>Move entry up</source>\n        <translation type=\"unfinished\">Move entry up</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"445\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"470\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"473\"/>\n        <source>Move entry down</source>\n        <translation type=\"unfinished\">Move entry down</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"476\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"501\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"504\"/>\n        <source>Reorder entries</source>\n        <translation type=\"unfinished\">Reorder entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"507\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click here to adjust the order of all entries based on their position on the list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click here to adjust the order of all entries based on their position on the list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"599\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"608\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Global settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Global settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"602\"/>\n        <source>Global</source>\n        <translation type=\"unfinished\">Global</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"632\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"635\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"654\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"657\"/>\n        <source>Boot manager timeout</source>\n        <translation type=\"unfinished\">Boot manager timeout</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"638\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"660\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot manager timeout.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot manager timeout.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"663\"/>\n        <source>s</source>\n        <translation type=\"unfinished\">s</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"674\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"677\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"686\"/>\n        <source>Firmware details</source>\n        <translation type=\"unfinished\">Firmware details</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"680\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"689\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"683\"/>\n        <source>Firmware</source>\n        <translation type=\"unfinished\">Firmware</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"719\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"722\"/>\n        <source>Available firmware features</source>\n        <translation type=\"unfinished\">Available firmware features</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"725\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware features.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware features.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"728\"/>\n        <source>Features</source>\n        <translation type=\"unfinished\">Features</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"737\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"740\"/>\n        <source>Platform supports reporting of deferred capsule processing by creation of result variable</source>\n        <translation type=\"unfinished\">Platform supports reporting of deferred capsule processing by creation of result variable</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"743\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports reporting of deferred capsule processing by creation of result variable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports reporting of deferred capsule processing by creation of result variable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"746\"/>\n        <source>Capsule Reporting</source>\n        <translation type=\"unfinished\">Capsule Reporting</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"756\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"759\"/>\n        <source>Firmware supports timestamp based revocation</source>\n        <translation type=\"unfinished\">Firmware supports timestamp based revocation</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"762\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware supports timestamp based revocation.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware supports timestamp based revocation.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"765\"/>\n        <source>Timestamp based revocation</source>\n        <translation type=\"unfinished\">Timestamp based revocation</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"775\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"778\"/>\n        <source>Platform supports processing of Firmware Management Protocol update capsule</source>\n        <translation type=\"unfinished\">Platform supports processing of Firmware Management Protocol update capsule</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"781\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of Firmware Management Protocol update capsule.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of Firmware Management Protocol update capsule.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"784\"/>\n        <source>FMP Capsule</source>\n        <translation type=\"unfinished\">FMP Capsule</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"794\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"797\"/>\n        <source>Platform supports processing of file capsules</source>\n        <translation type=\"unfinished\">Platform supports processing of file capsules</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"800\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of file capsules.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of file capsules.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"803\"/>\n        <source>File Capsule</source>\n        <translation type=\"unfinished\">File Capsule</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"828\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"831\"/>\n        <source>Available firmware actions</source>\n        <translation type=\"unfinished\">Available firmware actions</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware actions.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware actions.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"837\"/>\n        <source>Actions</source>\n        <translation type=\"unfinished\">Actions</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"846\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"849\"/>\n        <source>Stop at a firmware user interface on the next boot</source>\n        <translation type=\"unfinished\">Stop at a firmware user interface on the next boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Stop at a firmware user interface on the next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Stop at a firmware user interface on the next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"855\"/>\n        <source>Boot to firmware UI</source>\n        <translation type=\"unfinished\">Boot to firmware UI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"862\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"865\"/>\n        <source>Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot</source>\n        <translation type=\"unfinished\">Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"871\"/>\n        <source>Collect current config</source>\n        <translation type=\"unfinished\">Collect current config</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"878\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"881\"/>\n        <source>Indicate that Platform-defined recovery should commence upon reboot</source>\n        <translation type=\"unfinished\">Indicate that Platform-defined recovery should commence upon reboot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"884\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that Platform-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that Platform-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"887\"/>\n        <source>Start Platform recovery</source>\n        <translation type=\"unfinished\">Start Platform recovery</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"894\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"897\"/>\n        <source>Indicate that OS-defined recovery should commence upon reboot</source>\n        <translation type=\"unfinished\">Indicate that OS-defined recovery should commence upon reboot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"900\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that OS-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that OS-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"903\"/>\n        <source>Start OS recovery</source>\n        <translation type=\"unfinished\">Start OS recovery</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"932\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"935\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"944\"/>\n        <source>Secure boot settings</source>\n        <translation type=\"unfinished\">Secure boot settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"938\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"947\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Secure boot settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Secure boot settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"941\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1025\"/>\n        <source>Secure Boot</source>\n        <translation type=\"unfinished\">Secure Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"978\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"981\"/>\n        <source>Defines whether the system is currently operating in Audit Mode</source>\n        <translation type=\"unfinished\">Defines whether the system is currently operating in Audit Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"984\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Audit Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Audit Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"987\"/>\n        <source>Audit Mode</source>\n        <translation type=\"unfinished\">Audit Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"997\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1000\"/>\n        <source>Defines whether the system is currently operating in Deployed Mode</source>\n        <translation type=\"unfinished\">Defines whether the system is currently operating in Deployed Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1003\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Deployed Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Deployed Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1006\"/>\n        <source>Deployed Mode</source>\n        <translation type=\"unfinished\">Deployed Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1016\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1019\"/>\n        <source>Defines whether the platform firmware is operating with Secure Boot enabled</source>\n        <translation type=\"unfinished\">Defines whether the platform firmware is operating with Secure Boot enabled</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1022\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the platform firmware is operating with Secure Boot enabled.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the platform firmware is operating with Secure Boot enabled.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1035\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1038\"/>\n        <source>Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables</source>\n        <translation type=\"unfinished\">Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1041\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1044\"/>\n        <source>Setup Mode</source>\n        <translation type=\"unfinished\">Setup Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1054\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1057\"/>\n        <source>Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys</source>\n        <translation type=\"unfinished\">Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1063\"/>\n        <source>Vendor Keys</source>\n        <translation type=\"unfinished\">Vendor Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1074\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1077\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1086\"/>\n        <source>Apple settings</source>\n        <translation type=\"unfinished\">Apple settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1080\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apple settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apple settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1083\"/>\n        <source>Apple</source>\n        <translation type=\"unfinished\">Apple</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1113\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1116\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1129\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1132\"/>\n        <source>macOS boot arguments</source>\n        <translation type=\"unfinished\">macOS boot arguments</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1119\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;macOS boot arguments.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;macOS boot arguments.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1161\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1164\"/>\n        <source>Undo stack</source>\n        <translation type=\"unfinished\">Undo stack</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1167\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo stack&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo stack&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1194\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1214\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Help menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Help menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1255\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Exit the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Exit the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1272\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apply changes to the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apply changes to the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1289\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reloads EFI data from the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reloads EFI data from the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1306\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Show information about the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Show information about the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1320\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Export current entries into JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Export current entries into JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1337\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Import EFI data from JSON dump.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Import EFI data from JSON dump.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1354\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dumps raw EFI data for debugging purposes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dumps raw EFI data for debugging purposes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1362\"/>\n        <source>&amp;Undo</source>\n        <translation type=\"unfinished\">&amp;Undo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1365\"/>\n        <source>Undo</source>\n        <translation type=\"unfinished\">Undo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1368\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1371\"/>\n        <source>Ctrl+Z</source>\n        <translation type=\"unfinished\">Ctrl+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1379\"/>\n        <source>&amp;Redo</source>\n        <translation type=\"unfinished\">&amp;Redo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1382\"/>\n        <source>Redo</source>\n        <translation type=\"unfinished\">Redo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1385\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Redo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Redo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1388\"/>\n        <source>Ctrl+Shift+Z</source>\n        <translation type=\"unfinished\">Ctrl+Shift+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1396\"/>\n        <source>Hot &amp;keys</source>\n        <translation type=\"unfinished\">Hot &amp;keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1399\"/>\n        <source>Hot Keys</source>\n        <translation type=\"unfinished\">Hot Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1402\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"593\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"596\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"605\"/>\n        <source>Global settings</source>\n        <translation type=\"unfinished\">Global settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"641\"/>\n        <source>Timeout</source>\n        <translation type=\"unfinished\">Timeout</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1122\"/>\n        <source>Boot args</source>\n        <translation type=\"unfinished\">Boot args</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1188\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1191\"/>\n        <source>File</source>\n        <translation type=\"unfinished\">File</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1197\"/>\n        <source>&amp;File</source>\n        <translation type=\"unfinished\">&amp;File</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1208\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1211\"/>\n        <source>Help</source>\n        <translation type=\"unfinished\">Help</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1217\"/>\n        <source>&amp;Help</source>\n        <translation type=\"unfinished\">&amp;Help</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1225\"/>\n        <source>&amp;Edit</source>\n        <translation type=\"unfinished\">&amp;Edit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1249\"/>\n        <source>&amp;Quit</source>\n        <translation type=\"unfinished\">&amp;Quit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1252\"/>\n        <source>Quit</source>\n        <translation type=\"unfinished\">Quit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1258\"/>\n        <source>Ctrl+Q</source>\n        <translation type=\"unfinished\">Ctrl+Q</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1266\"/>\n        <source>&amp;Save</source>\n        <translation type=\"unfinished\">&amp;Save</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1269\"/>\n        <source>Save</source>\n        <translation type=\"unfinished\">Save</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1275\"/>\n        <source>Ctrl+S</source>\n        <translation type=\"unfinished\">Ctrl+S</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1283\"/>\n        <source>&amp;Reload</source>\n        <translation type=\"unfinished\">&amp;Reload</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1286\"/>\n        <source>Reload</source>\n        <translation type=\"unfinished\">Reload</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1292\"/>\n        <source>Ctrl+R</source>\n        <translation type=\"unfinished\">Ctrl+R</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1300\"/>\n        <source>About &amp;EFI Boot Editor</source>\n        <translation type=\"unfinished\">About &amp;EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1303\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"29\"/>\n        <source>About EFI Boot Editor</source>\n        <translation type=\"unfinished\">About EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1314\"/>\n        <source>&amp;Export</source>\n        <translation type=\"unfinished\">&amp;Export</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1317\"/>\n        <source>Export</source>\n        <translation type=\"unfinished\">Export</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1323\"/>\n        <source>Ctrl+E</source>\n        <translation type=\"unfinished\">Ctrl+E</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1331\"/>\n        <source>&amp;Import</source>\n        <translation type=\"unfinished\">&amp;Import</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1334\"/>\n        <source>Import</source>\n        <translation type=\"unfinished\">Import</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1340\"/>\n        <source>Ctrl+I</source>\n        <translation type=\"unfinished\">Ctrl+I</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1348\"/>\n        <source>&amp;Dump raw EFI data</source>\n        <translation type=\"unfinished\">&amp;Dump raw EFI data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1351\"/>\n        <source>Dump raw EFI data</source>\n        <translation type=\"unfinished\">Dump raw EFI data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"26\"/>\n        <source>Working…</source>\n        <translation type=\"unfinished\">Working…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"92\"/>\n        <source>Undo %1</source>\n        <translation type=\"unfinished\">Undo %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"95\"/>\n        <source>Redo %1</source>\n        <translation type=\"unfinished\">Redo %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"137\"/>\n        <source>Are you sure you want to reload the entries?&lt;br/&gt;ALL of your changes will be lost!</source>\n        <translation type=\"unfinished\">Are you sure you want to reload the entries?&lt;br/&gt;ALL of your changes will be lost!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"162\"/>\n        <source>Are you sure you want to reorder the boot entries?&lt;br/&gt;All indexes will be overwritten!</source>\n        <translation type=\"unfinished\">Are you sure you want to reorder the boot entries?&lt;br/&gt;All indexes will be overwritten!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"221\"/>\n        <source>Are you sure you want to save?&lt;br/&gt;Your EFI configuration will be overwritten!</source>\n        <translation type=\"unfinished\">Are you sure you want to save?&lt;br/&gt;Your EFI configuration will be overwritten!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <source>Open boot configuration dump</source>\n        <translation type=\"unfinished\">Open boot configuration dump</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>JSON documents (*.json)</source>\n        <translation type=\"unfinished\">JSON documents (*.json)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <source>Save boot configuration dump</source>\n        <translation type=\"unfinished\">Save boot configuration dump</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>Save raw EFI dump</source>\n        <translation type=\"unfinished\">Save raw EFI dump</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"31\"/>\n        <source>&lt;h1&gt;EFI Boot Editor&lt;/h1&gt;&lt;p&gt;Version &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Boot Editor for (U)EFI based systems.&lt;/p&gt;</source>\n        <extracomment>About dialog</extracomment>\n        <translation type=\"unfinished\">&lt;h1&gt;EFI Boot Editor&lt;/h1&gt;&lt;p&gt;Version &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Boot Editor for (U)EFI based systems.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"45\"/>\n        <source>&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;Website&lt;/a&gt;&lt;/p&gt;&lt;p&gt;The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.&lt;/p&gt;&lt;p&gt;License: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL Version 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;On Linux uses &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; for EFI variables access.&lt;/p&gt;&lt;p&gt;Uses Tango Icons as fallback icons.&lt;/p&gt;</source>\n        <extracomment>About dialog details</extracomment>\n        <translation type=\"unfinished\">&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;Website&lt;/a&gt;&lt;/p&gt;&lt;p&gt;The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.&lt;/p&gt;&lt;p&gt;License: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL Version 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;On Linux uses &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; for EFI variables access.&lt;/p&gt;&lt;p&gt;Uses Tango Icons as fallback icons.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"330\"/>\n        <source>Reorder %1 entries</source>\n        <translation type=\"unfinished\">Reorder %1 entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"453\"/>\n        <source>Are you sure you want to quit?</source>\n        <translation type=\"unfinished\">Are you sure you want to quit?</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"123\"/>\n        <source>EFI support required</source>\n        <translation type=\"unfinished\">EFI support required</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditorCLI</name>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"13\"/>\n        <source>Boot Editor for (U)EFI based systems.</source>\n        <translation type=\"unfinished\">Boot Editor for (U)EFI based systems.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <source>Export configuration.</source>\n        <translation type=\"unfinished\">Export configuration.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>FILE</source>\n        <translation type=\"unfinished\">FILE</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <source>Dump raw EFI data.</source>\n        <translation type=\"unfinished\">Dump raw EFI data.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>Import configuration from JSON (either from export or raw dump).</source>\n        <translation type=\"unfinished\">Import configuration from JSON (either from export or raw dump).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"19\"/>\n        <source>Force import, don&apos;t ask for confirmation.</source>\n        <translation type=\"unfinished\">Force import, don&apos;t ask for confirmation.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"26\"/>\n        <source>EFI support required</source>\n        <translation type=\"unfinished\">EFI support required</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"45\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Loading EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"47\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"57\"/>\n        <source>Exporting boot configuration…</source>\n        <translation type=\"unfinished\">Exporting boot configuration…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"67\"/>\n        <source>Importing boot configuration…</source>\n        <translation type=\"unfinished\">Importing boot configuration…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Loaded %0 %1 entries</source>\n        <translation type=\"unfinished\">Loaded %0 %1 entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <source>Boot</source>\n        <translation type=\"unfinished\">Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <source>Driver</source>\n        <translation type=\"unfinished\">Driver</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <source>System Preparation</source>\n        <translation type=\"unfinished\">System Preparation</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Hot Key</source>\n        <translation type=\"unfinished\">Hot Key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"78\"/>\n        <source>Are you sure you want to save?\nYour EFI configuration will be overwritten!</source>\n        <translation type=\"unfinished\">Are you sure you want to save?\nYour EFI configuration will be overwritten!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"86\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Saving EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"98\"/>\n        <source>ERROR: %0! %1</source>\n        <translation type=\"unfinished\">ERROR: %0! %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"114\"/>\n        <source>Finished</source>\n        <translation type=\"unfinished\">Finished</translation>\n    </message>\n</context>\n<context>\n    <name>EFIKeySequenceEdit</name>\n    <message>\n        <location filename=\"../src/efikeysequenceedit.cpp\" line=\"109\"/>\n        <source>Press hot key</source>\n        <translation type=\"unfinished\">Press hot key</translation>\n    </message>\n</context>\n<context>\n    <name>FilePathDialog</name>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"12\"/>\n        <source>File path editor</source>\n        <translation type=\"unfinished\">File path editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"47\"/>\n        <source>PCI</source>\n        <translation type=\"unfinished\">PCI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"80\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"86\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"196\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"202\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"218\"/>\n        <source>Function</source>\n        <translation type=\"unfinished\">Function</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"121\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"127\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"143\"/>\n        <source>Device</source>\n        <translation type=\"unfinished\">Device</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"721\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"727\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"742\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"835\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"841\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"856\"/>\n        <source>HID</source>\n        <translation type=\"unfinished\">HID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"761\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"767\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"782\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"896\"/>\n        <source>UID</source>\n        <translation type=\"unfinished\">UID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1813\"/>\n        <source>USB</source>\n        <translation type=\"unfinished\">USB</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1819\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1893\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1909\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3688\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3710\"/>\n        <source>Interface</source>\n        <translation type=\"unfinished\">Interface</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7442\"/>\n        <source>Vendor</source>\n        <translation type=\"unfinished\">Vendor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7445\"/>\n        <source>Vendor settings</source>\n        <translation type=\"unfinished\">Vendor settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7448\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1778\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1793\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5824\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6348\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7117\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7546\"/>\n        <source>GUID</source>\n        <translation type=\"unfinished\">GUID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5539\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7587\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7850\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7853\"/>\n        <source>Data format</source>\n        <translation type=\"unfinished\">Data format</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5542\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7590\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7856\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5546\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5869\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7860\"/>\n        <source>BASE64</source>\n        <translation type=\"unfinished\">BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1168\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5551\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5874\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7865\"/>\n        <source>UTF-16</source>\n        <translation type=\"unfinished\">UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1173\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5556\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7604\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7870\"/>\n        <source>UTF-8</source>\n        <translation type=\"unfinished\">UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5561\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7875\"/>\n        <source>HEX</source>\n        <translation type=\"unfinished\">HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5523\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5901\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7888\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7891\"/>\n        <source>Data</source>\n        <translation type=\"unfinished\">Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7894\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7565\"/>\n        <source>Vendor data</source>\n        <translation type=\"unfinished\">Vendor data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7481\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7757\"/>\n        <source>Type</source>\n        <translation type=\"unfinished\">Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7478\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7500\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7504\"/>\n        <source>HW</source>\n        <translation type=\"unfinished\">HW</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7509\"/>\n        <source>MSG</source>\n        <translation type=\"unfinished\">MSG</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7514\"/>\n        <source>MEDIA</source>\n        <translation type=\"unfinished\">MEDIA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2292\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2298\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2313\"/>\n        <source>MAC</source>\n        <translation type=\"unfinished\">MAC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2265\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;MAC settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;MAC settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2374\"/>\n        <source>IPv4</source>\n        <translation type=\"unfinished\">IPv4</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2380\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv4 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv4 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2569\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2591\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2925\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2931\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2947\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4110\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4116\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4132\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6616\"/>\n        <source>Protocol</source>\n        <translation type=\"unfinished\">Protocol</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3003\"/>\n        <source>Static</source>\n        <translation type=\"unfinished\">Static</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2692\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Subnet mask.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Subnet mask.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2730\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5479\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5486\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5503\"/>\n        <source>IPv6</source>\n        <translation type=\"unfinished\">IPv6</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2736\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv6 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv6 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3008\"/>\n        <source>Stateless auto-configuration</source>\n        <translation type=\"unfinished\">Stateless auto-configuration</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3013\"/>\n        <source>Stateful auto-configuration</source>\n        <translation type=\"unfinished\">Stateful auto-configuration</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3920\"/>\n        <source>SATA</source>\n        <translation type=\"unfinished\">SATA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SATA settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SATA settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1387\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1393\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1409\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1658\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1664\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1679\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3900\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4035\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4041\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4057\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4191\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4197\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4212\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4496\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4502\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4610\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4616\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4988\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5009\"/>\n        <source>LUN</source>\n        <translation type=\"unfinished\">LUN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4885\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4901\"/>\n        <source>URI</source>\n        <translation type=\"unfinished\">URI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6105\"/>\n        <source>Disk</source>\n        <translation type=\"unfinished\">Disk</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6102\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6123\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6126\"/>\n        <source>Choose disk</source>\n        <translation type=\"unfinished\">Choose disk</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6129\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Choose disk from discovered in the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Choose disk from discovered in the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6133\"/>\n        <source>Custom</source>\n        <translation type=\"unfinished\">Custom</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6147\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6150\"/>\n        <source>Reload drives</source>\n        <translation type=\"unfinished\">Reload drives</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reload system drives list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reload system drives list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6343\"/>\n        <source>MBR</source>\n        <translation type=\"unfinished\">MBR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6177\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6183\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6199\"/>\n        <source>Partition</source>\n        <translation type=\"unfinished\">Partition</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6720\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6741\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6797\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6812\"/>\n        <source>Name</source>\n        <translation type=\"unfinished\">Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7176\"/>\n        <source>BIOS Boot Specification</source>\n        <translation type=\"unfinished\">BIOS Boot Specification</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7405\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7411\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7427\"/>\n        <source>Description</source>\n        <translation type=\"unfinished\">Description</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7639\"/>\n        <source>End</source>\n        <translation type=\"unfinished\">End</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7669\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7672\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7678\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7797\"/>\n        <source>Sub-Type</source>\n        <translation type=\"unfinished\">Sub-Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7675\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7697\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7701\"/>\n        <source>End This Instance</source>\n        <translation type=\"unfinished\">End This Instance</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7706\"/>\n        <source>End Entire</source>\n        <translation type=\"unfinished\">End Entire</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7718\"/>\n        <source>Unknown</source>\n        <translation type=\"unfinished\">Unknown</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"50\"/>\n        <source>The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.</source>\n        <translation type=\"unfinished\">The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"53\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"77\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"99\"/>\n        <source>PCI Function Number.</source>\n        <translation type=\"unfinished\">PCI Function Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"83\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"105\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Function Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Function Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"118\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"140\"/>\n        <source>PCI Device Number.</source>\n        <translation type=\"unfinished\">PCI Device Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"124\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Device Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Device Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"163\"/>\n        <source>PCCARD</source>\n        <translation type=\"unfinished\">PCCARD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"166\"/>\n        <source>PCCARD Settings.</source>\n        <translation type=\"unfinished\">PCCARD Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCCARD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCCARD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"193\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"215\"/>\n        <source>Function Number (0 = First Function).</source>\n        <translation type=\"unfinished\">Function Number (0 = First Function).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"199\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"221\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Function Number (0 = First Function).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Function Number (0 = First Function).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"238\"/>\n        <source>Memory Mapped</source>\n        <translation type=\"unfinished\">Memory Mapped</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"241\"/>\n        <source>Memory Mapped Settings.</source>\n        <translation type=\"unfinished\">Memory Mapped Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Memory Mapped Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Memory Mapped Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"268\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"290\"/>\n        <source>The type of memory to allocate.</source>\n        <translation type=\"unfinished\">The type of memory to allocate.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"271\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"293\"/>\n        <source>Memory Type</source>\n        <translation type=\"unfinished\">Memory Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"274\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"296\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The type of memory to allocate.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The type of memory to allocate.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"300\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1584\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1738\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1753\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3145\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3160\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4416\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4437\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6868\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6883\"/>\n        <source>Reserved</source>\n        <translation type=\"unfinished\">Reserved</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"305\"/>\n        <source>Loader Code</source>\n        <translation type=\"unfinished\">Loader Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"310\"/>\n        <source>Loader Data</source>\n        <translation type=\"unfinished\">Loader Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"315\"/>\n        <source>Boot Services Code</source>\n        <translation type=\"unfinished\">Boot Services Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"320\"/>\n        <source>Boot Services Data</source>\n        <translation type=\"unfinished\">Boot Services Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"325\"/>\n        <source>Runtime Services Code</source>\n        <translation type=\"unfinished\">Runtime Services Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"330\"/>\n        <source>Runtime Services Data</source>\n        <translation type=\"unfinished\">Runtime Services Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"335\"/>\n        <source>Conventional</source>\n        <translation type=\"unfinished\">Conventional</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"340\"/>\n        <source>Unusable</source>\n        <translation type=\"unfinished\">Unusable</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"345\"/>\n        <source>ACPI Reclaim</source>\n        <translation type=\"unfinished\">ACPI Reclaim</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"350\"/>\n        <source>ACPI Memory NVS</source>\n        <translation type=\"unfinished\">ACPI Memory NVS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"355\"/>\n        <source>Memory Mapped IO</source>\n        <translation type=\"unfinished\">Memory Mapped IO</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"360\"/>\n        <source>Memory Mapped IO Port Space</source>\n        <translation type=\"unfinished\">Memory Mapped IO Port Space</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"365\"/>\n        <source>Pal Code</source>\n        <translation type=\"unfinished\">Pal Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"370\"/>\n        <source>Persistent</source>\n        <translation type=\"unfinished\">Persistent</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"375\"/>\n        <source>Unaccepted</source>\n        <translation type=\"unfinished\">Unaccepted</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"383\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7013\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7034\"/>\n        <source>Starting Memory Address.</source>\n        <translation type=\"unfinished\">Starting Memory Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"386\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"407\"/>\n        <source>Start Address</source>\n        <translation type=\"unfinished\">Start Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"389\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7019\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7040\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"423\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7053\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7074\"/>\n        <source>Ending Memory Address.</source>\n        <translation type=\"unfinished\">Ending Memory Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"426\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"432\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"447\"/>\n        <source>End Address</source>\n        <translation type=\"unfinished\">End Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"429\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7080\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ending Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ending Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"467\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"522\"/>\n        <source>Controller</source>\n        <translation type=\"unfinished\">Controller</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"470\"/>\n        <source>Controller settings.</source>\n        <translation type=\"unfinished\">Controller settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"473\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"519\"/>\n        <source>Controller number.</source>\n        <translation type=\"unfinished\">Controller number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"525\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"542\"/>\n        <source>BMC</source>\n        <translation type=\"unfinished\">BMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"545\"/>\n        <source>The Device Path for a Baseboard Management Controller (BMC) host interface.</source>\n        <translation type=\"unfinished\">The Device Path for a Baseboard Management Controller (BMC) host interface.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"548\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for a Baseboard Management Controller (BMC) host interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for a Baseboard Management Controller (BMC) host interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"602\"/>\n        <source>The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.</source>\n        <translation type=\"unfinished\">The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"579\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"589\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2332\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2354\"/>\n        <source>Interface Type</source>\n        <translation type=\"unfinished\">Interface Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"582\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"612\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"625\"/>\n        <source>Keyboard Controller Style</source>\n        <translation type=\"unfinished\">Keyboard Controller Style</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"630\"/>\n        <source>Server Management Interface Chip</source>\n        <translation type=\"unfinished\">Server Management Interface Chip</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"635\"/>\n        <source>Block Transfer</source>\n        <translation type=\"unfinished\">Block Transfer</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"643\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"664\"/>\n        <source>Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.</source>\n        <translation type=\"unfinished\">Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"667\"/>\n        <source>Base Address</source>\n        <translation type=\"unfinished\">Base Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"670\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"688\"/>\n        <source>ACPI</source>\n        <translation type=\"unfinished\">ACPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"805\"/>\n        <source>This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.</source>\n        <translation type=\"unfinished\">This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"808\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"718\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"739\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"832\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"853\"/>\n        <source>Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.</source>\n        <translation type=\"unfinished\">Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"724\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"745\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"838\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"859\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"779\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"872\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"893\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.</source>\n        <translation type=\"unfinished\">Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"764\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"785\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"899\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"802\"/>\n        <source>Expanded</source>\n        <translation type=\"unfinished\">Expanded</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"912\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"933\"/>\n        <source>Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.</source>\n        <translation type=\"unfinished\">Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"915\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"921\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"936\"/>\n        <source>CID</source>\n        <translation type=\"unfinished\">CID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"918\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"939\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"952\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"974\"/>\n        <source>Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.</source>\n        <translation type=\"unfinished\">Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"955\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"961\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"977\"/>\n        <source>HIDSTR</source>\n        <translation type=\"unfinished\">HIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"958\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"980\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"987\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1009\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.</source>\n        <translation type=\"unfinished\">Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"990\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"996\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1012\"/>\n        <source>UIDSTR</source>\n        <translation type=\"unfinished\">UIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"993\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1015\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1044\"/>\n        <source>Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.</source>\n        <translation type=\"unfinished\">Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1025\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1031\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1047\"/>\n        <source>CIDSTR</source>\n        <translation type=\"unfinished\">CIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1028\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1050\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1061\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1094\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1100\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1115\"/>\n        <source>ADR</source>\n        <translation type=\"unfinished\">ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1064\"/>\n        <source>The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.</source>\n        <translation type=\"unfinished\">The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1067\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1091\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1112\"/>\n        <source>ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required</source>\n        <translation type=\"unfinished\">ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1097\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1118\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1131\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1192\"/>\n        <source>This device path may optionally contain more than one ADR entry.</source>\n        <translation type=\"unfinished\">This device path may optionally contain more than one ADR entry.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1195\"/>\n        <source>Additional ADR</source>\n        <translation type=\"unfinished\">Additional ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1198\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path may optionally contain more than one ADR entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path may optionally contain more than one ADR entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1153\"/>\n        <source>Additional ADR format.</source>\n        <translation type=\"unfinished\">Additional ADR format.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1156\"/>\n        <source>Additional ADR format</source>\n        <translation type=\"unfinished\">Additional ADR format</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1159\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Additional ADR format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Additional ADR format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1209\"/>\n        <source>NVDIMM</source>\n        <translation type=\"unfinished\">NVDIMM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1212\"/>\n        <source>This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.</source>\n        <translation type=\"unfinished\">This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1260\"/>\n        <source>NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.</source>\n        <translation type=\"unfinished\">NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1242\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1248\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1263\"/>\n        <source>NFIT Device Handle</source>\n        <translation type=\"unfinished\">NFIT Device Handle</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1245\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1284\"/>\n        <source>ATAPI</source>\n        <translation type=\"unfinished\">ATAPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1287\"/>\n        <source>ATAPI Settings.</source>\n        <translation type=\"unfinished\">ATAPI Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1336\"/>\n        <source>Set to zero for primary or one for secondary.</source>\n        <translation type=\"unfinished\">Set to zero for primary or one for secondary.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1317\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1323\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1339\"/>\n        <source>Primary</source>\n        <translation type=\"unfinished\">Primary</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1320\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1342\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for primary or one for secondary.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for primary or one for secondary.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1349\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1371\"/>\n        <source>Set to zero for master or one for slave mode.</source>\n        <translation type=\"unfinished\">Set to zero for master or one for slave mode.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1374\"/>\n        <source>Slave</source>\n        <translation type=\"unfinished\">Slave</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1377\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for master or one for slave mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for master or one for slave mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1384\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1406\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4054\"/>\n        <source>Logical Unit Number.</source>\n        <translation type=\"unfinished\">Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1390\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1412\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4038\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1429\"/>\n        <source>SCSI</source>\n        <translation type=\"unfinished\">SCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1432\"/>\n        <source>SCSI Settings.</source>\n        <translation type=\"unfinished\">SCSI Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1435\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1481\"/>\n        <source>Target ID on the SCSI bus (PUN).</source>\n        <translation type=\"unfinished\">Target ID on the SCSI bus (PUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1962\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1984\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4969\"/>\n        <source>Target ID</source>\n        <translation type=\"unfinished\">Target ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1465\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1487\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the SCSI bus (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the SCSI bus (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4985\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5006\"/>\n        <source>Logical Unit Number (LUN).</source>\n        <translation type=\"unfinished\">Logical Unit Number (LUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5012\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1545\"/>\n        <source>Fibre Channel</source>\n        <translation type=\"unfinished\">Fibre Channel</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1548\"/>\n        <source>Fibre Channel Settings</source>\n        <translation type=\"unfinished\">Fibre Channel Settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1551\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1596\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1750\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4434\"/>\n        <source>Reserved.</source>\n        <translation type=\"unfinished\">Reserved.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1581\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1602\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1756\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3142\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4419\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1615\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1636\"/>\n        <source>Fibre Channel World Wide Name.</source>\n        <translation type=\"unfinished\">Fibre Channel World Wide Name.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1624\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1639\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4456\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4477\"/>\n        <source>World Wide Name</source>\n        <translation type=\"unfinished\">World Wide Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1621\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1642\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel World Wide Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel World Wide Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1676\"/>\n        <source>Fibre Channel Logical Unit Number.</source>\n        <translation type=\"unfinished\">Fibre Channel Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1661\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1682\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1699\"/>\n        <source>Firewire</source>\n        <translation type=\"unfinished\">Firewire</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1702\"/>\n        <source>Firewire Settings.</source>\n        <translation type=\"unfinished\">Firewire Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1705\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firewire Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firewire Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1790\"/>\n        <source>1394 Global Unique ID (GUID)</source>\n        <translation type=\"unfinished\">1394 Global Unique ID (GUID)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1796\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 Global Unique ID (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 Global Unique ID (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1816\"/>\n        <source>USB settings.</source>\n        <translation type=\"unfinished\">USB settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1865\"/>\n        <source>USB Parent Port Number.</source>\n        <translation type=\"unfinished\">USB Parent Port Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1852\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1868\"/>\n        <source>Parent Port</source>\n        <translation type=\"unfinished\">Parent Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1871\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Parent Port Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Parent Port Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1906\"/>\n        <source>USB Interface Number.</source>\n        <translation type=\"unfinished\">USB Interface Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1912\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1929\"/>\n        <source>I2O</source>\n        <translation type=\"unfinished\">I2O</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1932\"/>\n        <source>I2O Settings</source>\n        <translation type=\"unfinished\">I2O Settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1935\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;I2O Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;I2O Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1981\"/>\n        <source>Target ID (TID) for a device.</source>\n        <translation type=\"unfinished\">Target ID (TID) for a device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1965\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1987\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID (TID) for a device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID (TID) for a device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2004\"/>\n        <source>InfiniBand</source>\n        <translation type=\"unfinished\">InfiniBand</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2007\"/>\n        <source>InfiniBand Settings.</source>\n        <translation type=\"unfinished\">InfiniBand Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2010\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;InfiniBand Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;InfiniBand Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2034\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2067\"/>\n        <source>Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.</source>\n        <translation type=\"unfinished\">Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2043\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2055\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2076\"/>\n        <source>Resource Flags</source>\n        <translation type=\"unfinished\">Resource Flags</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2046\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2079\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2098\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2119\"/>\n        <source>128-bit Global Identifier for remote fabric port</source>\n        <translation type=\"unfinished\">128-bit Global Identifier for remote fabric port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2101\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2122\"/>\n        <source>PORT GID</source>\n        <translation type=\"unfinished\">PORT GID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2104\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2125\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;128-bit Global Identifier for remote fabric port&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;128-bit Global Identifier for remote fabric port&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2135\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2156\"/>\n        <source>64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)</source>\n        <translation type=\"unfinished\">64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2138\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2144\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2159\"/>\n        <source>IOC GUID/Service ID</source>\n        <translation type=\"unfinished\">IOC GUID/Service ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2141\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2162\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2175\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2196\"/>\n        <source>64-bit persistent ID of remote IOC port.</source>\n        <translation type=\"unfinished\">64-bit persistent ID of remote IOC port.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2184\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2199\"/>\n        <source>Target Port ID</source>\n        <translation type=\"unfinished\">Target Port ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2181\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote IOC port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote IOC port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2236\"/>\n        <source>64-bit persistent ID of remote device.</source>\n        <translation type=\"unfinished\">64-bit persistent ID of remote device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2239\"/>\n        <source>Device ID</source>\n        <translation type=\"unfinished\">Device ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2259\"/>\n        <source>MAC Address</source>\n        <translation type=\"unfinished\">MAC Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2262\"/>\n        <source>MAC settings.</source>\n        <translation type=\"unfinished\">MAC settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2289\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2310\"/>\n        <source>The MAC address for a network interface padded with 0s.</source>\n        <translation type=\"unfinished\">The MAC address for a network interface padded with 0s.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2295\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2316\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The MAC address for a network interface padded with 0s.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The MAC address for a network interface padded with 0s.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2329\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2351\"/>\n        <source>Network interface type (i.e., 802.3, FDDI). See RFC 3232.</source>\n        <translation type=\"unfinished\">Network interface type (i.e., 802.3, FDDI). See RFC 3232.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2357\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network interface type (i.e., 802.3, FDDI). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network interface type (i.e., 802.3, FDDI). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2377\"/>\n        <source>IPv4 settings.</source>\n        <translation type=\"unfinished\">IPv4 settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2425\"/>\n        <source>The local IPv4 address.</source>\n        <translation type=\"unfinished\">The local IPv4 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2407\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2763\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2784\"/>\n        <source>Local IP Address</source>\n        <translation type=\"unfinished\">Local IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2431\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2465\"/>\n        <source>The remote IPv4 address.</source>\n        <translation type=\"unfinished\">The remote IPv4 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2447\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2824\"/>\n        <source>Remote IP Address</source>\n        <translation type=\"unfinished\">Remote IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2471\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2862\"/>\n        <source>The local port number.</source>\n        <translation type=\"unfinished\">The local port number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2487\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2865\"/>\n        <source>Local Port</source>\n        <translation type=\"unfinished\">Local Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2490\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2547\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2903\"/>\n        <source>The remote port number.</source>\n        <translation type=\"unfinished\">The remote port number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2550\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2906\"/>\n        <source>Remote Port</source>\n        <translation type=\"unfinished\">Remote Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2553\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2909\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2566\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2588\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2922\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2944\"/>\n        <source>The network protocol (i.e., UDP, TCP). See RFC 3232.</source>\n        <translation type=\"unfinished\">The network protocol (i.e., UDP, TCP). See RFC 3232.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2928\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2950\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The network protocol (i.e., UDP, TCP). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The network protocol (i.e., UDP, TCP). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2631\"/>\n        <source>0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.</source>\n        <translation type=\"unfinished\">0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2635\"/>\n        <source>Static IP Address</source>\n        <translation type=\"unfinished\">Static IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2667\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3083\"/>\n        <source>The Gateway IP Address.</source>\n        <translation type=\"unfinished\">The Gateway IP Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3071\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3086\"/>\n        <source>Gateway IP Address</source>\n        <translation type=\"unfinished\">Gateway IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2673\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Gateway IP Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Gateway IP Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2686\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2707\"/>\n        <source>Subnet mask.</source>\n        <translation type=\"unfinished\">Subnet mask.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2689\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2695\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2710\"/>\n        <source>Subnet Mask</source>\n        <translation type=\"unfinished\">Subnet Mask</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2733\"/>\n        <source>IPv6 settings.</source>\n        <translation type=\"unfinished\">IPv6 settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2760\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2781\"/>\n        <source>The local IPv6 address.</source>\n        <translation type=\"unfinished\">The local IPv6 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2787\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2821\"/>\n        <source>The remote IPv6 address.</source>\n        <translation type=\"unfinished\">The remote IPv6 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2963\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2989\"/>\n        <source>0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.</source>\n        <translation type=\"unfinished\">0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2976\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2994\"/>\n        <source>IP Address Origin</source>\n        <translation type=\"unfinished\">IP Address Origin</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2971\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2997\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3021\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3043\"/>\n        <source>The Prefix Length.</source>\n        <translation type=\"unfinished\">The Prefix Length.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3024\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3030\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3046\"/>\n        <source>Prefix Length</source>\n        <translation type=\"unfinished\">Prefix Length</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3027\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3049\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Prefix Length.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Prefix Length.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3106\"/>\n        <source>UART</source>\n        <translation type=\"unfinished\">UART</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3109\"/>\n        <source>UART Settings.</source>\n        <translation type=\"unfinished\">UART Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3112\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3176\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3197\"/>\n        <source>The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.</source>\n        <translation type=\"unfinished\">The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3179\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3185\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3200\"/>\n        <source>Baud Rate</source>\n        <translation type=\"unfinished\">Baud Rate</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3182\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3203\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3216\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3238\"/>\n        <source>The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.</source>\n        <translation type=\"unfinished\">The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3219\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3225\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3241\"/>\n        <source>Data Bits</source>\n        <translation type=\"unfinished\">Data Bits</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3222\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3257\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3291\"/>\n        <source>The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.</source>\n        <translation type=\"unfinished\">The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3266\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3300\"/>\n        <source>Parity</source>\n        <translation type=\"unfinished\">Parity</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3303\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3313\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3394\"/>\n        <source>Default</source>\n        <translation type=\"unfinished\">Default</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3318\"/>\n        <source>No</source>\n        <translation type=\"unfinished\">No</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3323\"/>\n        <source>Even</source>\n        <translation type=\"unfinished\">Even</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3328\"/>\n        <source>Odd</source>\n        <translation type=\"unfinished\">Odd</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3333\"/>\n        <source>Mark</source>\n        <translation type=\"unfinished\">Mark</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3338\"/>\n        <source>Space</source>\n        <translation type=\"unfinished\">Space</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3346\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3376\"/>\n        <source>The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.</source>\n        <translation type=\"unfinished\">The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3353\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3363\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3383\"/>\n        <source>Stop Bits</source>\n        <translation type=\"unfinished\">Stop Bits</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3356\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3399\"/>\n        <source>1</source>\n        <translation type=\"unfinished\">1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3404\"/>\n        <source>1.5</source>\n        <translation type=\"unfinished\">1.5</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3409\"/>\n        <source>2</source>\n        <translation type=\"unfinished\">2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3421\"/>\n        <source>USB Class</source>\n        <translation type=\"unfinished\">USB Class</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3424\"/>\n        <source>USB Class Settings.</source>\n        <translation type=\"unfinished\">USB Class Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3427\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Class Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Class Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3451\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3472\"/>\n        <source>Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.</source>\n        <translation type=\"unfinished\">Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3454\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3460\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3475\"/>\n        <source>Vendor ID</source>\n        <translation type=\"unfinished\">Vendor ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3457\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3478\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3491\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3512\"/>\n        <source>Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.</source>\n        <translation type=\"unfinished\">Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3515\"/>\n        <source>Product ID</source>\n        <translation type=\"unfinished\">Product ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3518\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3552\"/>\n        <source>The class code assigned by the USB-IF. A value of 0xFF will match any class code.</source>\n        <translation type=\"unfinished\">The class code assigned by the USB-IF. A value of 0xFF will match any class code.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3540\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3555\"/>\n        <source>Device Class</source>\n        <translation type=\"unfinished\">Device Class</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3537\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3558\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The class code assigned by the USB-IF. A value of 0xFF will match any class code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The class code assigned by the USB-IF. A value of 0xFF will match any class code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3592\"/>\n        <source>The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.</source>\n        <translation type=\"unfinished\">The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3574\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3595\"/>\n        <source>Device Subclass</source>\n        <translation type=\"unfinished\">Device Subclass</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3632\"/>\n        <source>The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.</source>\n        <translation type=\"unfinished\">The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3635\"/>\n        <source>Device Protocol</source>\n        <translation type=\"unfinished\">Device Protocol</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3617\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3655\"/>\n        <source>USB WWID</source>\n        <translation type=\"unfinished\">USB WWID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3658\"/>\n        <source>This device path describes a USB device using its serial number.</source>\n        <translation type=\"unfinished\">This device path describes a USB device using its serial number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3661\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a USB device using its serial number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a USB device using its serial number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3685\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3707\"/>\n        <source>USB interface Number.</source>\n        <translation type=\"unfinished\">USB interface Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3747\"/>\n        <source>USB vendor id of the device.</source>\n        <translation type=\"unfinished\">USB vendor id of the device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3750\"/>\n        <source>Device Vendor Id</source>\n        <translation type=\"unfinished\">Device Vendor Id</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3753\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB vendor id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB vendor id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3787\"/>\n        <source>USB product id of the device.</source>\n        <translation type=\"unfinished\">USB product id of the device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3790\"/>\n        <source>Device Product Id</source>\n        <translation type=\"unfinished\">Device Product Id</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3793\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB product id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB product id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3828\"/>\n        <source>Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).</source>\n        <translation type=\"unfinished\">Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3815\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3831\"/>\n        <source>Serial Number</source>\n        <translation type=\"unfinished\">Serial Number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3812\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3845\"/>\n        <source>Device Logical Unit</source>\n        <translation type=\"unfinished\">Device Logical Unit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3848\"/>\n        <source>Device Logical Unit Settings.</source>\n        <translation type=\"unfinished\">Device Logical Unit Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3851\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device Logical Unit Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device Logical Unit Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3897\"/>\n        <source>Logical Unit Number for the interface.</source>\n        <translation type=\"unfinished\">Logical Unit Number for the interface.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3903\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number for the interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number for the interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3923\"/>\n        <source>SATA settings.</source>\n        <translation type=\"unfinished\">SATA settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3950\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3972\"/>\n        <source>The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.</source>\n        <translation type=\"unfinished\">The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3953\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3975\"/>\n        <source>HBA Port</source>\n        <translation type=\"unfinished\">HBA Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3956\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3978\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4013\"/>\n        <source>The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.</source>\n        <translation type=\"unfinished\">The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4000\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4016\"/>\n        <source>Port Multiplier Port</source>\n        <translation type=\"unfinished\">Port Multiplier Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3997\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4019\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4077\"/>\n        <source>iSCSI</source>\n        <translation type=\"unfinished\">iSCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4080\"/>\n        <source>iSCSI Settings.</source>\n        <translation type=\"unfinished\">iSCSI Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4083\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4129\"/>\n        <source>Network Protocol (0 = TCP, 1+ = reserved).</source>\n        <translation type=\"unfinished\">Network Protocol (0 = TCP, 1+ = reserved).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4113\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network Protocol (0 = TCP, 1+ = reserved).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network Protocol (0 = TCP, 1+ = reserved).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4148\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4169\"/>\n        <source>iSCSI Login Options.</source>\n        <translation type=\"unfinished\">iSCSI Login Options.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4151\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4172\"/>\n        <source>Options</source>\n        <translation type=\"unfinished\">Options</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4154\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4175\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Login Options.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Login Options.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4188\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4209\"/>\n        <source>8 byte array containing the iSCSI Logical Unit Number.</source>\n        <translation type=\"unfinished\">8 byte array containing the iSCSI Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4194\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing the iSCSI Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing the iSCSI Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4228\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4250\"/>\n        <source>iSCSI Target Portal group tag the initiator intends to establish a session with.</source>\n        <translation type=\"unfinished\">iSCSI Target Portal group tag the initiator intends to establish a session with.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4231\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4253\"/>\n        <source>Target Portal Group</source>\n        <translation type=\"unfinished\">Target Portal Group</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4234\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4256\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Target Portal group tag the initiator intends to establish a session with.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Target Portal group tag the initiator intends to establish a session with.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4291\"/>\n        <source>iSCSI NodeTarget Name.</source>\n        <translation type=\"unfinished\">iSCSI NodeTarget Name.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4272\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4294\"/>\n        <source>Target Name</source>\n        <translation type=\"unfinished\">Target Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4275\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4297\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI NodeTarget Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI NodeTarget Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4308\"/>\n        <source>VLAN</source>\n        <translation type=\"unfinished\">VLAN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4311\"/>\n        <source>VLAN Settings.</source>\n        <translation type=\"unfinished\">VLAN Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4314\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4360\"/>\n        <source>VLAN identifier (0-4094).</source>\n        <translation type=\"unfinished\">VLAN identifier (0-4094).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4341\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4347\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4363\"/>\n        <source>Vlan ID</source>\n        <translation type=\"unfinished\">Vlan ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4344\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4366\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN identifier (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN identifier (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4383\"/>\n        <source>Fibre Channel Ex</source>\n        <translation type=\"unfinished\">Fibre Channel Ex</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4386\"/>\n        <source>The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation type=\"unfinished\">The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4389\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4474\"/>\n        <source>8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).</source>\n        <translation type=\"unfinished\">8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4480\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4514\"/>\n        <source>8 byte array containing Fibre Channel Logical Unit Number.</source>\n        <translation type=\"unfinished\">8 byte array containing Fibre Channel Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4499\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4520\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4537\"/>\n        <source>SAS Extended Messaging</source>\n        <translation type=\"unfinished\">SAS Extended Messaging</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4540\"/>\n        <source>The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation type=\"unfinished\">The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4543\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4567\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4588\"/>\n        <source>8-byte array of the SAS Address for Serial Attached SCSI Target Port.</source>\n        <translation type=\"unfinished\">8-byte array of the SAS Address for Serial Attached SCSI Target Port.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4570\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4576\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4591\"/>\n        <source>SAS Address</source>\n        <translation type=\"unfinished\">SAS Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4573\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4594\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Address for Serial Attached SCSI Target Port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Address for Serial Attached SCSI Target Port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4628\"/>\n        <source>8-byte array of the SAS Logical Unit Number.</source>\n        <translation type=\"unfinished\">8-byte array of the SAS Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4613\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4634\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4647\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4668\"/>\n        <source>More Information about the device and its interconnect.</source>\n        <translation type=\"unfinished\">More Information about the device and its interconnect.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4650\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4656\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4671\"/>\n        <source>Device and Topology Info</source>\n        <translation type=\"unfinished\">Device and Topology Info</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4653\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4674\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;More Information about the device and its interconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;More Information about the device and its interconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4687\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4709\"/>\n        <source>Relative Target Port (RTP).</source>\n        <translation type=\"unfinished\">Relative Target Port (RTP).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4690\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4696\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4712\"/>\n        <source>Relative Target Port</source>\n        <translation type=\"unfinished\">Relative Target Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4715\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Relative Target Port (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Relative Target Port (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4732\"/>\n        <source>NVM Express NS</source>\n        <translation type=\"unfinished\">NVM Express NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4735\"/>\n        <source>NVM Express Namespace Settings.</source>\n        <translation type=\"unfinished\">NVM Express Namespace Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4738\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM Express Namespace Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM Express Namespace Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4783\"/>\n        <source>Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.</source>\n        <translation type=\"unfinished\">Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4765\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4771\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4786\"/>\n        <source>NSID</source>\n        <translation type=\"unfinished\">NSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4768\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4789\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4802\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4823\"/>\n        <source>This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.</source>\n        <translation type=\"unfinished\">This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4805\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4811\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4826\"/>\n        <source>EUI-64</source>\n        <translation type=\"unfinished\">EUI-64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4808\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4829\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4849\"/>\n        <source>Refer to RFC 3986 for details on the URI contents.</source>\n        <translation type=\"unfinished\">Refer to RFC 3986 for details on the URI contents.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Refer to RFC 3986 for details on the URI contents.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Refer to RFC 3986 for details on the URI contents.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4876\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4898\"/>\n        <source>Instance of the URI pursuant to RFC 3986.</source>\n        <translation type=\"unfinished\">Instance of the URI pursuant to RFC 3986.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4882\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Instance of the URI pursuant to RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Instance of the URI pursuant to RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4915\"/>\n        <source>UFS</source>\n        <translation type=\"unfinished\">UFS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4918\"/>\n        <source>UFS Settings.</source>\n        <translation type=\"unfinished\">UFS Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4966\"/>\n        <source>Target ID on the UFS interface (PUN).</source>\n        <translation type=\"unfinished\">Target ID on the UFS interface (PUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4972\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the UFS interface (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the UFS interface (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5029\"/>\n        <source>SD</source>\n        <translation type=\"unfinished\">SD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5032\"/>\n        <source>SD Settings.</source>\n        <translation type=\"unfinished\">SD Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5035\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5081\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5299\"/>\n        <source>Slot Number</source>\n        <translation type=\"unfinished\">Slot Number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5084\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5280\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5286\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5302\"/>\n        <source>Slot</source>\n        <translation type=\"unfinished\">Slot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5087\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5283\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5305\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Slot Number&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Slot Number&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5104\"/>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\">Bluetooth</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5107\"/>\n        <source>EFI Bluetooth Settings.</source>\n        <translation type=\"unfinished\">EFI Bluetooth Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5110\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI Bluetooth Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI Bluetooth Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5155\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5373\"/>\n        <source>48-bit Bluetooth device address.</source>\n        <translation type=\"unfinished\">48-bit Bluetooth device address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5143\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5158\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5361\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5376\"/>\n        <source>Device Address</source>\n        <translation type=\"unfinished\">Device Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5161\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5379\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-bit Bluetooth device address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-bit Bluetooth device address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5178\"/>\n        <source>Wi-Fi</source>\n        <translation type=\"unfinished\">Wi-Fi</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5181\"/>\n        <source>Wi-Fi Settings.</source>\n        <translation type=\"unfinished\">Wi-Fi Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5184\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wi-Fi Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wi-Fi Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5208\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5230\"/>\n        <source>SSID in octet string.</source>\n        <translation type=\"unfinished\">SSID in octet string.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5211\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5217\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5233\"/>\n        <source>SSID</source>\n        <translation type=\"unfinished\">SSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5214\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5236\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID in octet string.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID in octet string.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5247\"/>\n        <source>eMMC</source>\n        <translation type=\"unfinished\">eMMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5250\"/>\n        <source>Embedded Multi-Media Card Settings.</source>\n        <translation type=\"unfinished\">Embedded Multi-Media Card Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5253\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Embedded Multi-Media Card Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Embedded Multi-Media Card Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5322\"/>\n        <source>BluetoothLE</source>\n        <translation type=\"unfinished\">BluetoothLE</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5325\"/>\n        <source>EFI BluetoothLE Settings.</source>\n        <translation type=\"unfinished\">EFI BluetoothLE Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5328\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI BluetoothLE Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI BluetoothLE Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5416\"/>\n        <source>0x00 - Public Device Address.\n0x01 - Random Device Address.</source>\n        <translation type=\"unfinished\">0x00 - Public Device Address.\n0x01 - Random Device Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5396\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5403\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5420\"/>\n        <source>Address Type</source>\n        <translation type=\"unfinished\">Address Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5399\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5423\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Public Device Address.\n0x01 - Random Device Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Public Device Address.\n0x01 - Random Device Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5428\"/>\n        <source>Public</source>\n        <translation type=\"unfinished\">Public</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5433\"/>\n        <source>Random</source>\n        <translation type=\"unfinished\">Random</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5445\"/>\n        <source>DNS</source>\n        <translation type=\"unfinished\">DNS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5448\"/>\n        <source>DNS Settings.</source>\n        <translation type=\"unfinished\">DNS Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5451\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DNS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DNS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5499\"/>\n        <source>0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.</source>\n        <translation type=\"unfinished\">0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5482\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5506\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5514\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5575\"/>\n        <source>One or more instances of the DNS server address in EFI_IP_ADDRESS.</source>\n        <translation type=\"unfinished\">One or more instances of the DNS server address in EFI_IP_ADDRESS.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5520\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5581\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;One or more instances of the DNS server address in EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;One or more instances of the DNS server address in EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5536\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7584\"/>\n        <source>Data format.</source>\n        <translation type=\"unfinished\">Data format.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5592\"/>\n        <source>NVDIMM NS</source>\n        <translation type=\"unfinished\">NVDIMM NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5595\"/>\n        <source>This device path describes a bootable NVDIMM namespace that is defined by a namespace label.</source>\n        <translation type=\"unfinished\">This device path describes a bootable NVDIMM namespace that is defined by a namespace label.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVDIMM namespace that is defined by a namespace label.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVDIMM namespace that is defined by a namespace label.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5622\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5643\"/>\n        <source>Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.</source>\n        <translation type=\"unfinished\">Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5646\"/>\n        <source>UUID</source>\n        <translation type=\"unfinished\">UUID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5628\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5649\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5663\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5698\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5706\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5724\"/>\n        <source>REST Service</source>\n        <translation type=\"unfinished\">REST Service</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5666\"/>\n        <source>REST Service Settings.</source>\n        <translation type=\"unfinished\">REST Service Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5669\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;REST Service Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;REST Service Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5719\"/>\n        <source>0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.</source>\n        <translation type=\"unfinished\">0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5701\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5727\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5733\"/>\n        <source>Redfish</source>\n        <translation type=\"unfinished\">Redfish</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5738\"/>\n        <source>OData</source>\n        <translation type=\"unfinished\">OData</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5743\"/>\n        <source>Vendor specific</source>\n        <translation type=\"unfinished\">Vendor specific</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5775\"/>\n        <source>0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.</source>\n        <translation type=\"unfinished\">0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5755\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5779\"/>\n        <source>Access Mode</source>\n        <translation type=\"unfinished\">Access Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5782\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5787\"/>\n        <source>In-Band</source>\n        <translation type=\"unfinished\">In-Band</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5792\"/>\n        <source>Out-of-band</source>\n        <translation type=\"unfinished\">Out-of-band</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5821\"/>\n        <source>GUID of vendor specific REST service.</source>\n        <translation type=\"unfinished\">GUID of vendor specific REST service.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID of vendor specific REST service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID of vendor specific REST service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5898\"/>\n        <source>Vendor-defined data.</source>\n        <translation type=\"unfinished\">Vendor-defined data.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5915\"/>\n        <source>NVMe-oF NS</source>\n        <translation type=\"unfinished\">NVMe-oF NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5918\"/>\n        <source>This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.</source>\n        <translation type=\"unfinished\">This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5967\"/>\n        <source>Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.</source>\n        <translation type=\"unfinished\">Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5970\"/>\n        <source>NIDT</source>\n        <translation type=\"unfinished\">NIDT</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5973\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5986\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6007\"/>\n        <source>Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.</source>\n        <translation type=\"unfinished\">Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5989\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5995\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6010\"/>\n        <source>NID</source>\n        <translation type=\"unfinished\">NID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5992\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6013\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6023\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6045\"/>\n        <source>Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.</source>\n        <translation type=\"unfinished\">Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6026\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6048\"/>\n        <source>Subsystem NQN</source>\n        <translation type=\"unfinished\">Subsystem NQN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6029\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6051\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6066\"/>\n        <source>Hard Drive</source>\n        <translation type=\"unfinished\">Hard Drive</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6069\"/>\n        <source>The Hard Drive Media Device Path is used to represent a partition on a hard drive.</source>\n        <translation type=\"unfinished\">The Hard Drive Media Device Path is used to represent a partition on a hard drive.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6072\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Hard Drive Media Device Path is used to represent a partition on a hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Hard Drive Media Device Path is used to represent a partition on a hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6174\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6196\"/>\n        <source>Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].</source>\n        <translation type=\"unfinished\">Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6180\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6236\"/>\n        <source>Starting LBA of the partition on the hard drive.</source>\n        <translation type=\"unfinished\">Starting LBA of the partition on the hard drive.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6466\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6487\"/>\n        <source>Partition Start</source>\n        <translation type=\"unfinished\">Partition Start</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting LBA of the partition on the hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting LBA of the partition on the hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6255\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6276\"/>\n        <source>Size of the partition in units of Logical Blocks.</source>\n        <translation type=\"unfinished\">Size of the partition in units of Logical Blocks.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6258\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6264\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6279\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6527\"/>\n        <source>Partition Size</source>\n        <translation type=\"unfinished\">Partition Size</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6261\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6282\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Logical Blocks.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Logical Blocks.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6295\"/>\n        <source>Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation type=\"unfinished\">Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6301\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6310\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6367\"/>\n        <source>Partition Signature</source>\n        <translation type=\"unfinished\">Partition Signature</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6304\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6322\"/>\n        <source>PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.</source>\n        <translation type=\"unfinished\">PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6328\"/>\n        <source>Signature Type</source>\n        <translation type=\"unfinished\">Signature Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6331\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6338\"/>\n        <source>None</source>\n        <translation type=\"unfinished\">None</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6361\"/>\n        <source>Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation type=\"unfinished\">Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6370\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6392\"/>\n        <source>CD-ROM</source>\n        <translation type=\"unfinished\">CD-ROM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6395\"/>\n        <source>The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.</source>\n        <translation type=\"unfinished\">The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6398\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6444\"/>\n        <source>Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.</source>\n        <translation type=\"unfinished\">Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6425\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6431\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6447\"/>\n        <source>Boot Entry</source>\n        <translation type=\"unfinished\">Boot Entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6450\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6463\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6484\"/>\n        <source>Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.</source>\n        <translation type=\"unfinished\">Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6469\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6490\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6524\"/>\n        <source>Size of the partition in units of Blocks, also called Sectors.</source>\n        <translation type=\"unfinished\">Size of the partition in units of Blocks, also called Sectors.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6530\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Blocks, also called Sectors.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Blocks, also called Sectors.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6547\"/>\n        <source>File Path</source>\n        <translation type=\"unfinished\">File Path</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6550\"/>\n        <source>File Path settings.</source>\n        <translation type=\"unfinished\">File Path settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6553\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File Path settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File Path settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6599\"/>\n        <source>Path including directory and file names.</source>\n        <translation type=\"unfinished\">Path including directory and file names.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6586\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6602\"/>\n        <source>Path Name</source>\n        <translation type=\"unfinished\">Path Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6583\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6605\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Path including directory and file names.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Path including directory and file names.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6619\"/>\n        <source>The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.</source>\n        <translation type=\"unfinished\">The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6622\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6667\"/>\n        <source>The ID of the protocol.</source>\n        <translation type=\"unfinished\">The ID of the protocol.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6673\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ID of the protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ID of the protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6687\"/>\n        <source>Firmware File</source>\n        <translation type=\"unfinished\">Firmware File</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6690\"/>\n        <source>Describes a firmware file in a firmware volume.</source>\n        <translation type=\"unfinished\">Describes a firmware file in a firmware volume.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6693\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware file in a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware file in a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6717\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6738\"/>\n        <source>Firmware file name GUID.</source>\n        <translation type=\"unfinished\">Firmware file name GUID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6723\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6744\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware file name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware file name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6758\"/>\n        <source>Firmware Volume</source>\n        <translation type=\"unfinished\">Firmware Volume</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6761\"/>\n        <source>Describes a firmware volume.</source>\n        <translation type=\"unfinished\">Describes a firmware volume.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6764\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6809\"/>\n        <source>Firmware volume name GUID.</source>\n        <translation type=\"unfinished\">Firmware volume name GUID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware volume name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware volume name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6829\"/>\n        <source>Relative Offset Range</source>\n        <translation type=\"unfinished\">Relative Offset Range</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6832\"/>\n        <source>This device path node specifies a range of offsets relative to the first byte available on the device.</source>\n        <translation type=\"unfinished\">This device path node specifies a range of offsets relative to the first byte available on the device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6835\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path node specifies a range of offsets relative to the first byte available on the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path node specifies a range of offsets relative to the first byte available on the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6880\"/>\n        <source>Reserved for future use.</source>\n        <translation type=\"unfinished\">Reserved for future use.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6886\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved for future use.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved for future use.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6899\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6920\"/>\n        <source>Offset of the first byte, relative to the parent device node.</source>\n        <translation type=\"unfinished\">Offset of the first byte, relative to the parent device node.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6902\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6908\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6923\"/>\n        <source>Starting Offset</source>\n        <translation type=\"unfinished\">Starting Offset</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6905\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the first byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the first byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6939\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6960\"/>\n        <source>Offset of the last byte, relative to the parent device node.</source>\n        <translation type=\"unfinished\">Offset of the last byte, relative to the parent device node.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6942\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6963\"/>\n        <source>Ending Offset</source>\n        <translation type=\"unfinished\">Ending Offset</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6966\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the last byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the last byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6983\"/>\n        <source>RAM Disk</source>\n        <translation type=\"unfinished\">RAM Disk</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6986\"/>\n        <source>RAM Disk Settings.</source>\n        <translation type=\"unfinished\">RAM Disk Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6989\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7016\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7037\"/>\n        <source>Starting Address</source>\n        <translation type=\"unfinished\">Starting Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7056\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7077\"/>\n        <source>Ending Address</source>\n        <translation type=\"unfinished\">Ending Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7093\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7114\"/>\n        <source>GUID that defines the type of the RAM Disk.</source>\n        <translation type=\"unfinished\">GUID that defines the type of the RAM Disk.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7120\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID that defines the type of the RAM Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID that defines the type of the RAM Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7130\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7152\"/>\n        <source>RAM Disk instance number, if supported.</source>\n        <translation type=\"unfinished\">RAM Disk instance number, if supported.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7133\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7155\"/>\n        <source>Disk Instance</source>\n        <translation type=\"unfinished\">Disk Instance</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7158\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk instance number, if supported.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk instance number, if supported.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7179\"/>\n        <source>This Device Path is used to describe the booting of non-EFI-aware operating systems.</source>\n        <translation type=\"unfinished\">This Device Path is used to describe the booting of non-EFI-aware operating systems.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7182\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path is used to describe the booting of non-EFI-aware operating systems.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path is used to describe the booting of non-EFI-aware operating systems.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7206\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7249\"/>\n        <source>An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.</source>\n        <translation type=\"unfinished\">An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7220\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7263\"/>\n        <source>Device Type</source>\n        <translation type=\"unfinished\">Device Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7223\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7290\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7347\"/>\n        <source>Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero</source>\n        <translation type=\"unfinished\">Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7311\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7368\"/>\n        <source>Status Flag</source>\n        <translation type=\"unfinished\">Status Flag</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7371\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7402\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7424\"/>\n        <source>String that describes the boot device to a user.</source>\n        <translation type=\"unfinished\">String that describes the boot device to a user.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7408\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7430\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;String that describes the boot device to a user.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;String that describes the boot device to a user.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7543\"/>\n        <source>Vendor-assigned GUID that defines the data that follows.</source>\n        <translation type=\"unfinished\">Vendor-assigned GUID that defines the data that follows.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7549\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-assigned GUID that defines the data that follows.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-assigned GUID that defines the data that follows.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7562\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7622\"/>\n        <source>Vendor-defined variable size data.</source>\n        <translation type=\"unfinished\">Vendor-defined variable size data.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7568\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7628\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined variable size data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined variable size data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7642\"/>\n        <source>Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.</source>\n        <translation type=\"unfinished\">Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7645\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7721\"/>\n        <source>Unknown file path specifier settings</source>\n        <translation type=\"unfinished\">Unknown file path specifier settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7724\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown file path specifier settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown file path specifier settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7748\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7772\"/>\n        <source>Unknown Type</source>\n        <translation type=\"unfinished\">Unknown Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7754\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7775\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7812\"/>\n        <source>Unknown Sub-Type</source>\n        <translation type=\"unfinished\">Unknown Sub-Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7828\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7831\"/>\n        <source>Unknown data</source>\n        <translation type=\"unfinished\">Unknown data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/filepathdialog.cpp\" line=\"1569\"/>\n        <source>Couldn&apos;t change data format!</source>\n        <translation type=\"unfinished\">Couldn&apos;t change data format!</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeyListModel</name>\n    <message>\n        <location filename=\"../src/hotkeylistmodel.cpp\" line=\"100\"/>\n        <source>boot option</source>\n        <translation type=\"unfinished\">boot option</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Boot option</source>\n        <translation type=\"unfinished\">Boot option</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Hot key</source>\n        <translation type=\"unfinished\">Hot key</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Vendor data</source>\n        <translation type=\"unfinished\">Vendor data</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeysDialog</name>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"20\"/>\n        <source>Hot Keys editor</source>\n        <translation type=\"unfinished\">Hot Keys editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"41\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"44\"/>\n        <source>Hot Keys</source>\n        <translation type=\"unfinished\">Hot Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"47\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"125\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"128\"/>\n        <source>Index filter</source>\n        <translation type=\"unfinished\">Index filter</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"131\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Index filter&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Index filter&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"163\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"166\"/>\n        <source>Remove hot key</source>\n        <translation type=\"unfinished\">Remove hot key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"191\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"194\"/>\n        <source>Add hot key</source>\n        <translation type=\"unfinished\">Add hot key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"197\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <location filename=\"../include/commands.h\" line=\"21\"/>\n        <location filename=\"../include/commands.h\" line=\"66\"/>\n        <source>Change %1 to &quot;%2&quot;</source>\n        <translation type=\"unfinished\">Change %1 to &quot;%2&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"35\"/>\n        <source>Insert %1 entry &quot;%2&quot; at position %3</source>\n        <translation type=\"unfinished\">Insert %1 entry &quot;%2&quot; at position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"50\"/>\n        <source>Remove %1 entry &quot;%2&quot; from position %3</source>\n        <translation type=\"unfinished\">Remove %1 entry &quot;%2&quot; from position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"73\"/>\n        <location filename=\"../src/commands.cpp\" line=\"116\"/>\n        <source>Move %1 entry &quot;%2&quot; from position %3 to %4</source>\n        <translation type=\"unfinished\">Move %1 entry &quot;%2&quot; from position %3 to %4</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <location filename=\"../include/commands.h\" line=\"157\"/>\n        <location filename=\"../include/commands.h\" line=\"198\"/>\n        <source>Change %1 entry &quot;%2&quot; %3 to &quot;%4&quot;</source>\n        <translation type=\"unfinished\">Change %1 entry &quot;%2&quot; %3 to &quot;%4&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <source>Optional data</source>\n        <translation type=\"unfinished\">Optional data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"227\"/>\n        <source>Insert %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation type=\"unfinished\">Insert %1 entry &quot;%2&quot; file path at position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"242\"/>\n        <source>Remove %1 entry &quot;%2&quot; file path from position %3</source>\n        <translation type=\"unfinished\">Remove %1 entry &quot;%2&quot; file path from position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"257\"/>\n        <source>Set %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation type=\"unfinished\">Set %1 entry &quot;%2&quot; file path at position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <source>Insert %1 entry at position %2</source>\n        <translation type=\"unfinished\">Insert %1 entry at position %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>Key</source>\n        <translation type=\"unfinished\">Key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <source>Remove %1 entry from position %2</source>\n        <translation type=\"unfinished\">Remove %1 entry from position %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <location filename=\"../include/commands.h\" line=\"362\"/>\n        <location filename=\"../include/commands.h\" line=\"403\"/>\n        <source>Change %1 entry at position %2 %3 to &quot;%4&quot;</source>\n        <translation type=\"unfinished\">Change %1 entry at position %2 %3 to &quot;%4&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>keys</source>\n        <translation type=\"unfinished\">keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"293\"/>\n        <location filename=\"../src/commands.cpp\" line=\"333\"/>\n        <source>Move %1 entry &quot;%2&quot; file path from position %3 to %4</source>\n        <translation type=\"unfinished\">Move %1 entry &quot;%2&quot; file path from position %3 to %4</translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/efibooteditor_uk.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"uk\" sourcelanguage=\"en_US\">\n<context>\n    <name>BootEntryForm</name>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"169\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"172\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"182\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"185\"/>\n        <source>Description</source>\n        <translation type=\"unfinished\">Description</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"198\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"201\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"204\"/>\n        <source>Path</source>\n        <translation type=\"unfinished\">Path</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"415\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"418\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"478\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"481\"/>\n        <source>Optional data</source>\n        <translation type=\"unfinished\">Optional data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"421\"/>\n        <source>Optional</source>\n        <translation type=\"unfinished\">Optional</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"434\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"437\"/>\n        <source>Optional data format</source>\n        <translation type=\"unfinished\">Optional data format</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"6\"/>\n        <source>Boot entry form</source>\n        <translation type=\"unfinished\">Boot entry form</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"24\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"27\"/>\n        <source>Error</source>\n        <translation type=\"unfinished\">Error</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"40\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"43\"/>\n        <source>Error note</source>\n        <translation type=\"unfinished\">Error note</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"46\"/>\n        <source>This entry placeholder is shown here to indicate it&apos;s referenced in boot order. It won&apos;t be modified on save, just left as is.</source>\n        <translation type=\"unfinished\">This entry placeholder is shown here to indicate it&apos;s referenced in boot order. It won&apos;t be modified on save, just left as is.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"147\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"150\"/>\n        <source>Hot Keys</source>\n        <translation type=\"unfinished\">Hot Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"188\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry description.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry description.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"222\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"225\"/>\n        <source>Device path</source>\n        <translation type=\"unfinished\">Device path</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"280\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"283\"/>\n        <source>Move file path up</source>\n        <translation type=\"unfinished\">Move file path up</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"286\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"305\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"308\"/>\n        <source>Move file path down</source>\n        <translation type=\"unfinished\">Move file path down</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"311\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"330\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"333\"/>\n        <source>Remove file path</source>\n        <translation type=\"unfinished\">Remove file path</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"336\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"355\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"358\"/>\n        <source>Edit file path</source>\n        <translation type=\"unfinished\">Edit file path</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"361\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Edit file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Edit file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"380\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"383\"/>\n        <source>Add file path</source>\n        <translation type=\"unfinished\">Add file path</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"444\"/>\n        <source>BASE64</source>\n        <translation type=\"unfinished\">BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"449\"/>\n        <source>UTF-16</source>\n        <translation type=\"unfinished\">UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"454\"/>\n        <source>UTF-8</source>\n        <translation type=\"unfinished\">UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"459\"/>\n        <source>HEX</source>\n        <translation type=\"unfinished\">HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"484\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry optional data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry optional data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"497\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"500\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"503\"/>\n        <source>Attributes</source>\n        <translation type=\"unfinished\">Attributes</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"623\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry category.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry category.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"122\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"540\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Is entry considered for automatic boot?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Is entry considered for automatic boot?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"569\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hidden.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hidden.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"585\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Force reconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Force reconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"534\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"537\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"543\"/>\n        <source>Active</source>\n        <translation type=\"unfinished\">Active</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"579\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"582\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"588\"/>\n        <source>Force reconnect</source>\n        <translation type=\"unfinished\">Force reconnect</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"563\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"566\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"572\"/>\n        <source>Hidden</source>\n        <translation type=\"unfinished\">Hidden</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"598\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"601\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"604\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"617\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"620\"/>\n        <source>Category</source>\n        <translation type=\"unfinished\">Category</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"627\"/>\n        <source>Boot</source>\n        <translation type=\"unfinished\">Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"632\"/>\n        <source>App</source>\n        <translation type=\"unfinished\">App</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"68\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"71\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"74\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"116\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"119\"/>\n        <source>Index</source>\n        <translation type=\"unfinished\">Index</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentryform.cpp\" line=\"117\"/>\n        <source>Couldn&apos;t change optional data format!</source>\n        <translation type=\"unfinished\">Couldn&apos;t change optional data format!</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryListModel</name>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"88\"/>\n        <source>Set Next boot to &quot;%1&quot;</source>\n        <translation type=\"unfinished\">Set Next boot to &quot;%1&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"184\"/>\n        <source>index</source>\n        <translation type=\"unfinished\">index</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"200\"/>\n        <source>description</source>\n        <translation type=\"unfinished\">description</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"237\"/>\n        <source>optional data</source>\n        <translation type=\"unfinished\">optional data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"253\"/>\n        <source>attributes</source>\n        <translation type=\"unfinished\">attributes</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"269\"/>\n        <source>next boot</source>\n        <translation type=\"unfinished\">next boot</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryWidget</name>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"12\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"221\"/>\n        <source>Boot entry</source>\n        <translation type=\"unfinished\">Boot entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"36\"/>\n        <source>Next boot</source>\n        <translation type=\"unfinished\">Next boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"39\"/>\n        <source>Run at next boot</source>\n        <translation type=\"unfinished\">Run at next boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"42\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;When chosen, entry will run at next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;When chosen, entry will run at next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"140\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"143\"/>\n        <source>Current boot</source>\n        <translation type=\"unfinished\">Current boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This entry is currently booted.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This entry is currently booted.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"181\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"218\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry description, human readable name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry description, human readable name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"67\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"70\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"76\"/>\n        <source>Device path</source>\n        <translation type=\"unfinished\">Device path</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"73\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"113\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data, arguments passed to boot executable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data, arguments passed to boot executable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"178\"/>\n        <source>Boot entry index</source>\n        <translation type=\"unfinished\">Boot entry index</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"184\"/>\n        <source>Index</source>\n        <translation type=\"unfinished\">Index</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"212\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"215\"/>\n        <source>Boot entry description</source>\n        <translation type=\"unfinished\">Boot entry description</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"107\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"110\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"116\"/>\n        <source>Optional data</source>\n        <translation type=\"unfinished\">Optional data</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootData</name>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"111\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"813\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1027\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1361\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1472\"/>\n        <source>%1: not found</source>\n        <translation type=\"unfinished\">%1: not found</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"120\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"821\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1387\"/>\n        <source>%1: failed deserialization</source>\n        <translation type=\"unfinished\">%1: failed deserialization</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Error loading entries</source>\n        <translation type=\"unfinished\">Error loading entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Failed to load some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation type=\"unfinished\">Failed to load some EFI Boot Manager entries:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Error saving entries</source>\n        <translation type=\"unfinished\">Error saving entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Entry %1(%2): duplicated index!</source>\n        <translation type=\"unfinished\">Entry %1(%2): duplicated index!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"389\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"419\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"458\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"479\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"487\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"516\"/>\n        <source>Error saving %1</source>\n        <translation type=\"unfinished\">Error saving %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"407\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"470\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"504\"/>\n        <source>Error removing %1</source>\n        <translation type=\"unfinished\">Error removing %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Error importing boot configuration</source>\n        <translation type=\"unfinished\">Error importing boot configuration</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <source>Couldn&apos;t open selected file (%1).</source>\n        <translation type=\"unfinished\">Couldn&apos;t open selected file (%1).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <source>Parser failed: %1</source>\n        <translation type=\"unfinished\">Parser failed: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <source>Invalid _Type: %1</source>\n        <translation type=\"unfinished\">Invalid _Type: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <source>Error exporting boot configuration</source>\n        <translation type=\"unfinished\">Error exporting boot configuration</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <source>Couldn&apos;t open selected file (%1): %2.</source>\n        <translation type=\"unfinished\">Couldn&apos;t open selected file (%1): %2.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <source>Couldn&apos;t write into file (%1): %2.</source>\n        <translation type=\"unfinished\">Couldn&apos;t write into file (%1): %2.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Error dumping raw EFI data</source>\n        <translation type=\"unfinished\">Error dumping raw EFI data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Failed to dump some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation type=\"unfinished\">Failed to dump some EFI Boot Manager entries:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"905\"/>\n        <source>Timeout</source>\n        <translation type=\"unfinished\">Timeout</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"921\"/>\n        <source>Apple boot-args</source>\n        <translation type=\"unfinished\">Apple boot-args</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"937\"/>\n        <source>Firmware actions</source>\n        <translation type=\"unfinished\">Firmware actions</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"73\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Loading EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"89\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"787\"/>\n        <source>Searching EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Searching EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"116\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"292\"/>\n        <source>Processing EFI Boot Manager entries (%1)…</source>\n        <translation type=\"unfinished\">Processing EFI Boot Manager entries (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"308\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Saving EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"333\"/>\n        <source>Searching old EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Searching old EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"374\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"416\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"447\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"476\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"484\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"491\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"513\"/>\n        <source>Saving EFI Boot Manager entries (%1)…</source>\n        <translation type=\"unfinished\">Saving EFI Boot Manager entries (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"467\"/>\n        <source>Removing old EFI Boot Manager entries (%1)…</source>\n        <translation type=\"unfinished\">Removing old EFI Boot Manager entries (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"404\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"501\"/>\n        <source>Removing EFI Boot Manager entries (%1)…</source>\n        <translation type=\"unfinished\">Removing EFI Boot Manager entries (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"94\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"338\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"792\"/>\n        <source>Couldn&apos;t load EFI Boot Manager variables</source>\n        <translation type=\"unfinished\">Couldn&apos;t load EFI Boot Manager variables</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"100\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"799\"/>\n        <source>Couldn&apos;t find any EFI Boot Manager variables</source>\n        <translation type=\"unfinished\">Couldn&apos;t find any EFI Boot Manager variables</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"529\"/>\n        <source>Importing boot configuration…</source>\n        <translation type=\"unfinished\">Importing boot configuration…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"565\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"770\"/>\n        <source>Exporting boot configuration…</source>\n        <translation type=\"unfinished\">Exporting boot configuration…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"587\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"809\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"875\"/>\n        <source>Exporting EFI Boot Manager entries (%1)…</source>\n        <translation type=\"unfinished\">Exporting EFI Boot Manager entries (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1013\"/>\n        <source>Importing boot configuration from JSON…</source>\n        <translation type=\"unfinished\">Importing boot configuration from JSON…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1032\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1366\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1477\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1531\"/>\n        <source>Importing EFI Boot Manager entries (%1)…</source>\n        <translation type=\"unfinished\">Importing EFI Boot Manager entries (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1035\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1376\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>%1: %2 expected</source>\n        <translation type=\"unfinished\">%1: %2 expected</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1043\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1048\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1053\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <source>number</source>\n        <translation type=\"unfinished\">number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1058\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1063\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1068\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1073\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1078\"/>\n        <source>bool</source>\n        <translation type=\"unfinished\">bool</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1109\"/>\n        <source>%1: unknown boot manager capability</source>\n        <translation type=\"unfinished\">%1: unknown boot manager capability</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1122\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1166\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1212\"/>\n        <source>array</source>\n        <translation type=\"unfinished\">array</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1333\"/>\n        <source>string</source>\n        <translation type=\"unfinished\">string</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1156\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1192\"/>\n        <source>%1: unknown os indication</source>\n        <translation type=\"unfinished\">%1: unknown os indication</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1083\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1235\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1264\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1290\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1309\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1328\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>object</source>\n        <translation type=\"unfinished\">object</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <source>hexadecimal number</source>\n        <translation type=\"unfinished\">hexadecimal number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1270\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1315\"/>\n        <source>%1: failed parsing</source>\n        <translation type=\"unfinished\">%1: failed parsing</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Failed to import some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation type=\"unfinished\">Failed to import some EFI Boot Manager entries:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1347\"/>\n        <source>Importing boot configuration from raw dump…</source>\n        <translation type=\"unfinished\">Importing boot configuration from raw dump…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1379\"/>\n        <source>object(raw_data: string, efi_attributes: number)</source>\n        <extracomment>Expected JSON structure, thrown as error description. raw_data and efi_attributes are field names in JSON file</extracomment>\n        <translation type=\"unfinished\">object(raw_data: string, efi_attributes: number)</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"15\"/>\n        <source>Boot</source>\n        <translation type=\"unfinished\">Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"16\"/>\n        <source>Driver</source>\n        <translation type=\"unfinished\">Driver</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"17\"/>\n        <source>System Preparation</source>\n        <translation type=\"unfinished\">System Preparation</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"18\"/>\n        <source>Platform Recovery</source>\n        <translation type=\"unfinished\">Platform Recovery</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditor</name>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"18\"/>\n        <source>EFI Boot Editor</source>\n        <translation type=\"unfinished\">EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"71\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"412\"/>\n        <source>Boot</source>\n        <translation type=\"unfinished\">Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"74\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"98\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"101\"/>\n        <source>Boot entries</source>\n        <translation type=\"unfinished\">Boot entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"77\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"104\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Boot entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Boot entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"133\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"415\"/>\n        <source>Driver</source>\n        <translation type=\"unfinished\">Driver</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"136\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"160\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"163\"/>\n        <source>Driver entries</source>\n        <translation type=\"unfinished\">Driver entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"139\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"166\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Driver entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Driver entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"195\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"418\"/>\n        <source>System Preparation</source>\n        <translation type=\"unfinished\">System Preparation</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"198\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"222\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"225\"/>\n        <source>SysPrep entries</source>\n        <translation type=\"unfinished\">SysPrep entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"201\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of SysPrep entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of SysPrep entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"257\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"421\"/>\n        <source>Platform Recovery</source>\n        <translation type=\"unfinished\">Platform Recovery</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"260\"/>\n        <source>PlatformRecovery entries</source>\n        <translation type=\"unfinished\">PlatformRecovery entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"263\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of PlatformRecovery entries (READONLY).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of PlatformRecovery entries (READONLY).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"284\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"287\"/>\n        <source>PlatformRecovery entries (READONLY)</source>\n        <translation type=\"unfinished\">PlatformRecovery entries (READONLY)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"346\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"349\"/>\n        <source>Add new entry</source>\n        <translation type=\"unfinished\">Add new entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"352\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to add new boot entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to add new boot entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"377\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"380\"/>\n        <source>Duplicate entry</source>\n        <translation type=\"unfinished\">Duplicate entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"383\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Duplicate entry&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Duplicate entry&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"408\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"411\"/>\n        <source>Remove entry</source>\n        <translation type=\"unfinished\">Remove entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"414\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to remove currently selected entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to remove currently selected entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"439\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"442\"/>\n        <source>Move entry up</source>\n        <translation type=\"unfinished\">Move entry up</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"445\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"470\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"473\"/>\n        <source>Move entry down</source>\n        <translation type=\"unfinished\">Move entry down</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"476\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"501\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"504\"/>\n        <source>Reorder entries</source>\n        <translation type=\"unfinished\">Reorder entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"507\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click here to adjust the order of all entries based on their position on the list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click here to adjust the order of all entries based on their position on the list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"599\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"608\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Global settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Global settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"602\"/>\n        <source>Global</source>\n        <translation type=\"unfinished\">Global</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"632\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"635\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"654\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"657\"/>\n        <source>Boot manager timeout</source>\n        <translation type=\"unfinished\">Boot manager timeout</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"638\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"660\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot manager timeout.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot manager timeout.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"663\"/>\n        <source>s</source>\n        <translation type=\"unfinished\">s</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"674\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"677\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"686\"/>\n        <source>Firmware details</source>\n        <translation type=\"unfinished\">Firmware details</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"680\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"689\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"683\"/>\n        <source>Firmware</source>\n        <translation type=\"unfinished\">Firmware</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"719\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"722\"/>\n        <source>Available firmware features</source>\n        <translation type=\"unfinished\">Available firmware features</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"725\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware features.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware features.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"728\"/>\n        <source>Features</source>\n        <translation type=\"unfinished\">Features</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"737\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"740\"/>\n        <source>Platform supports reporting of deferred capsule processing by creation of result variable</source>\n        <translation type=\"unfinished\">Platform supports reporting of deferred capsule processing by creation of result variable</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"743\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports reporting of deferred capsule processing by creation of result variable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports reporting of deferred capsule processing by creation of result variable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"746\"/>\n        <source>Capsule Reporting</source>\n        <translation type=\"unfinished\">Capsule Reporting</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"756\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"759\"/>\n        <source>Firmware supports timestamp based revocation</source>\n        <translation type=\"unfinished\">Firmware supports timestamp based revocation</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"762\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware supports timestamp based revocation.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware supports timestamp based revocation.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"765\"/>\n        <source>Timestamp based revocation</source>\n        <translation type=\"unfinished\">Timestamp based revocation</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"775\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"778\"/>\n        <source>Platform supports processing of Firmware Management Protocol update capsule</source>\n        <translation type=\"unfinished\">Platform supports processing of Firmware Management Protocol update capsule</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"781\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of Firmware Management Protocol update capsule.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of Firmware Management Protocol update capsule.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"784\"/>\n        <source>FMP Capsule</source>\n        <translation type=\"unfinished\">FMP Capsule</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"794\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"797\"/>\n        <source>Platform supports processing of file capsules</source>\n        <translation type=\"unfinished\">Platform supports processing of file capsules</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"800\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of file capsules.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of file capsules.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"803\"/>\n        <source>File Capsule</source>\n        <translation type=\"unfinished\">File Capsule</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"828\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"831\"/>\n        <source>Available firmware actions</source>\n        <translation type=\"unfinished\">Available firmware actions</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware actions.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware actions.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"837\"/>\n        <source>Actions</source>\n        <translation type=\"unfinished\">Actions</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"846\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"849\"/>\n        <source>Stop at a firmware user interface on the next boot</source>\n        <translation type=\"unfinished\">Stop at a firmware user interface on the next boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Stop at a firmware user interface on the next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Stop at a firmware user interface on the next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"855\"/>\n        <source>Boot to firmware UI</source>\n        <translation type=\"unfinished\">Boot to firmware UI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"862\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"865\"/>\n        <source>Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot</source>\n        <translation type=\"unfinished\">Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"871\"/>\n        <source>Collect current config</source>\n        <translation type=\"unfinished\">Collect current config</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"878\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"881\"/>\n        <source>Indicate that Platform-defined recovery should commence upon reboot</source>\n        <translation type=\"unfinished\">Indicate that Platform-defined recovery should commence upon reboot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"884\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that Platform-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that Platform-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"887\"/>\n        <source>Start Platform recovery</source>\n        <translation type=\"unfinished\">Start Platform recovery</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"894\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"897\"/>\n        <source>Indicate that OS-defined recovery should commence upon reboot</source>\n        <translation type=\"unfinished\">Indicate that OS-defined recovery should commence upon reboot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"900\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that OS-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that OS-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"903\"/>\n        <source>Start OS recovery</source>\n        <translation type=\"unfinished\">Start OS recovery</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"932\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"935\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"944\"/>\n        <source>Secure boot settings</source>\n        <translation type=\"unfinished\">Secure boot settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"938\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"947\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Secure boot settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Secure boot settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"941\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1025\"/>\n        <source>Secure Boot</source>\n        <translation type=\"unfinished\">Secure Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"978\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"981\"/>\n        <source>Defines whether the system is currently operating in Audit Mode</source>\n        <translation type=\"unfinished\">Defines whether the system is currently operating in Audit Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"984\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Audit Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Audit Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"987\"/>\n        <source>Audit Mode</source>\n        <translation type=\"unfinished\">Audit Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"997\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1000\"/>\n        <source>Defines whether the system is currently operating in Deployed Mode</source>\n        <translation type=\"unfinished\">Defines whether the system is currently operating in Deployed Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1003\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Deployed Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Deployed Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1006\"/>\n        <source>Deployed Mode</source>\n        <translation type=\"unfinished\">Deployed Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1016\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1019\"/>\n        <source>Defines whether the platform firmware is operating with Secure Boot enabled</source>\n        <translation type=\"unfinished\">Defines whether the platform firmware is operating with Secure Boot enabled</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1022\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the platform firmware is operating with Secure Boot enabled.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the platform firmware is operating with Secure Boot enabled.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1035\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1038\"/>\n        <source>Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables</source>\n        <translation type=\"unfinished\">Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1041\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1044\"/>\n        <source>Setup Mode</source>\n        <translation type=\"unfinished\">Setup Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1054\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1057\"/>\n        <source>Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys</source>\n        <translation type=\"unfinished\">Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1063\"/>\n        <source>Vendor Keys</source>\n        <translation type=\"unfinished\">Vendor Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1074\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1077\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1086\"/>\n        <source>Apple settings</source>\n        <translation type=\"unfinished\">Apple settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1080\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apple settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apple settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1083\"/>\n        <source>Apple</source>\n        <translation type=\"unfinished\">Apple</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1113\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1116\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1129\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1132\"/>\n        <source>macOS boot arguments</source>\n        <translation type=\"unfinished\">macOS boot arguments</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1119\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;macOS boot arguments.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;macOS boot arguments.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1161\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1164\"/>\n        <source>Undo stack</source>\n        <translation type=\"unfinished\">Undo stack</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1167\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo stack&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo stack&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1194\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1214\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Help menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Help menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1255\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Exit the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Exit the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1272\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apply changes to the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apply changes to the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1289\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reloads EFI data from the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reloads EFI data from the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1306\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Show information about the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Show information about the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1320\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Export current entries into JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Export current entries into JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1337\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Import EFI data from JSON dump.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Import EFI data from JSON dump.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1354\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dumps raw EFI data for debugging purposes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dumps raw EFI data for debugging purposes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1362\"/>\n        <source>&amp;Undo</source>\n        <translation type=\"unfinished\">&amp;Undo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1365\"/>\n        <source>Undo</source>\n        <translation type=\"unfinished\">Undo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1368\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1371\"/>\n        <source>Ctrl+Z</source>\n        <translation type=\"unfinished\">Ctrl+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1379\"/>\n        <source>&amp;Redo</source>\n        <translation type=\"unfinished\">&amp;Redo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1382\"/>\n        <source>Redo</source>\n        <translation type=\"unfinished\">Redo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1385\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Redo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Redo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1388\"/>\n        <source>Ctrl+Shift+Z</source>\n        <translation type=\"unfinished\">Ctrl+Shift+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1396\"/>\n        <source>Hot &amp;keys</source>\n        <translation type=\"unfinished\">Hot &amp;keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1399\"/>\n        <source>Hot Keys</source>\n        <translation type=\"unfinished\">Hot Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1402\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"593\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"596\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"605\"/>\n        <source>Global settings</source>\n        <translation type=\"unfinished\">Global settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"641\"/>\n        <source>Timeout</source>\n        <translation type=\"unfinished\">Timeout</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1122\"/>\n        <source>Boot args</source>\n        <translation type=\"unfinished\">Boot args</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1188\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1191\"/>\n        <source>File</source>\n        <translation type=\"unfinished\">File</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1197\"/>\n        <source>&amp;File</source>\n        <translation type=\"unfinished\">&amp;File</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1208\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1211\"/>\n        <source>Help</source>\n        <translation type=\"unfinished\">Help</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1217\"/>\n        <source>&amp;Help</source>\n        <translation type=\"unfinished\">&amp;Help</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1225\"/>\n        <source>&amp;Edit</source>\n        <translation type=\"unfinished\">&amp;Edit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1249\"/>\n        <source>&amp;Quit</source>\n        <translation type=\"unfinished\">&amp;Quit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1252\"/>\n        <source>Quit</source>\n        <translation type=\"unfinished\">Quit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1258\"/>\n        <source>Ctrl+Q</source>\n        <translation type=\"unfinished\">Ctrl+Q</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1266\"/>\n        <source>&amp;Save</source>\n        <translation type=\"unfinished\">&amp;Save</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1269\"/>\n        <source>Save</source>\n        <translation type=\"unfinished\">Save</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1275\"/>\n        <source>Ctrl+S</source>\n        <translation type=\"unfinished\">Ctrl+S</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1283\"/>\n        <source>&amp;Reload</source>\n        <translation type=\"unfinished\">&amp;Reload</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1286\"/>\n        <source>Reload</source>\n        <translation type=\"unfinished\">Reload</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1292\"/>\n        <source>Ctrl+R</source>\n        <translation type=\"unfinished\">Ctrl+R</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1300\"/>\n        <source>About &amp;EFI Boot Editor</source>\n        <translation type=\"unfinished\">About &amp;EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1303\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"29\"/>\n        <source>About EFI Boot Editor</source>\n        <translation type=\"unfinished\">About EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1314\"/>\n        <source>&amp;Export</source>\n        <translation type=\"unfinished\">&amp;Export</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1317\"/>\n        <source>Export</source>\n        <translation type=\"unfinished\">Export</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1323\"/>\n        <source>Ctrl+E</source>\n        <translation type=\"unfinished\">Ctrl+E</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1331\"/>\n        <source>&amp;Import</source>\n        <translation type=\"unfinished\">&amp;Import</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1334\"/>\n        <source>Import</source>\n        <translation type=\"unfinished\">Import</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1340\"/>\n        <source>Ctrl+I</source>\n        <translation type=\"unfinished\">Ctrl+I</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1348\"/>\n        <source>&amp;Dump raw EFI data</source>\n        <translation type=\"unfinished\">&amp;Dump raw EFI data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1351\"/>\n        <source>Dump raw EFI data</source>\n        <translation type=\"unfinished\">Dump raw EFI data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"26\"/>\n        <source>Working…</source>\n        <translation type=\"unfinished\">Working…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"92\"/>\n        <source>Undo %1</source>\n        <translation type=\"unfinished\">Undo %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"95\"/>\n        <source>Redo %1</source>\n        <translation type=\"unfinished\">Redo %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"137\"/>\n        <source>Are you sure you want to reload the entries?&lt;br/&gt;ALL of your changes will be lost!</source>\n        <translation type=\"unfinished\">Are you sure you want to reload the entries?&lt;br/&gt;ALL of your changes will be lost!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"162\"/>\n        <source>Are you sure you want to reorder the boot entries?&lt;br/&gt;All indexes will be overwritten!</source>\n        <translation type=\"unfinished\">Are you sure you want to reorder the boot entries?&lt;br/&gt;All indexes will be overwritten!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"221\"/>\n        <source>Are you sure you want to save?&lt;br/&gt;Your EFI configuration will be overwritten!</source>\n        <translation type=\"unfinished\">Are you sure you want to save?&lt;br/&gt;Your EFI configuration will be overwritten!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <source>Open boot configuration dump</source>\n        <translation type=\"unfinished\">Open boot configuration dump</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>JSON documents (*.json)</source>\n        <translation type=\"unfinished\">JSON documents (*.json)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <source>Save boot configuration dump</source>\n        <translation type=\"unfinished\">Save boot configuration dump</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>Save raw EFI dump</source>\n        <translation type=\"unfinished\">Save raw EFI dump</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"31\"/>\n        <source>&lt;h1&gt;EFI Boot Editor&lt;/h1&gt;&lt;p&gt;Version &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Boot Editor for (U)EFI based systems.&lt;/p&gt;</source>\n        <extracomment>About dialog</extracomment>\n        <translation type=\"unfinished\">&lt;h1&gt;EFI Boot Editor&lt;/h1&gt;&lt;p&gt;Version &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Boot Editor for (U)EFI based systems.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"45\"/>\n        <source>&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;Website&lt;/a&gt;&lt;/p&gt;&lt;p&gt;The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.&lt;/p&gt;&lt;p&gt;License: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL Version 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;On Linux uses &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; for EFI variables access.&lt;/p&gt;&lt;p&gt;Uses Tango Icons as fallback icons.&lt;/p&gt;</source>\n        <extracomment>About dialog details</extracomment>\n        <translation type=\"unfinished\">&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;Website&lt;/a&gt;&lt;/p&gt;&lt;p&gt;The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.&lt;/p&gt;&lt;p&gt;License: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL Version 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;On Linux uses &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; for EFI variables access.&lt;/p&gt;&lt;p&gt;Uses Tango Icons as fallback icons.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"330\"/>\n        <source>Reorder %1 entries</source>\n        <translation type=\"unfinished\">Reorder %1 entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"453\"/>\n        <source>Are you sure you want to quit?</source>\n        <translation type=\"unfinished\">Are you sure you want to quit?</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"123\"/>\n        <source>EFI support required</source>\n        <translation type=\"unfinished\">EFI support required</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditorCLI</name>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"13\"/>\n        <source>Boot Editor for (U)EFI based systems.</source>\n        <translation type=\"unfinished\">Boot Editor for (U)EFI based systems.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <source>Export configuration.</source>\n        <translation type=\"unfinished\">Export configuration.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>FILE</source>\n        <translation type=\"unfinished\">FILE</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <source>Dump raw EFI data.</source>\n        <translation type=\"unfinished\">Dump raw EFI data.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>Import configuration from JSON (either from export or raw dump).</source>\n        <translation type=\"unfinished\">Import configuration from JSON (either from export or raw dump).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"19\"/>\n        <source>Force import, don&apos;t ask for confirmation.</source>\n        <translation type=\"unfinished\">Force import, don&apos;t ask for confirmation.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"26\"/>\n        <source>EFI support required</source>\n        <translation type=\"unfinished\">EFI support required</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"45\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Loading EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"47\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"57\"/>\n        <source>Exporting boot configuration…</source>\n        <translation type=\"unfinished\">Exporting boot configuration…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"67\"/>\n        <source>Importing boot configuration…</source>\n        <translation type=\"unfinished\">Importing boot configuration…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Loaded %0 %1 entries</source>\n        <translation type=\"unfinished\">Loaded %0 %1 entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <source>Boot</source>\n        <translation type=\"unfinished\">Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <source>Driver</source>\n        <translation type=\"unfinished\">Driver</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <source>System Preparation</source>\n        <translation type=\"unfinished\">System Preparation</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Hot Key</source>\n        <translation type=\"unfinished\">Hot Key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"78\"/>\n        <source>Are you sure you want to save?\nYour EFI configuration will be overwritten!</source>\n        <translation type=\"unfinished\">Are you sure you want to save?\nYour EFI configuration will be overwritten!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"86\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Saving EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"98\"/>\n        <source>ERROR: %0! %1</source>\n        <translation type=\"unfinished\">ERROR: %0! %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"114\"/>\n        <source>Finished</source>\n        <translation type=\"unfinished\">Finished</translation>\n    </message>\n</context>\n<context>\n    <name>EFIKeySequenceEdit</name>\n    <message>\n        <location filename=\"../src/efikeysequenceedit.cpp\" line=\"109\"/>\n        <source>Press hot key</source>\n        <translation type=\"unfinished\">Press hot key</translation>\n    </message>\n</context>\n<context>\n    <name>FilePathDialog</name>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"12\"/>\n        <source>File path editor</source>\n        <translation type=\"unfinished\">File path editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"47\"/>\n        <source>PCI</source>\n        <translation type=\"unfinished\">PCI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"80\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"86\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"196\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"202\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"218\"/>\n        <source>Function</source>\n        <translation type=\"unfinished\">Function</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"121\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"127\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"143\"/>\n        <source>Device</source>\n        <translation type=\"unfinished\">Device</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"721\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"727\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"742\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"835\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"841\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"856\"/>\n        <source>HID</source>\n        <translation type=\"unfinished\">HID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"761\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"767\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"782\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"896\"/>\n        <source>UID</source>\n        <translation type=\"unfinished\">UID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1813\"/>\n        <source>USB</source>\n        <translation type=\"unfinished\">USB</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1819\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1893\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1909\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3688\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3710\"/>\n        <source>Interface</source>\n        <translation type=\"unfinished\">Interface</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7442\"/>\n        <source>Vendor</source>\n        <translation type=\"unfinished\">Vendor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7445\"/>\n        <source>Vendor settings</source>\n        <translation type=\"unfinished\">Vendor settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7448\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1778\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1793\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5824\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6348\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7117\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7546\"/>\n        <source>GUID</source>\n        <translation type=\"unfinished\">GUID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5539\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7587\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7850\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7853\"/>\n        <source>Data format</source>\n        <translation type=\"unfinished\">Data format</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5542\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7590\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7856\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5546\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5869\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7860\"/>\n        <source>BASE64</source>\n        <translation type=\"unfinished\">BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1168\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5551\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5874\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7865\"/>\n        <source>UTF-16</source>\n        <translation type=\"unfinished\">UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1173\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5556\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7604\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7870\"/>\n        <source>UTF-8</source>\n        <translation type=\"unfinished\">UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5561\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7875\"/>\n        <source>HEX</source>\n        <translation type=\"unfinished\">HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5523\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5901\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7888\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7891\"/>\n        <source>Data</source>\n        <translation type=\"unfinished\">Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7894\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7565\"/>\n        <source>Vendor data</source>\n        <translation type=\"unfinished\">Vendor data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7481\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7757\"/>\n        <source>Type</source>\n        <translation type=\"unfinished\">Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7478\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7500\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7504\"/>\n        <source>HW</source>\n        <translation type=\"unfinished\">HW</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7509\"/>\n        <source>MSG</source>\n        <translation type=\"unfinished\">MSG</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7514\"/>\n        <source>MEDIA</source>\n        <translation type=\"unfinished\">MEDIA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2292\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2298\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2313\"/>\n        <source>MAC</source>\n        <translation type=\"unfinished\">MAC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2265\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;MAC settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;MAC settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2374\"/>\n        <source>IPv4</source>\n        <translation type=\"unfinished\">IPv4</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2380\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv4 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv4 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2569\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2591\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2925\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2931\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2947\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4110\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4116\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4132\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6616\"/>\n        <source>Protocol</source>\n        <translation type=\"unfinished\">Protocol</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3003\"/>\n        <source>Static</source>\n        <translation type=\"unfinished\">Static</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2692\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Subnet mask.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Subnet mask.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2730\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5479\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5486\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5503\"/>\n        <source>IPv6</source>\n        <translation type=\"unfinished\">IPv6</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2736\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv6 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv6 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3008\"/>\n        <source>Stateless auto-configuration</source>\n        <translation type=\"unfinished\">Stateless auto-configuration</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3013\"/>\n        <source>Stateful auto-configuration</source>\n        <translation type=\"unfinished\">Stateful auto-configuration</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3920\"/>\n        <source>SATA</source>\n        <translation type=\"unfinished\">SATA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SATA settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SATA settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1387\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1393\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1409\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1658\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1664\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1679\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3900\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4035\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4041\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4057\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4191\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4197\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4212\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4496\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4502\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4610\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4616\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4988\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5009\"/>\n        <source>LUN</source>\n        <translation type=\"unfinished\">LUN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4885\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4901\"/>\n        <source>URI</source>\n        <translation type=\"unfinished\">URI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6105\"/>\n        <source>Disk</source>\n        <translation type=\"unfinished\">Disk</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6102\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6123\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6126\"/>\n        <source>Choose disk</source>\n        <translation type=\"unfinished\">Choose disk</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6129\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Choose disk from discovered in the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Choose disk from discovered in the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6133\"/>\n        <source>Custom</source>\n        <translation type=\"unfinished\">Custom</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6147\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6150\"/>\n        <source>Reload drives</source>\n        <translation type=\"unfinished\">Reload drives</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reload system drives list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reload system drives list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6343\"/>\n        <source>MBR</source>\n        <translation type=\"unfinished\">MBR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6177\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6183\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6199\"/>\n        <source>Partition</source>\n        <translation type=\"unfinished\">Partition</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6720\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6741\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6797\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6812\"/>\n        <source>Name</source>\n        <translation type=\"unfinished\">Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7176\"/>\n        <source>BIOS Boot Specification</source>\n        <translation type=\"unfinished\">BIOS Boot Specification</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7405\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7411\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7427\"/>\n        <source>Description</source>\n        <translation type=\"unfinished\">Description</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7639\"/>\n        <source>End</source>\n        <translation type=\"unfinished\">End</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7669\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7672\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7678\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7797\"/>\n        <source>Sub-Type</source>\n        <translation type=\"unfinished\">Sub-Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7675\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7697\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7701\"/>\n        <source>End This Instance</source>\n        <translation type=\"unfinished\">End This Instance</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7706\"/>\n        <source>End Entire</source>\n        <translation type=\"unfinished\">End Entire</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7718\"/>\n        <source>Unknown</source>\n        <translation type=\"unfinished\">Unknown</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"50\"/>\n        <source>The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.</source>\n        <translation type=\"unfinished\">The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"53\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"77\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"99\"/>\n        <source>PCI Function Number.</source>\n        <translation type=\"unfinished\">PCI Function Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"83\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"105\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Function Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Function Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"118\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"140\"/>\n        <source>PCI Device Number.</source>\n        <translation type=\"unfinished\">PCI Device Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"124\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Device Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Device Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"163\"/>\n        <source>PCCARD</source>\n        <translation type=\"unfinished\">PCCARD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"166\"/>\n        <source>PCCARD Settings.</source>\n        <translation type=\"unfinished\">PCCARD Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCCARD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCCARD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"193\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"215\"/>\n        <source>Function Number (0 = First Function).</source>\n        <translation type=\"unfinished\">Function Number (0 = First Function).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"199\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"221\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Function Number (0 = First Function).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Function Number (0 = First Function).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"238\"/>\n        <source>Memory Mapped</source>\n        <translation type=\"unfinished\">Memory Mapped</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"241\"/>\n        <source>Memory Mapped Settings.</source>\n        <translation type=\"unfinished\">Memory Mapped Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Memory Mapped Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Memory Mapped Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"268\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"290\"/>\n        <source>The type of memory to allocate.</source>\n        <translation type=\"unfinished\">The type of memory to allocate.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"271\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"293\"/>\n        <source>Memory Type</source>\n        <translation type=\"unfinished\">Memory Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"274\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"296\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The type of memory to allocate.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The type of memory to allocate.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"300\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1584\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1738\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1753\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3145\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3160\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4416\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4437\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6868\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6883\"/>\n        <source>Reserved</source>\n        <translation type=\"unfinished\">Reserved</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"305\"/>\n        <source>Loader Code</source>\n        <translation type=\"unfinished\">Loader Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"310\"/>\n        <source>Loader Data</source>\n        <translation type=\"unfinished\">Loader Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"315\"/>\n        <source>Boot Services Code</source>\n        <translation type=\"unfinished\">Boot Services Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"320\"/>\n        <source>Boot Services Data</source>\n        <translation type=\"unfinished\">Boot Services Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"325\"/>\n        <source>Runtime Services Code</source>\n        <translation type=\"unfinished\">Runtime Services Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"330\"/>\n        <source>Runtime Services Data</source>\n        <translation type=\"unfinished\">Runtime Services Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"335\"/>\n        <source>Conventional</source>\n        <translation type=\"unfinished\">Conventional</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"340\"/>\n        <source>Unusable</source>\n        <translation type=\"unfinished\">Unusable</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"345\"/>\n        <source>ACPI Reclaim</source>\n        <translation type=\"unfinished\">ACPI Reclaim</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"350\"/>\n        <source>ACPI Memory NVS</source>\n        <translation type=\"unfinished\">ACPI Memory NVS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"355\"/>\n        <source>Memory Mapped IO</source>\n        <translation type=\"unfinished\">Memory Mapped IO</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"360\"/>\n        <source>Memory Mapped IO Port Space</source>\n        <translation type=\"unfinished\">Memory Mapped IO Port Space</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"365\"/>\n        <source>Pal Code</source>\n        <translation type=\"unfinished\">Pal Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"370\"/>\n        <source>Persistent</source>\n        <translation type=\"unfinished\">Persistent</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"375\"/>\n        <source>Unaccepted</source>\n        <translation type=\"unfinished\">Unaccepted</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"383\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7013\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7034\"/>\n        <source>Starting Memory Address.</source>\n        <translation type=\"unfinished\">Starting Memory Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"386\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"407\"/>\n        <source>Start Address</source>\n        <translation type=\"unfinished\">Start Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"389\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7019\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7040\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"423\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7053\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7074\"/>\n        <source>Ending Memory Address.</source>\n        <translation type=\"unfinished\">Ending Memory Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"426\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"432\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"447\"/>\n        <source>End Address</source>\n        <translation type=\"unfinished\">End Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"429\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7080\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ending Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ending Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"467\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"522\"/>\n        <source>Controller</source>\n        <translation type=\"unfinished\">Controller</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"470\"/>\n        <source>Controller settings.</source>\n        <translation type=\"unfinished\">Controller settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"473\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"519\"/>\n        <source>Controller number.</source>\n        <translation type=\"unfinished\">Controller number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"525\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"542\"/>\n        <source>BMC</source>\n        <translation type=\"unfinished\">BMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"545\"/>\n        <source>The Device Path for a Baseboard Management Controller (BMC) host interface.</source>\n        <translation type=\"unfinished\">The Device Path for a Baseboard Management Controller (BMC) host interface.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"548\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for a Baseboard Management Controller (BMC) host interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for a Baseboard Management Controller (BMC) host interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"602\"/>\n        <source>The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.</source>\n        <translation type=\"unfinished\">The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"579\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"589\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2332\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2354\"/>\n        <source>Interface Type</source>\n        <translation type=\"unfinished\">Interface Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"582\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"612\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"625\"/>\n        <source>Keyboard Controller Style</source>\n        <translation type=\"unfinished\">Keyboard Controller Style</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"630\"/>\n        <source>Server Management Interface Chip</source>\n        <translation type=\"unfinished\">Server Management Interface Chip</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"635\"/>\n        <source>Block Transfer</source>\n        <translation type=\"unfinished\">Block Transfer</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"643\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"664\"/>\n        <source>Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.</source>\n        <translation type=\"unfinished\">Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"667\"/>\n        <source>Base Address</source>\n        <translation type=\"unfinished\">Base Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"670\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"688\"/>\n        <source>ACPI</source>\n        <translation type=\"unfinished\">ACPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"805\"/>\n        <source>This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.</source>\n        <translation type=\"unfinished\">This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"808\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"718\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"739\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"832\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"853\"/>\n        <source>Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.</source>\n        <translation type=\"unfinished\">Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"724\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"745\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"838\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"859\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"779\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"872\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"893\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.</source>\n        <translation type=\"unfinished\">Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"764\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"785\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"899\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"802\"/>\n        <source>Expanded</source>\n        <translation type=\"unfinished\">Expanded</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"912\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"933\"/>\n        <source>Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.</source>\n        <translation type=\"unfinished\">Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"915\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"921\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"936\"/>\n        <source>CID</source>\n        <translation type=\"unfinished\">CID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"918\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"939\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"952\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"974\"/>\n        <source>Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.</source>\n        <translation type=\"unfinished\">Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"955\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"961\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"977\"/>\n        <source>HIDSTR</source>\n        <translation type=\"unfinished\">HIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"958\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"980\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"987\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1009\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.</source>\n        <translation type=\"unfinished\">Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"990\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"996\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1012\"/>\n        <source>UIDSTR</source>\n        <translation type=\"unfinished\">UIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"993\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1015\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1044\"/>\n        <source>Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.</source>\n        <translation type=\"unfinished\">Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1025\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1031\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1047\"/>\n        <source>CIDSTR</source>\n        <translation type=\"unfinished\">CIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1028\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1050\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1061\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1094\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1100\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1115\"/>\n        <source>ADR</source>\n        <translation type=\"unfinished\">ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1064\"/>\n        <source>The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.</source>\n        <translation type=\"unfinished\">The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1067\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1091\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1112\"/>\n        <source>ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required</source>\n        <translation type=\"unfinished\">ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1097\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1118\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1131\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1192\"/>\n        <source>This device path may optionally contain more than one ADR entry.</source>\n        <translation type=\"unfinished\">This device path may optionally contain more than one ADR entry.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1195\"/>\n        <source>Additional ADR</source>\n        <translation type=\"unfinished\">Additional ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1198\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path may optionally contain more than one ADR entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path may optionally contain more than one ADR entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1153\"/>\n        <source>Additional ADR format.</source>\n        <translation type=\"unfinished\">Additional ADR format.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1156\"/>\n        <source>Additional ADR format</source>\n        <translation type=\"unfinished\">Additional ADR format</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1159\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Additional ADR format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Additional ADR format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1209\"/>\n        <source>NVDIMM</source>\n        <translation type=\"unfinished\">NVDIMM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1212\"/>\n        <source>This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.</source>\n        <translation type=\"unfinished\">This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1260\"/>\n        <source>NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.</source>\n        <translation type=\"unfinished\">NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1242\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1248\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1263\"/>\n        <source>NFIT Device Handle</source>\n        <translation type=\"unfinished\">NFIT Device Handle</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1245\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1284\"/>\n        <source>ATAPI</source>\n        <translation type=\"unfinished\">ATAPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1287\"/>\n        <source>ATAPI Settings.</source>\n        <translation type=\"unfinished\">ATAPI Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1336\"/>\n        <source>Set to zero for primary or one for secondary.</source>\n        <translation type=\"unfinished\">Set to zero for primary or one for secondary.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1317\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1323\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1339\"/>\n        <source>Primary</source>\n        <translation type=\"unfinished\">Primary</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1320\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1342\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for primary or one for secondary.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for primary or one for secondary.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1349\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1371\"/>\n        <source>Set to zero for master or one for slave mode.</source>\n        <translation type=\"unfinished\">Set to zero for master or one for slave mode.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1374\"/>\n        <source>Slave</source>\n        <translation type=\"unfinished\">Slave</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1377\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for master or one for slave mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for master or one for slave mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1384\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1406\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4054\"/>\n        <source>Logical Unit Number.</source>\n        <translation type=\"unfinished\">Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1390\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1412\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4038\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1429\"/>\n        <source>SCSI</source>\n        <translation type=\"unfinished\">SCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1432\"/>\n        <source>SCSI Settings.</source>\n        <translation type=\"unfinished\">SCSI Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1435\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1481\"/>\n        <source>Target ID on the SCSI bus (PUN).</source>\n        <translation type=\"unfinished\">Target ID on the SCSI bus (PUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1962\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1984\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4969\"/>\n        <source>Target ID</source>\n        <translation type=\"unfinished\">Target ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1465\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1487\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the SCSI bus (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the SCSI bus (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4985\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5006\"/>\n        <source>Logical Unit Number (LUN).</source>\n        <translation type=\"unfinished\">Logical Unit Number (LUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5012\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1545\"/>\n        <source>Fibre Channel</source>\n        <translation type=\"unfinished\">Fibre Channel</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1548\"/>\n        <source>Fibre Channel Settings</source>\n        <translation type=\"unfinished\">Fibre Channel Settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1551\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1596\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1750\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4434\"/>\n        <source>Reserved.</source>\n        <translation type=\"unfinished\">Reserved.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1581\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1602\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1756\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3142\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4419\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1615\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1636\"/>\n        <source>Fibre Channel World Wide Name.</source>\n        <translation type=\"unfinished\">Fibre Channel World Wide Name.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1624\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1639\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4456\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4477\"/>\n        <source>World Wide Name</source>\n        <translation type=\"unfinished\">World Wide Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1621\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1642\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel World Wide Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel World Wide Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1676\"/>\n        <source>Fibre Channel Logical Unit Number.</source>\n        <translation type=\"unfinished\">Fibre Channel Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1661\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1682\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1699\"/>\n        <source>Firewire</source>\n        <translation type=\"unfinished\">Firewire</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1702\"/>\n        <source>Firewire Settings.</source>\n        <translation type=\"unfinished\">Firewire Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1705\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firewire Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firewire Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1790\"/>\n        <source>1394 Global Unique ID (GUID)</source>\n        <translation type=\"unfinished\">1394 Global Unique ID (GUID)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1796\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 Global Unique ID (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 Global Unique ID (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1816\"/>\n        <source>USB settings.</source>\n        <translation type=\"unfinished\">USB settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1865\"/>\n        <source>USB Parent Port Number.</source>\n        <translation type=\"unfinished\">USB Parent Port Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1852\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1868\"/>\n        <source>Parent Port</source>\n        <translation type=\"unfinished\">Parent Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1871\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Parent Port Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Parent Port Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1906\"/>\n        <source>USB Interface Number.</source>\n        <translation type=\"unfinished\">USB Interface Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1912\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1929\"/>\n        <source>I2O</source>\n        <translation type=\"unfinished\">I2O</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1932\"/>\n        <source>I2O Settings</source>\n        <translation type=\"unfinished\">I2O Settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1935\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;I2O Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;I2O Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1981\"/>\n        <source>Target ID (TID) for a device.</source>\n        <translation type=\"unfinished\">Target ID (TID) for a device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1965\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1987\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID (TID) for a device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID (TID) for a device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2004\"/>\n        <source>InfiniBand</source>\n        <translation type=\"unfinished\">InfiniBand</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2007\"/>\n        <source>InfiniBand Settings.</source>\n        <translation type=\"unfinished\">InfiniBand Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2010\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;InfiniBand Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;InfiniBand Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2034\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2067\"/>\n        <source>Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.</source>\n        <translation type=\"unfinished\">Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2043\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2055\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2076\"/>\n        <source>Resource Flags</source>\n        <translation type=\"unfinished\">Resource Flags</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2046\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2079\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2098\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2119\"/>\n        <source>128-bit Global Identifier for remote fabric port</source>\n        <translation type=\"unfinished\">128-bit Global Identifier for remote fabric port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2101\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2122\"/>\n        <source>PORT GID</source>\n        <translation type=\"unfinished\">PORT GID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2104\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2125\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;128-bit Global Identifier for remote fabric port&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;128-bit Global Identifier for remote fabric port&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2135\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2156\"/>\n        <source>64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)</source>\n        <translation type=\"unfinished\">64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2138\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2144\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2159\"/>\n        <source>IOC GUID/Service ID</source>\n        <translation type=\"unfinished\">IOC GUID/Service ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2141\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2162\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2175\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2196\"/>\n        <source>64-bit persistent ID of remote IOC port.</source>\n        <translation type=\"unfinished\">64-bit persistent ID of remote IOC port.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2184\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2199\"/>\n        <source>Target Port ID</source>\n        <translation type=\"unfinished\">Target Port ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2181\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote IOC port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote IOC port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2236\"/>\n        <source>64-bit persistent ID of remote device.</source>\n        <translation type=\"unfinished\">64-bit persistent ID of remote device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2239\"/>\n        <source>Device ID</source>\n        <translation type=\"unfinished\">Device ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2259\"/>\n        <source>MAC Address</source>\n        <translation type=\"unfinished\">MAC Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2262\"/>\n        <source>MAC settings.</source>\n        <translation type=\"unfinished\">MAC settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2289\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2310\"/>\n        <source>The MAC address for a network interface padded with 0s.</source>\n        <translation type=\"unfinished\">The MAC address for a network interface padded with 0s.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2295\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2316\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The MAC address for a network interface padded with 0s.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The MAC address for a network interface padded with 0s.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2329\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2351\"/>\n        <source>Network interface type (i.e., 802.3, FDDI). See RFC 3232.</source>\n        <translation type=\"unfinished\">Network interface type (i.e., 802.3, FDDI). See RFC 3232.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2357\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network interface type (i.e., 802.3, FDDI). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network interface type (i.e., 802.3, FDDI). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2377\"/>\n        <source>IPv4 settings.</source>\n        <translation type=\"unfinished\">IPv4 settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2425\"/>\n        <source>The local IPv4 address.</source>\n        <translation type=\"unfinished\">The local IPv4 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2407\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2763\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2784\"/>\n        <source>Local IP Address</source>\n        <translation type=\"unfinished\">Local IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2431\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2465\"/>\n        <source>The remote IPv4 address.</source>\n        <translation type=\"unfinished\">The remote IPv4 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2447\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2824\"/>\n        <source>Remote IP Address</source>\n        <translation type=\"unfinished\">Remote IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2471\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2862\"/>\n        <source>The local port number.</source>\n        <translation type=\"unfinished\">The local port number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2487\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2865\"/>\n        <source>Local Port</source>\n        <translation type=\"unfinished\">Local Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2490\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2547\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2903\"/>\n        <source>The remote port number.</source>\n        <translation type=\"unfinished\">The remote port number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2550\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2906\"/>\n        <source>Remote Port</source>\n        <translation type=\"unfinished\">Remote Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2553\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2909\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2566\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2588\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2922\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2944\"/>\n        <source>The network protocol (i.e., UDP, TCP). See RFC 3232.</source>\n        <translation type=\"unfinished\">The network protocol (i.e., UDP, TCP). See RFC 3232.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2928\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2950\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The network protocol (i.e., UDP, TCP). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The network protocol (i.e., UDP, TCP). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2631\"/>\n        <source>0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.</source>\n        <translation type=\"unfinished\">0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2635\"/>\n        <source>Static IP Address</source>\n        <translation type=\"unfinished\">Static IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2667\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3083\"/>\n        <source>The Gateway IP Address.</source>\n        <translation type=\"unfinished\">The Gateway IP Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3071\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3086\"/>\n        <source>Gateway IP Address</source>\n        <translation type=\"unfinished\">Gateway IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2673\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Gateway IP Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Gateway IP Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2686\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2707\"/>\n        <source>Subnet mask.</source>\n        <translation type=\"unfinished\">Subnet mask.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2689\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2695\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2710\"/>\n        <source>Subnet Mask</source>\n        <translation type=\"unfinished\">Subnet Mask</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2733\"/>\n        <source>IPv6 settings.</source>\n        <translation type=\"unfinished\">IPv6 settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2760\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2781\"/>\n        <source>The local IPv6 address.</source>\n        <translation type=\"unfinished\">The local IPv6 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2787\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2821\"/>\n        <source>The remote IPv6 address.</source>\n        <translation type=\"unfinished\">The remote IPv6 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2963\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2989\"/>\n        <source>0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.</source>\n        <translation type=\"unfinished\">0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2976\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2994\"/>\n        <source>IP Address Origin</source>\n        <translation type=\"unfinished\">IP Address Origin</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2971\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2997\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3021\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3043\"/>\n        <source>The Prefix Length.</source>\n        <translation type=\"unfinished\">The Prefix Length.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3024\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3030\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3046\"/>\n        <source>Prefix Length</source>\n        <translation type=\"unfinished\">Prefix Length</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3027\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3049\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Prefix Length.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Prefix Length.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3106\"/>\n        <source>UART</source>\n        <translation type=\"unfinished\">UART</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3109\"/>\n        <source>UART Settings.</source>\n        <translation type=\"unfinished\">UART Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3112\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3176\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3197\"/>\n        <source>The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.</source>\n        <translation type=\"unfinished\">The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3179\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3185\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3200\"/>\n        <source>Baud Rate</source>\n        <translation type=\"unfinished\">Baud Rate</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3182\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3203\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3216\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3238\"/>\n        <source>The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.</source>\n        <translation type=\"unfinished\">The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3219\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3225\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3241\"/>\n        <source>Data Bits</source>\n        <translation type=\"unfinished\">Data Bits</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3222\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3257\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3291\"/>\n        <source>The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.</source>\n        <translation type=\"unfinished\">The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3266\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3300\"/>\n        <source>Parity</source>\n        <translation type=\"unfinished\">Parity</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3303\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3313\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3394\"/>\n        <source>Default</source>\n        <translation type=\"unfinished\">Default</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3318\"/>\n        <source>No</source>\n        <translation type=\"unfinished\">No</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3323\"/>\n        <source>Even</source>\n        <translation type=\"unfinished\">Even</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3328\"/>\n        <source>Odd</source>\n        <translation type=\"unfinished\">Odd</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3333\"/>\n        <source>Mark</source>\n        <translation type=\"unfinished\">Mark</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3338\"/>\n        <source>Space</source>\n        <translation type=\"unfinished\">Space</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3346\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3376\"/>\n        <source>The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.</source>\n        <translation type=\"unfinished\">The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3353\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3363\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3383\"/>\n        <source>Stop Bits</source>\n        <translation type=\"unfinished\">Stop Bits</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3356\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3399\"/>\n        <source>1</source>\n        <translation type=\"unfinished\">1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3404\"/>\n        <source>1.5</source>\n        <translation type=\"unfinished\">1.5</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3409\"/>\n        <source>2</source>\n        <translation type=\"unfinished\">2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3421\"/>\n        <source>USB Class</source>\n        <translation type=\"unfinished\">USB Class</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3424\"/>\n        <source>USB Class Settings.</source>\n        <translation type=\"unfinished\">USB Class Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3427\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Class Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Class Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3451\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3472\"/>\n        <source>Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.</source>\n        <translation type=\"unfinished\">Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3454\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3460\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3475\"/>\n        <source>Vendor ID</source>\n        <translation type=\"unfinished\">Vendor ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3457\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3478\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3491\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3512\"/>\n        <source>Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.</source>\n        <translation type=\"unfinished\">Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3515\"/>\n        <source>Product ID</source>\n        <translation type=\"unfinished\">Product ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3518\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3552\"/>\n        <source>The class code assigned by the USB-IF. A value of 0xFF will match any class code.</source>\n        <translation type=\"unfinished\">The class code assigned by the USB-IF. A value of 0xFF will match any class code.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3540\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3555\"/>\n        <source>Device Class</source>\n        <translation type=\"unfinished\">Device Class</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3537\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3558\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The class code assigned by the USB-IF. A value of 0xFF will match any class code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The class code assigned by the USB-IF. A value of 0xFF will match any class code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3592\"/>\n        <source>The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.</source>\n        <translation type=\"unfinished\">The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3574\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3595\"/>\n        <source>Device Subclass</source>\n        <translation type=\"unfinished\">Device Subclass</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3632\"/>\n        <source>The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.</source>\n        <translation type=\"unfinished\">The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3635\"/>\n        <source>Device Protocol</source>\n        <translation type=\"unfinished\">Device Protocol</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3617\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3655\"/>\n        <source>USB WWID</source>\n        <translation type=\"unfinished\">USB WWID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3658\"/>\n        <source>This device path describes a USB device using its serial number.</source>\n        <translation type=\"unfinished\">This device path describes a USB device using its serial number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3661\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a USB device using its serial number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a USB device using its serial number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3685\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3707\"/>\n        <source>USB interface Number.</source>\n        <translation type=\"unfinished\">USB interface Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3747\"/>\n        <source>USB vendor id of the device.</source>\n        <translation type=\"unfinished\">USB vendor id of the device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3750\"/>\n        <source>Device Vendor Id</source>\n        <translation type=\"unfinished\">Device Vendor Id</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3753\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB vendor id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB vendor id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3787\"/>\n        <source>USB product id of the device.</source>\n        <translation type=\"unfinished\">USB product id of the device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3790\"/>\n        <source>Device Product Id</source>\n        <translation type=\"unfinished\">Device Product Id</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3793\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB product id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB product id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3828\"/>\n        <source>Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).</source>\n        <translation type=\"unfinished\">Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3815\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3831\"/>\n        <source>Serial Number</source>\n        <translation type=\"unfinished\">Serial Number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3812\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3845\"/>\n        <source>Device Logical Unit</source>\n        <translation type=\"unfinished\">Device Logical Unit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3848\"/>\n        <source>Device Logical Unit Settings.</source>\n        <translation type=\"unfinished\">Device Logical Unit Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3851\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device Logical Unit Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device Logical Unit Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3897\"/>\n        <source>Logical Unit Number for the interface.</source>\n        <translation type=\"unfinished\">Logical Unit Number for the interface.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3903\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number for the interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number for the interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3923\"/>\n        <source>SATA settings.</source>\n        <translation type=\"unfinished\">SATA settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3950\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3972\"/>\n        <source>The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.</source>\n        <translation type=\"unfinished\">The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3953\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3975\"/>\n        <source>HBA Port</source>\n        <translation type=\"unfinished\">HBA Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3956\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3978\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4013\"/>\n        <source>The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.</source>\n        <translation type=\"unfinished\">The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4000\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4016\"/>\n        <source>Port Multiplier Port</source>\n        <translation type=\"unfinished\">Port Multiplier Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3997\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4019\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4077\"/>\n        <source>iSCSI</source>\n        <translation type=\"unfinished\">iSCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4080\"/>\n        <source>iSCSI Settings.</source>\n        <translation type=\"unfinished\">iSCSI Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4083\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4129\"/>\n        <source>Network Protocol (0 = TCP, 1+ = reserved).</source>\n        <translation type=\"unfinished\">Network Protocol (0 = TCP, 1+ = reserved).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4113\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network Protocol (0 = TCP, 1+ = reserved).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network Protocol (0 = TCP, 1+ = reserved).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4148\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4169\"/>\n        <source>iSCSI Login Options.</source>\n        <translation type=\"unfinished\">iSCSI Login Options.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4151\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4172\"/>\n        <source>Options</source>\n        <translation type=\"unfinished\">Options</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4154\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4175\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Login Options.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Login Options.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4188\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4209\"/>\n        <source>8 byte array containing the iSCSI Logical Unit Number.</source>\n        <translation type=\"unfinished\">8 byte array containing the iSCSI Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4194\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing the iSCSI Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing the iSCSI Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4228\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4250\"/>\n        <source>iSCSI Target Portal group tag the initiator intends to establish a session with.</source>\n        <translation type=\"unfinished\">iSCSI Target Portal group tag the initiator intends to establish a session with.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4231\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4253\"/>\n        <source>Target Portal Group</source>\n        <translation type=\"unfinished\">Target Portal Group</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4234\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4256\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Target Portal group tag the initiator intends to establish a session with.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Target Portal group tag the initiator intends to establish a session with.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4291\"/>\n        <source>iSCSI NodeTarget Name.</source>\n        <translation type=\"unfinished\">iSCSI NodeTarget Name.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4272\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4294\"/>\n        <source>Target Name</source>\n        <translation type=\"unfinished\">Target Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4275\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4297\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI NodeTarget Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI NodeTarget Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4308\"/>\n        <source>VLAN</source>\n        <translation type=\"unfinished\">VLAN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4311\"/>\n        <source>VLAN Settings.</source>\n        <translation type=\"unfinished\">VLAN Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4314\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4360\"/>\n        <source>VLAN identifier (0-4094).</source>\n        <translation type=\"unfinished\">VLAN identifier (0-4094).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4341\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4347\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4363\"/>\n        <source>Vlan ID</source>\n        <translation type=\"unfinished\">Vlan ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4344\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4366\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN identifier (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN identifier (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4383\"/>\n        <source>Fibre Channel Ex</source>\n        <translation type=\"unfinished\">Fibre Channel Ex</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4386\"/>\n        <source>The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation type=\"unfinished\">The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4389\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4474\"/>\n        <source>8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).</source>\n        <translation type=\"unfinished\">8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4480\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4514\"/>\n        <source>8 byte array containing Fibre Channel Logical Unit Number.</source>\n        <translation type=\"unfinished\">8 byte array containing Fibre Channel Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4499\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4520\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4537\"/>\n        <source>SAS Extended Messaging</source>\n        <translation type=\"unfinished\">SAS Extended Messaging</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4540\"/>\n        <source>The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation type=\"unfinished\">The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4543\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4567\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4588\"/>\n        <source>8-byte array of the SAS Address for Serial Attached SCSI Target Port.</source>\n        <translation type=\"unfinished\">8-byte array of the SAS Address for Serial Attached SCSI Target Port.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4570\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4576\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4591\"/>\n        <source>SAS Address</source>\n        <translation type=\"unfinished\">SAS Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4573\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4594\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Address for Serial Attached SCSI Target Port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Address for Serial Attached SCSI Target Port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4628\"/>\n        <source>8-byte array of the SAS Logical Unit Number.</source>\n        <translation type=\"unfinished\">8-byte array of the SAS Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4613\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4634\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4647\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4668\"/>\n        <source>More Information about the device and its interconnect.</source>\n        <translation type=\"unfinished\">More Information about the device and its interconnect.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4650\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4656\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4671\"/>\n        <source>Device and Topology Info</source>\n        <translation type=\"unfinished\">Device and Topology Info</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4653\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4674\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;More Information about the device and its interconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;More Information about the device and its interconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4687\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4709\"/>\n        <source>Relative Target Port (RTP).</source>\n        <translation type=\"unfinished\">Relative Target Port (RTP).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4690\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4696\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4712\"/>\n        <source>Relative Target Port</source>\n        <translation type=\"unfinished\">Relative Target Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4715\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Relative Target Port (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Relative Target Port (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4732\"/>\n        <source>NVM Express NS</source>\n        <translation type=\"unfinished\">NVM Express NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4735\"/>\n        <source>NVM Express Namespace Settings.</source>\n        <translation type=\"unfinished\">NVM Express Namespace Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4738\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM Express Namespace Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM Express Namespace Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4783\"/>\n        <source>Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.</source>\n        <translation type=\"unfinished\">Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4765\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4771\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4786\"/>\n        <source>NSID</source>\n        <translation type=\"unfinished\">NSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4768\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4789\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4802\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4823\"/>\n        <source>This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.</source>\n        <translation type=\"unfinished\">This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4805\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4811\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4826\"/>\n        <source>EUI-64</source>\n        <translation type=\"unfinished\">EUI-64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4808\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4829\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4849\"/>\n        <source>Refer to RFC 3986 for details on the URI contents.</source>\n        <translation type=\"unfinished\">Refer to RFC 3986 for details on the URI contents.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Refer to RFC 3986 for details on the URI contents.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Refer to RFC 3986 for details on the URI contents.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4876\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4898\"/>\n        <source>Instance of the URI pursuant to RFC 3986.</source>\n        <translation type=\"unfinished\">Instance of the URI pursuant to RFC 3986.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4882\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Instance of the URI pursuant to RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Instance of the URI pursuant to RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4915\"/>\n        <source>UFS</source>\n        <translation type=\"unfinished\">UFS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4918\"/>\n        <source>UFS Settings.</source>\n        <translation type=\"unfinished\">UFS Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4966\"/>\n        <source>Target ID on the UFS interface (PUN).</source>\n        <translation type=\"unfinished\">Target ID on the UFS interface (PUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4972\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the UFS interface (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the UFS interface (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5029\"/>\n        <source>SD</source>\n        <translation type=\"unfinished\">SD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5032\"/>\n        <source>SD Settings.</source>\n        <translation type=\"unfinished\">SD Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5035\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5081\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5299\"/>\n        <source>Slot Number</source>\n        <translation type=\"unfinished\">Slot Number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5084\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5280\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5286\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5302\"/>\n        <source>Slot</source>\n        <translation type=\"unfinished\">Slot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5087\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5283\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5305\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Slot Number&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Slot Number&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5104\"/>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\">Bluetooth</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5107\"/>\n        <source>EFI Bluetooth Settings.</source>\n        <translation type=\"unfinished\">EFI Bluetooth Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5110\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI Bluetooth Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI Bluetooth Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5155\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5373\"/>\n        <source>48-bit Bluetooth device address.</source>\n        <translation type=\"unfinished\">48-bit Bluetooth device address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5143\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5158\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5361\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5376\"/>\n        <source>Device Address</source>\n        <translation type=\"unfinished\">Device Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5161\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5379\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-bit Bluetooth device address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-bit Bluetooth device address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5178\"/>\n        <source>Wi-Fi</source>\n        <translation type=\"unfinished\">Wi-Fi</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5181\"/>\n        <source>Wi-Fi Settings.</source>\n        <translation type=\"unfinished\">Wi-Fi Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5184\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wi-Fi Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wi-Fi Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5208\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5230\"/>\n        <source>SSID in octet string.</source>\n        <translation type=\"unfinished\">SSID in octet string.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5211\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5217\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5233\"/>\n        <source>SSID</source>\n        <translation type=\"unfinished\">SSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5214\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5236\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID in octet string.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID in octet string.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5247\"/>\n        <source>eMMC</source>\n        <translation type=\"unfinished\">eMMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5250\"/>\n        <source>Embedded Multi-Media Card Settings.</source>\n        <translation type=\"unfinished\">Embedded Multi-Media Card Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5253\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Embedded Multi-Media Card Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Embedded Multi-Media Card Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5322\"/>\n        <source>BluetoothLE</source>\n        <translation type=\"unfinished\">BluetoothLE</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5325\"/>\n        <source>EFI BluetoothLE Settings.</source>\n        <translation type=\"unfinished\">EFI BluetoothLE Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5328\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI BluetoothLE Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI BluetoothLE Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5416\"/>\n        <source>0x00 - Public Device Address.\n0x01 - Random Device Address.</source>\n        <translation type=\"unfinished\">0x00 - Public Device Address.\n0x01 - Random Device Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5396\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5403\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5420\"/>\n        <source>Address Type</source>\n        <translation type=\"unfinished\">Address Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5399\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5423\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Public Device Address.\n0x01 - Random Device Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Public Device Address.\n0x01 - Random Device Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5428\"/>\n        <source>Public</source>\n        <translation type=\"unfinished\">Public</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5433\"/>\n        <source>Random</source>\n        <translation type=\"unfinished\">Random</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5445\"/>\n        <source>DNS</source>\n        <translation type=\"unfinished\">DNS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5448\"/>\n        <source>DNS Settings.</source>\n        <translation type=\"unfinished\">DNS Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5451\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DNS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DNS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5499\"/>\n        <source>0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.</source>\n        <translation type=\"unfinished\">0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5482\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5506\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5514\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5575\"/>\n        <source>One or more instances of the DNS server address in EFI_IP_ADDRESS.</source>\n        <translation type=\"unfinished\">One or more instances of the DNS server address in EFI_IP_ADDRESS.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5520\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5581\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;One or more instances of the DNS server address in EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;One or more instances of the DNS server address in EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5536\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7584\"/>\n        <source>Data format.</source>\n        <translation type=\"unfinished\">Data format.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5592\"/>\n        <source>NVDIMM NS</source>\n        <translation type=\"unfinished\">NVDIMM NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5595\"/>\n        <source>This device path describes a bootable NVDIMM namespace that is defined by a namespace label.</source>\n        <translation type=\"unfinished\">This device path describes a bootable NVDIMM namespace that is defined by a namespace label.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVDIMM namespace that is defined by a namespace label.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVDIMM namespace that is defined by a namespace label.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5622\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5643\"/>\n        <source>Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.</source>\n        <translation type=\"unfinished\">Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5646\"/>\n        <source>UUID</source>\n        <translation type=\"unfinished\">UUID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5628\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5649\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5663\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5698\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5706\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5724\"/>\n        <source>REST Service</source>\n        <translation type=\"unfinished\">REST Service</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5666\"/>\n        <source>REST Service Settings.</source>\n        <translation type=\"unfinished\">REST Service Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5669\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;REST Service Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;REST Service Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5719\"/>\n        <source>0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.</source>\n        <translation type=\"unfinished\">0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5701\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5727\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5733\"/>\n        <source>Redfish</source>\n        <translation type=\"unfinished\">Redfish</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5738\"/>\n        <source>OData</source>\n        <translation type=\"unfinished\">OData</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5743\"/>\n        <source>Vendor specific</source>\n        <translation type=\"unfinished\">Vendor specific</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5775\"/>\n        <source>0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.</source>\n        <translation type=\"unfinished\">0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5755\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5779\"/>\n        <source>Access Mode</source>\n        <translation type=\"unfinished\">Access Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5782\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5787\"/>\n        <source>In-Band</source>\n        <translation type=\"unfinished\">In-Band</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5792\"/>\n        <source>Out-of-band</source>\n        <translation type=\"unfinished\">Out-of-band</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5821\"/>\n        <source>GUID of vendor specific REST service.</source>\n        <translation type=\"unfinished\">GUID of vendor specific REST service.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID of vendor specific REST service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID of vendor specific REST service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5898\"/>\n        <source>Vendor-defined data.</source>\n        <translation type=\"unfinished\">Vendor-defined data.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5915\"/>\n        <source>NVMe-oF NS</source>\n        <translation type=\"unfinished\">NVMe-oF NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5918\"/>\n        <source>This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.</source>\n        <translation type=\"unfinished\">This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5967\"/>\n        <source>Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.</source>\n        <translation type=\"unfinished\">Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5970\"/>\n        <source>NIDT</source>\n        <translation type=\"unfinished\">NIDT</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5973\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5986\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6007\"/>\n        <source>Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.</source>\n        <translation type=\"unfinished\">Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5989\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5995\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6010\"/>\n        <source>NID</source>\n        <translation type=\"unfinished\">NID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5992\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6013\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6023\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6045\"/>\n        <source>Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.</source>\n        <translation type=\"unfinished\">Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6026\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6048\"/>\n        <source>Subsystem NQN</source>\n        <translation type=\"unfinished\">Subsystem NQN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6029\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6051\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6066\"/>\n        <source>Hard Drive</source>\n        <translation type=\"unfinished\">Hard Drive</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6069\"/>\n        <source>The Hard Drive Media Device Path is used to represent a partition on a hard drive.</source>\n        <translation type=\"unfinished\">The Hard Drive Media Device Path is used to represent a partition on a hard drive.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6072\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Hard Drive Media Device Path is used to represent a partition on a hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Hard Drive Media Device Path is used to represent a partition on a hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6174\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6196\"/>\n        <source>Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].</source>\n        <translation type=\"unfinished\">Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6180\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6236\"/>\n        <source>Starting LBA of the partition on the hard drive.</source>\n        <translation type=\"unfinished\">Starting LBA of the partition on the hard drive.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6466\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6487\"/>\n        <source>Partition Start</source>\n        <translation type=\"unfinished\">Partition Start</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting LBA of the partition on the hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting LBA of the partition on the hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6255\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6276\"/>\n        <source>Size of the partition in units of Logical Blocks.</source>\n        <translation type=\"unfinished\">Size of the partition in units of Logical Blocks.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6258\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6264\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6279\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6527\"/>\n        <source>Partition Size</source>\n        <translation type=\"unfinished\">Partition Size</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6261\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6282\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Logical Blocks.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Logical Blocks.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6295\"/>\n        <source>Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation type=\"unfinished\">Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6301\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6310\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6367\"/>\n        <source>Partition Signature</source>\n        <translation type=\"unfinished\">Partition Signature</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6304\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6322\"/>\n        <source>PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.</source>\n        <translation type=\"unfinished\">PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6328\"/>\n        <source>Signature Type</source>\n        <translation type=\"unfinished\">Signature Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6331\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6338\"/>\n        <source>None</source>\n        <translation type=\"unfinished\">None</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6361\"/>\n        <source>Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation type=\"unfinished\">Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6370\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6392\"/>\n        <source>CD-ROM</source>\n        <translation type=\"unfinished\">CD-ROM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6395\"/>\n        <source>The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.</source>\n        <translation type=\"unfinished\">The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6398\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6444\"/>\n        <source>Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.</source>\n        <translation type=\"unfinished\">Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6425\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6431\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6447\"/>\n        <source>Boot Entry</source>\n        <translation type=\"unfinished\">Boot Entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6450\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6463\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6484\"/>\n        <source>Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.</source>\n        <translation type=\"unfinished\">Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6469\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6490\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6524\"/>\n        <source>Size of the partition in units of Blocks, also called Sectors.</source>\n        <translation type=\"unfinished\">Size of the partition in units of Blocks, also called Sectors.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6530\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Blocks, also called Sectors.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Blocks, also called Sectors.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6547\"/>\n        <source>File Path</source>\n        <translation type=\"unfinished\">File Path</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6550\"/>\n        <source>File Path settings.</source>\n        <translation type=\"unfinished\">File Path settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6553\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File Path settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File Path settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6599\"/>\n        <source>Path including directory and file names.</source>\n        <translation type=\"unfinished\">Path including directory and file names.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6586\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6602\"/>\n        <source>Path Name</source>\n        <translation type=\"unfinished\">Path Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6583\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6605\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Path including directory and file names.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Path including directory and file names.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6619\"/>\n        <source>The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.</source>\n        <translation type=\"unfinished\">The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6622\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6667\"/>\n        <source>The ID of the protocol.</source>\n        <translation type=\"unfinished\">The ID of the protocol.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6673\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ID of the protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ID of the protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6687\"/>\n        <source>Firmware File</source>\n        <translation type=\"unfinished\">Firmware File</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6690\"/>\n        <source>Describes a firmware file in a firmware volume.</source>\n        <translation type=\"unfinished\">Describes a firmware file in a firmware volume.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6693\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware file in a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware file in a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6717\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6738\"/>\n        <source>Firmware file name GUID.</source>\n        <translation type=\"unfinished\">Firmware file name GUID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6723\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6744\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware file name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware file name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6758\"/>\n        <source>Firmware Volume</source>\n        <translation type=\"unfinished\">Firmware Volume</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6761\"/>\n        <source>Describes a firmware volume.</source>\n        <translation type=\"unfinished\">Describes a firmware volume.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6764\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6809\"/>\n        <source>Firmware volume name GUID.</source>\n        <translation type=\"unfinished\">Firmware volume name GUID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware volume name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware volume name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6829\"/>\n        <source>Relative Offset Range</source>\n        <translation type=\"unfinished\">Relative Offset Range</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6832\"/>\n        <source>This device path node specifies a range of offsets relative to the first byte available on the device.</source>\n        <translation type=\"unfinished\">This device path node specifies a range of offsets relative to the first byte available on the device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6835\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path node specifies a range of offsets relative to the first byte available on the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path node specifies a range of offsets relative to the first byte available on the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6880\"/>\n        <source>Reserved for future use.</source>\n        <translation type=\"unfinished\">Reserved for future use.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6886\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved for future use.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved for future use.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6899\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6920\"/>\n        <source>Offset of the first byte, relative to the parent device node.</source>\n        <translation type=\"unfinished\">Offset of the first byte, relative to the parent device node.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6902\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6908\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6923\"/>\n        <source>Starting Offset</source>\n        <translation type=\"unfinished\">Starting Offset</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6905\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the first byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the first byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6939\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6960\"/>\n        <source>Offset of the last byte, relative to the parent device node.</source>\n        <translation type=\"unfinished\">Offset of the last byte, relative to the parent device node.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6942\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6963\"/>\n        <source>Ending Offset</source>\n        <translation type=\"unfinished\">Ending Offset</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6966\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the last byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the last byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6983\"/>\n        <source>RAM Disk</source>\n        <translation type=\"unfinished\">RAM Disk</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6986\"/>\n        <source>RAM Disk Settings.</source>\n        <translation type=\"unfinished\">RAM Disk Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6989\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7016\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7037\"/>\n        <source>Starting Address</source>\n        <translation type=\"unfinished\">Starting Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7056\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7077\"/>\n        <source>Ending Address</source>\n        <translation type=\"unfinished\">Ending Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7093\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7114\"/>\n        <source>GUID that defines the type of the RAM Disk.</source>\n        <translation type=\"unfinished\">GUID that defines the type of the RAM Disk.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7120\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID that defines the type of the RAM Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID that defines the type of the RAM Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7130\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7152\"/>\n        <source>RAM Disk instance number, if supported.</source>\n        <translation type=\"unfinished\">RAM Disk instance number, if supported.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7133\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7155\"/>\n        <source>Disk Instance</source>\n        <translation type=\"unfinished\">Disk Instance</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7158\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk instance number, if supported.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk instance number, if supported.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7179\"/>\n        <source>This Device Path is used to describe the booting of non-EFI-aware operating systems.</source>\n        <translation type=\"unfinished\">This Device Path is used to describe the booting of non-EFI-aware operating systems.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7182\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path is used to describe the booting of non-EFI-aware operating systems.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path is used to describe the booting of non-EFI-aware operating systems.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7206\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7249\"/>\n        <source>An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.</source>\n        <translation type=\"unfinished\">An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7220\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7263\"/>\n        <source>Device Type</source>\n        <translation type=\"unfinished\">Device Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7223\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7290\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7347\"/>\n        <source>Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero</source>\n        <translation type=\"unfinished\">Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7311\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7368\"/>\n        <source>Status Flag</source>\n        <translation type=\"unfinished\">Status Flag</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7371\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7402\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7424\"/>\n        <source>String that describes the boot device to a user.</source>\n        <translation type=\"unfinished\">String that describes the boot device to a user.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7408\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7430\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;String that describes the boot device to a user.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;String that describes the boot device to a user.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7543\"/>\n        <source>Vendor-assigned GUID that defines the data that follows.</source>\n        <translation type=\"unfinished\">Vendor-assigned GUID that defines the data that follows.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7549\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-assigned GUID that defines the data that follows.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-assigned GUID that defines the data that follows.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7562\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7622\"/>\n        <source>Vendor-defined variable size data.</source>\n        <translation type=\"unfinished\">Vendor-defined variable size data.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7568\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7628\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined variable size data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined variable size data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7642\"/>\n        <source>Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.</source>\n        <translation type=\"unfinished\">Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7645\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7721\"/>\n        <source>Unknown file path specifier settings</source>\n        <translation type=\"unfinished\">Unknown file path specifier settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7724\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown file path specifier settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown file path specifier settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7748\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7772\"/>\n        <source>Unknown Type</source>\n        <translation type=\"unfinished\">Unknown Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7754\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7775\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7812\"/>\n        <source>Unknown Sub-Type</source>\n        <translation type=\"unfinished\">Unknown Sub-Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7828\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7831\"/>\n        <source>Unknown data</source>\n        <translation type=\"unfinished\">Unknown data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/filepathdialog.cpp\" line=\"1569\"/>\n        <source>Couldn&apos;t change data format!</source>\n        <translation type=\"unfinished\">Couldn&apos;t change data format!</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeyListModel</name>\n    <message>\n        <location filename=\"../src/hotkeylistmodel.cpp\" line=\"100\"/>\n        <source>boot option</source>\n        <translation type=\"unfinished\">boot option</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Boot option</source>\n        <translation type=\"unfinished\">Boot option</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Hot key</source>\n        <translation type=\"unfinished\">Hot key</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Vendor data</source>\n        <translation type=\"unfinished\">Vendor data</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeysDialog</name>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"20\"/>\n        <source>Hot Keys editor</source>\n        <translation type=\"unfinished\">Hot Keys editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"41\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"44\"/>\n        <source>Hot Keys</source>\n        <translation type=\"unfinished\">Hot Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"47\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"125\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"128\"/>\n        <source>Index filter</source>\n        <translation type=\"unfinished\">Index filter</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"131\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Index filter&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Index filter&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"163\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"166\"/>\n        <source>Remove hot key</source>\n        <translation type=\"unfinished\">Remove hot key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"191\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"194\"/>\n        <source>Add hot key</source>\n        <translation type=\"unfinished\">Add hot key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"197\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <location filename=\"../include/commands.h\" line=\"21\"/>\n        <location filename=\"../include/commands.h\" line=\"66\"/>\n        <source>Change %1 to &quot;%2&quot;</source>\n        <translation type=\"unfinished\">Change %1 to &quot;%2&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"35\"/>\n        <source>Insert %1 entry &quot;%2&quot; at position %3</source>\n        <translation type=\"unfinished\">Insert %1 entry &quot;%2&quot; at position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"50\"/>\n        <source>Remove %1 entry &quot;%2&quot; from position %3</source>\n        <translation type=\"unfinished\">Remove %1 entry &quot;%2&quot; from position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"73\"/>\n        <location filename=\"../src/commands.cpp\" line=\"116\"/>\n        <source>Move %1 entry &quot;%2&quot; from position %3 to %4</source>\n        <translation type=\"unfinished\">Move %1 entry &quot;%2&quot; from position %3 to %4</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <location filename=\"../include/commands.h\" line=\"157\"/>\n        <location filename=\"../include/commands.h\" line=\"198\"/>\n        <source>Change %1 entry &quot;%2&quot; %3 to &quot;%4&quot;</source>\n        <translation type=\"unfinished\">Change %1 entry &quot;%2&quot; %3 to &quot;%4&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <source>Optional data</source>\n        <translation type=\"unfinished\">Optional data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"227\"/>\n        <source>Insert %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation type=\"unfinished\">Insert %1 entry &quot;%2&quot; file path at position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"242\"/>\n        <source>Remove %1 entry &quot;%2&quot; file path from position %3</source>\n        <translation type=\"unfinished\">Remove %1 entry &quot;%2&quot; file path from position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"257\"/>\n        <source>Set %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation type=\"unfinished\">Set %1 entry &quot;%2&quot; file path at position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <source>Insert %1 entry at position %2</source>\n        <translation type=\"unfinished\">Insert %1 entry at position %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>Key</source>\n        <translation type=\"unfinished\">Key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <source>Remove %1 entry from position %2</source>\n        <translation type=\"unfinished\">Remove %1 entry from position %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <location filename=\"../include/commands.h\" line=\"362\"/>\n        <location filename=\"../include/commands.h\" line=\"403\"/>\n        <source>Change %1 entry at position %2 %3 to &quot;%4&quot;</source>\n        <translation type=\"unfinished\">Change %1 entry at position %2 %3 to &quot;%4&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>keys</source>\n        <translation type=\"unfinished\">keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"293\"/>\n        <location filename=\"../src/commands.cpp\" line=\"333\"/>\n        <source>Move %1 entry &quot;%2&quot; file path from position %3 to %4</source>\n        <translation type=\"unfinished\">Move %1 entry &quot;%2&quot; file path from position %3 to %4</translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/efibooteditor_vi.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"vi\" sourcelanguage=\"en_US\">\n<context>\n    <name>BootEntryForm</name>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"169\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"172\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"182\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"185\"/>\n        <source>Description</source>\n        <translation>Tên hiển thị</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"198\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"201\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"204\"/>\n        <source>Path</source>\n        <translation>Đường dẫn</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"415\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"418\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"478\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"481\"/>\n        <source>Optional data</source>\n        <translation>Dữ liệu tùy chọn</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"421\"/>\n        <source>Optional</source>\n        <translation>Tùy chọn</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"434\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"437\"/>\n        <source>Optional data format</source>\n        <translation>Định dạng dữ liệu tùy chọn</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"6\"/>\n        <source>Boot entry form</source>\n        <translation type=\"unfinished\">Boot entry form</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"24\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"27\"/>\n        <source>Error</source>\n        <translation>Lỗi</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"40\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"43\"/>\n        <source>Error note</source>\n        <translation>Ghi chú lỗi</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"46\"/>\n        <source>This entry placeholder is shown here to indicate it&apos;s referenced in boot order. It won&apos;t be modified on save, just left as is.</source>\n        <translation>Mục giữ chỗ này hiển thị ở đây để cho biết nó được tham chiếu trong thứ tự khởi động. Nó sẽ không bị sửa đổi khi lưu, mà chỉ được giữ nguyên như cũ.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"147\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"150\"/>\n        <source>Hot Keys</source>\n        <translation>Phím nóng</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Phím nóng&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"188\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry description.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Mô tả mục khởi động.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"222\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"225\"/>\n        <source>Device path</source>\n        <translation>Đường dẫn thiết bị</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Đường dẫn thiết bị.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"280\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"283\"/>\n        <source>Move file path up</source>\n        <translation>Chuyển đường dẫn file lên trên</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"286\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Chuyển đường dẫn file lên trên.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"305\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"308\"/>\n        <source>Move file path down</source>\n        <translation>Chuyển đường dẫn file xuống dưới</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"311\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Chuyển đường dẫn file xuống dưới.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"330\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"333\"/>\n        <source>Remove file path</source>\n        <translation>Gỡ bỏ đường dẫn file</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"336\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Gỡ bỏ đường dẫn file.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"355\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"358\"/>\n        <source>Edit file path</source>\n        <translation>Chỉnh sửa đường dẫn file</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"361\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Edit file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Chỉnh sửa đường dẫn file.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"380\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"383\"/>\n        <source>Add file path</source>\n        <translation>Thêm đường dẫn file</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Thêm đường dẫn file.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Định dạng dữ liệu tùy chọn.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"444\"/>\n        <source>BASE64</source>\n        <translation type=\"unfinished\">BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"449\"/>\n        <source>UTF-16</source>\n        <translation type=\"unfinished\">UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"454\"/>\n        <source>UTF-8</source>\n        <translation type=\"unfinished\">UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"459\"/>\n        <source>HEX</source>\n        <translation type=\"unfinished\">HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"484\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry optional data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dữ liệu khởi động tùy chọn.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"497\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"500\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"503\"/>\n        <source>Attributes</source>\n        <translation>Thuộc tính</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"623\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry category.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Thể loại mục khởi động.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"122\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Mục chỉ số.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"540\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Is entry considered for automatic boot?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Mục này có được xem xét để khởi động tự động không?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"569\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hidden.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ẩn.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"585\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Force reconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Buộc kết nối lại.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"534\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"537\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"543\"/>\n        <source>Active</source>\n        <translation>Kích hoạt</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"579\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"582\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"588\"/>\n        <source>Force reconnect</source>\n        <translation>Buộc kết nối lại</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"563\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"566\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"572\"/>\n        <source>Hidden</source>\n        <translation>Ẩn</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"598\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"601\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"604\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"617\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"620\"/>\n        <source>Category</source>\n        <translation>Danh mục</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"627\"/>\n        <source>Boot</source>\n        <translation type=\"unfinished\">Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"632\"/>\n        <source>App</source>\n        <translation type=\"unfinished\">App</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"68\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"71\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"74\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"116\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"119\"/>\n        <source>Index</source>\n        <translation>Chỉ số</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentryform.cpp\" line=\"117\"/>\n        <source>Couldn&apos;t change optional data format!</source>\n        <translation>Không thể thay đổi định dạng dữ liệu tùy chọn!</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryListModel</name>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"88\"/>\n        <source>Set Next boot to &quot;%1&quot;</source>\n        <translation>Lần khởi động tiếp theo là &quot;%1&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"184\"/>\n        <source>index</source>\n        <translation>chỉ số</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"200\"/>\n        <source>description</source>\n        <translation>mô tả</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"237\"/>\n        <source>optional data</source>\n        <translation>dữ liệu tùy chọn</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"253\"/>\n        <source>attributes</source>\n        <translation>thuộc tính</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"269\"/>\n        <source>next boot</source>\n        <translation>khởi động tiếp theo</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryWidget</name>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"12\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"221\"/>\n        <source>Boot entry</source>\n        <translation>Mục khởi động</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"36\"/>\n        <source>Next boot</source>\n        <translation>Khởi động tiếp theo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"39\"/>\n        <source>Run at next boot</source>\n        <translation>Chạy ở lần khởi động tiếp theo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"42\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;When chosen, entry will run at next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Khi được chọn, mục này sẽ chạy ở lần khởi động tiếp theo.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"140\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"143\"/>\n        <source>Current boot</source>\n        <translation>Boot hiện tại</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This entry is currently booted.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Mục này hiện đang được khởi động.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"181\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Chỉ số mục khởi động.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"218\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry description, human readable name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dùng tên dễ đọc cho mô tả mục khởi động.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"67\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"70\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"76\"/>\n        <source>Device path</source>\n        <translation>Đường dẫn thiết bị</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"73\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Đường dẫn thiết bị.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"113\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data, arguments passed to boot executable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dữ liệu tùy chọn, các đối số được truyền cho tệp thực thi khởi động.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"178\"/>\n        <source>Boot entry index</source>\n        <translation>Chỉ số mục khởi động</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"184\"/>\n        <source>Index</source>\n        <translation>Chỉ số</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"212\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"215\"/>\n        <source>Boot entry description</source>\n        <translation>Mô tả mục khởi động</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"107\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"110\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"116\"/>\n        <source>Optional data</source>\n        <translation>Dữ liệu tùy chọn</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootData</name>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"111\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"813\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1027\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1361\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1472\"/>\n        <source>%1: not found</source>\n        <translation>không tìm thấy: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"120\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"821\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1387\"/>\n        <source>%1: failed deserialization</source>\n        <translation>lỗi giải tuần tự hóa: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Error loading entries</source>\n        <translation>Lỗi khi tải các mục</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Failed to load some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>Không tải được một số mục quản lý khởi động EFI:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Error saving entries</source>\n        <translation>Lỗi khi lưu các mục</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Entry %1(%2): duplicated index!</source>\n        <translation>Mục %1(%2): chỉ số bị trùng lặp!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"389\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"419\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"458\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"479\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"487\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"516\"/>\n        <source>Error saving %1</source>\n        <translation>Lỗi khi lưu %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"407\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"470\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"504\"/>\n        <source>Error removing %1</source>\n        <translation>Lỗi khi gỡ bỏ %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Error importing boot configuration</source>\n        <translation>Lỗi khi nhập cấu hình khởi động</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <source>Couldn&apos;t open selected file (%1).</source>\n        <translation>Không thể mở file đã chọn (%1).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <source>Parser failed: %1</source>\n        <translation>Bộ phân tích cú pháp lỗi: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <source>Invalid _Type: %1</source>\n        <translation>_Type không hợp lệ: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <source>Error exporting boot configuration</source>\n        <translation>Lỗi khi xuất cấu hình khởi động</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <source>Couldn&apos;t open selected file (%1): %2.</source>\n        <translation>Không thể mở tệp đã chọn (%1): %2.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <source>Couldn&apos;t write into file (%1): %2.</source>\n        <translation>Không thể ghi vào tệp (%1): %2.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Error dumping raw EFI data</source>\n        <translation>Lỗi khi trích xuất dữ liệu thô EFI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Failed to dump some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>Không trích xuất được một số mục quản lý khởi động EFI:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"905\"/>\n        <source>Timeout</source>\n        <translation>Thời gian chờ</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"921\"/>\n        <source>Apple boot-args</source>\n        <translation>Đối số khởi động của Apple</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"937\"/>\n        <source>Firmware actions</source>\n        <translation>Các hành động firmware</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"73\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation>Đang tải các mục quản lý khởi động EFI…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"89\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"787\"/>\n        <source>Searching EFI Boot Manager entries…</source>\n        <translation>Đang tìm kiếm các mục quản lý khởi động EFI…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"116\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"292\"/>\n        <source>Processing EFI Boot Manager entries (%1)…</source>\n        <translation>Đang xử lý các mục quản lý khởi động EFI (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"308\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation>Đang lưu các mục quản lý khởi động EFI…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"333\"/>\n        <source>Searching old EFI Boot Manager entries…</source>\n        <translation>Đang tìm kiếm các mục quản lý khởi động EFI cũ…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"374\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"416\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"447\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"476\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"484\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"491\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"513\"/>\n        <source>Saving EFI Boot Manager entries (%1)…</source>\n        <translation>Đang lưu các mục quản lý khởi động EFI (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"467\"/>\n        <source>Removing old EFI Boot Manager entries (%1)…</source>\n        <translation>Đang gỡ bỏ các mục quản lý khởi động EFI cũ (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"404\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"501\"/>\n        <source>Removing EFI Boot Manager entries (%1)…</source>\n        <translation>Đang gỡ bỏ các mục quản lý khởi động EFI (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"94\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"338\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"792\"/>\n        <source>Couldn&apos;t load EFI Boot Manager variables</source>\n        <translation>Không thể tải các biến quản lý khởi động EFI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"100\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"799\"/>\n        <source>Couldn&apos;t find any EFI Boot Manager variables</source>\n        <translation>Không tìm thấy bất kỳ biến quản lý khởi động EFI nào</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"529\"/>\n        <source>Importing boot configuration…</source>\n        <translation>Đang nhập cấu hình khởi động…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"565\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"770\"/>\n        <source>Exporting boot configuration…</source>\n        <translation>Đang xuất cấu hình khởi động…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"587\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"809\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"875\"/>\n        <source>Exporting EFI Boot Manager entries (%1)…</source>\n        <translation>Đang xuất các mục quản lý khởi động EFI (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1013\"/>\n        <source>Importing boot configuration from JSON…</source>\n        <translation>Đang nhập cấu hình khởi động từ JSON…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1032\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1366\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1477\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1531\"/>\n        <source>Importing EFI Boot Manager entries (%1)…</source>\n        <translation>Đang nhập các mục quản lý khởi động EFI (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1035\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1376\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>%1: %2 expected</source>\n        <translation>%1: dự kiến %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1043\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1048\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1053\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <source>number</source>\n        <translation>số</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1058\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1063\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1068\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1073\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1078\"/>\n        <source>bool</source>\n        <translation>boolean</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1109\"/>\n        <source>%1: unknown boot manager capability</source>\n        <translation>%1: khả năng quản lý khởi động không xác định</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1122\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1166\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1212\"/>\n        <source>array</source>\n        <translation>mảng</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1333\"/>\n        <source>string</source>\n        <translation>chuỗi</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1156\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1192\"/>\n        <source>%1: unknown os indication</source>\n        <translation>%1: chỉ dẫn hệ điều hành không xác định</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1083\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1235\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1264\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1290\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1309\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1328\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>object</source>\n        <translation>đối tượng</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <source>hexadecimal number</source>\n        <translation>số thập lục phân</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1270\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1315\"/>\n        <source>%1: failed parsing</source>\n        <translation>%1: lỗi phân tích cú pháp</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Failed to import some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>Không nhập được một số mục quản lý khởi động EFI:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1347\"/>\n        <source>Importing boot configuration from raw dump…</source>\n        <translation>Đang nhập cấu hình khởi động từ bản trích xuất thô…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1379\"/>\n        <source>object(raw_data: string, efi_attributes: number)</source>\n        <extracomment>Expected JSON structure, thrown as error description. raw_data and efi_attributes are field names in JSON file</extracomment>\n        <translation>đối tượng(dữ liệu_thô: chuỗi, thuộc_tính_efi: số)</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"15\"/>\n        <source>Boot</source>\n        <translation>Khởi động</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"16\"/>\n        <source>Driver</source>\n        <translation>Trình điều khiển</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"17\"/>\n        <source>System Preparation</source>\n        <translation>Chuẩn bị hệ thống</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"18\"/>\n        <source>Platform Recovery</source>\n        <translation>Phục hồi nền tảng</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditor</name>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"18\"/>\n        <source>EFI Boot Editor</source>\n        <translation>Trình chỉnh sửa khởi động EFI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"71\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"412\"/>\n        <source>Boot</source>\n        <translation>Các mục khởi động</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"74\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"98\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"101\"/>\n        <source>Boot entries</source>\n        <translation>Các mục khởi động</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"77\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"104\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Boot entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Danh sách các mục khởi động.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"133\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"415\"/>\n        <source>Driver</source>\n        <translation>Trình điều khiển</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"136\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"160\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"163\"/>\n        <source>Driver entries</source>\n        <translation>Các mục trình điều khiển</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"139\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"166\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Driver entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Danh sách các mục trình điều khiển.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"195\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"418\"/>\n        <source>System Preparation</source>\n        <translation>Chuẩn bị hệ thống</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"198\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"222\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"225\"/>\n        <source>SysPrep entries</source>\n        <translation>Các mục SysPrep</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"201\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of SysPrep entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Danh sách các mục SysPrep.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"257\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"421\"/>\n        <source>Platform Recovery</source>\n        <translation type=\"unfinished\">Platform Recovery</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"260\"/>\n        <source>PlatformRecovery entries</source>\n        <translation type=\"unfinished\">PlatformRecovery entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"263\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of PlatformRecovery entries (READONLY).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of PlatformRecovery entries (READONLY).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"284\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"287\"/>\n        <source>PlatformRecovery entries (READONLY)</source>\n        <translation type=\"unfinished\">PlatformRecovery entries (READONLY)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"346\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"349\"/>\n        <source>Add new entry</source>\n        <translation type=\"unfinished\">Add new entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"352\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to add new boot entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to add new boot entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"377\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"380\"/>\n        <source>Duplicate entry</source>\n        <translation type=\"unfinished\">Duplicate entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"383\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Duplicate entry&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Duplicate entry&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"408\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"411\"/>\n        <source>Remove entry</source>\n        <translation type=\"unfinished\">Remove entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"414\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to remove currently selected entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to remove currently selected entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"439\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"442\"/>\n        <source>Move entry up</source>\n        <translation type=\"unfinished\">Move entry up</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"445\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"470\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"473\"/>\n        <source>Move entry down</source>\n        <translation type=\"unfinished\">Move entry down</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"476\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"501\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"504\"/>\n        <source>Reorder entries</source>\n        <translation type=\"unfinished\">Reorder entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"507\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click here to adjust the order of all entries based on their position on the list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click here to adjust the order of all entries based on their position on the list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"599\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"608\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Global settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Global settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"602\"/>\n        <source>Global</source>\n        <translation type=\"unfinished\">Global</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"632\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"635\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"654\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"657\"/>\n        <source>Boot manager timeout</source>\n        <translation type=\"unfinished\">Boot manager timeout</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"638\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"660\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot manager timeout.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot manager timeout.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"663\"/>\n        <source>s</source>\n        <translation type=\"unfinished\">s</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"674\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"677\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"686\"/>\n        <source>Firmware details</source>\n        <translation type=\"unfinished\">Firmware details</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"680\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"689\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"683\"/>\n        <source>Firmware</source>\n        <translation type=\"unfinished\">Firmware</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"719\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"722\"/>\n        <source>Available firmware features</source>\n        <translation type=\"unfinished\">Available firmware features</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"725\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware features.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware features.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"728\"/>\n        <source>Features</source>\n        <translation type=\"unfinished\">Features</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"737\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"740\"/>\n        <source>Platform supports reporting of deferred capsule processing by creation of result variable</source>\n        <translation type=\"unfinished\">Platform supports reporting of deferred capsule processing by creation of result variable</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"743\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports reporting of deferred capsule processing by creation of result variable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports reporting of deferred capsule processing by creation of result variable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"746\"/>\n        <source>Capsule Reporting</source>\n        <translation type=\"unfinished\">Capsule Reporting</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"756\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"759\"/>\n        <source>Firmware supports timestamp based revocation</source>\n        <translation type=\"unfinished\">Firmware supports timestamp based revocation</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"762\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware supports timestamp based revocation.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware supports timestamp based revocation.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"765\"/>\n        <source>Timestamp based revocation</source>\n        <translation type=\"unfinished\">Timestamp based revocation</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"775\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"778\"/>\n        <source>Platform supports processing of Firmware Management Protocol update capsule</source>\n        <translation type=\"unfinished\">Platform supports processing of Firmware Management Protocol update capsule</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"781\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of Firmware Management Protocol update capsule.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of Firmware Management Protocol update capsule.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"784\"/>\n        <source>FMP Capsule</source>\n        <translation type=\"unfinished\">FMP Capsule</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"794\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"797\"/>\n        <source>Platform supports processing of file capsules</source>\n        <translation type=\"unfinished\">Platform supports processing of file capsules</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"800\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of file capsules.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of file capsules.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"803\"/>\n        <source>File Capsule</source>\n        <translation type=\"unfinished\">File Capsule</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"828\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"831\"/>\n        <source>Available firmware actions</source>\n        <translation type=\"unfinished\">Available firmware actions</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware actions.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware actions.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"837\"/>\n        <source>Actions</source>\n        <translation type=\"unfinished\">Actions</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"846\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"849\"/>\n        <source>Stop at a firmware user interface on the next boot</source>\n        <translation type=\"unfinished\">Stop at a firmware user interface on the next boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Stop at a firmware user interface on the next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Stop at a firmware user interface on the next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"855\"/>\n        <source>Boot to firmware UI</source>\n        <translation type=\"unfinished\">Boot to firmware UI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"862\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"865\"/>\n        <source>Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot</source>\n        <translation type=\"unfinished\">Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"871\"/>\n        <source>Collect current config</source>\n        <translation type=\"unfinished\">Collect current config</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"878\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"881\"/>\n        <source>Indicate that Platform-defined recovery should commence upon reboot</source>\n        <translation type=\"unfinished\">Indicate that Platform-defined recovery should commence upon reboot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"884\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that Platform-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that Platform-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"887\"/>\n        <source>Start Platform recovery</source>\n        <translation type=\"unfinished\">Start Platform recovery</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"894\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"897\"/>\n        <source>Indicate that OS-defined recovery should commence upon reboot</source>\n        <translation type=\"unfinished\">Indicate that OS-defined recovery should commence upon reboot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"900\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that OS-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that OS-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"903\"/>\n        <source>Start OS recovery</source>\n        <translation type=\"unfinished\">Start OS recovery</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"932\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"935\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"944\"/>\n        <source>Secure boot settings</source>\n        <translation type=\"unfinished\">Secure boot settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"938\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"947\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Secure boot settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Secure boot settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"941\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1025\"/>\n        <source>Secure Boot</source>\n        <translation type=\"unfinished\">Secure Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"978\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"981\"/>\n        <source>Defines whether the system is currently operating in Audit Mode</source>\n        <translation type=\"unfinished\">Defines whether the system is currently operating in Audit Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"984\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Audit Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Audit Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"987\"/>\n        <source>Audit Mode</source>\n        <translation type=\"unfinished\">Audit Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"997\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1000\"/>\n        <source>Defines whether the system is currently operating in Deployed Mode</source>\n        <translation type=\"unfinished\">Defines whether the system is currently operating in Deployed Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1003\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Deployed Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Deployed Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1006\"/>\n        <source>Deployed Mode</source>\n        <translation type=\"unfinished\">Deployed Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1016\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1019\"/>\n        <source>Defines whether the platform firmware is operating with Secure Boot enabled</source>\n        <translation type=\"unfinished\">Defines whether the platform firmware is operating with Secure Boot enabled</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1022\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the platform firmware is operating with Secure Boot enabled.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the platform firmware is operating with Secure Boot enabled.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1035\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1038\"/>\n        <source>Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables</source>\n        <translation type=\"unfinished\">Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1041\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1044\"/>\n        <source>Setup Mode</source>\n        <translation type=\"unfinished\">Setup Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1054\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1057\"/>\n        <source>Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys</source>\n        <translation type=\"unfinished\">Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1063\"/>\n        <source>Vendor Keys</source>\n        <translation type=\"unfinished\">Vendor Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1074\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1077\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1086\"/>\n        <source>Apple settings</source>\n        <translation type=\"unfinished\">Apple settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1080\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apple settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apple settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1083\"/>\n        <source>Apple</source>\n        <translation type=\"unfinished\">Apple</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1113\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1116\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1129\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1132\"/>\n        <source>macOS boot arguments</source>\n        <translation type=\"unfinished\">macOS boot arguments</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1119\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;macOS boot arguments.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;macOS boot arguments.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1161\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1164\"/>\n        <source>Undo stack</source>\n        <translation type=\"unfinished\">Undo stack</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1167\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo stack&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo stack&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1194\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1214\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Help menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Help menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1255\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Exit the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Exit the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1272\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apply changes to the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apply changes to the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1289\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reloads EFI data from the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reloads EFI data from the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1306\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Show information about the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Show information about the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1320\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Export current entries into JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Export current entries into JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1337\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Import EFI data from JSON dump.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Import EFI data from JSON dump.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1354\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dumps raw EFI data for debugging purposes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dumps raw EFI data for debugging purposes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1362\"/>\n        <source>&amp;Undo</source>\n        <translation type=\"unfinished\">&amp;Undo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1365\"/>\n        <source>Undo</source>\n        <translation type=\"unfinished\">Undo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1368\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1371\"/>\n        <source>Ctrl+Z</source>\n        <translation type=\"unfinished\">Ctrl+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1379\"/>\n        <source>&amp;Redo</source>\n        <translation type=\"unfinished\">&amp;Redo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1382\"/>\n        <source>Redo</source>\n        <translation type=\"unfinished\">Redo</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1385\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Redo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Redo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1388\"/>\n        <source>Ctrl+Shift+Z</source>\n        <translation type=\"unfinished\">Ctrl+Shift+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1396\"/>\n        <source>Hot &amp;keys</source>\n        <translation type=\"unfinished\">Hot &amp;keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1399\"/>\n        <source>Hot Keys</source>\n        <translation type=\"unfinished\">Hot Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1402\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"593\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"596\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"605\"/>\n        <source>Global settings</source>\n        <translation type=\"unfinished\">Global settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"641\"/>\n        <source>Timeout</source>\n        <translation type=\"unfinished\">Timeout</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1122\"/>\n        <source>Boot args</source>\n        <translation type=\"unfinished\">Boot args</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1188\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1191\"/>\n        <source>File</source>\n        <translation type=\"unfinished\">File</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1197\"/>\n        <source>&amp;File</source>\n        <translation type=\"unfinished\">&amp;File</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1208\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1211\"/>\n        <source>Help</source>\n        <translation type=\"unfinished\">Help</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1217\"/>\n        <source>&amp;Help</source>\n        <translation type=\"unfinished\">&amp;Help</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1225\"/>\n        <source>&amp;Edit</source>\n        <translation type=\"unfinished\">&amp;Edit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1249\"/>\n        <source>&amp;Quit</source>\n        <translation type=\"unfinished\">&amp;Quit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1252\"/>\n        <source>Quit</source>\n        <translation type=\"unfinished\">Quit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1258\"/>\n        <source>Ctrl+Q</source>\n        <translation type=\"unfinished\">Ctrl+Q</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1266\"/>\n        <source>&amp;Save</source>\n        <translation type=\"unfinished\">&amp;Save</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1269\"/>\n        <source>Save</source>\n        <translation type=\"unfinished\">Save</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1275\"/>\n        <source>Ctrl+S</source>\n        <translation type=\"unfinished\">Ctrl+S</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1283\"/>\n        <source>&amp;Reload</source>\n        <translation type=\"unfinished\">&amp;Reload</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1286\"/>\n        <source>Reload</source>\n        <translation type=\"unfinished\">Reload</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1292\"/>\n        <source>Ctrl+R</source>\n        <translation type=\"unfinished\">Ctrl+R</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1300\"/>\n        <source>About &amp;EFI Boot Editor</source>\n        <translation type=\"unfinished\">About &amp;EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1303\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"29\"/>\n        <source>About EFI Boot Editor</source>\n        <translation type=\"unfinished\">About EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1314\"/>\n        <source>&amp;Export</source>\n        <translation type=\"unfinished\">&amp;Export</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1317\"/>\n        <source>Export</source>\n        <translation type=\"unfinished\">Export</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1323\"/>\n        <source>Ctrl+E</source>\n        <translation type=\"unfinished\">Ctrl+E</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1331\"/>\n        <source>&amp;Import</source>\n        <translation type=\"unfinished\">&amp;Import</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1334\"/>\n        <source>Import</source>\n        <translation type=\"unfinished\">Import</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1340\"/>\n        <source>Ctrl+I</source>\n        <translation type=\"unfinished\">Ctrl+I</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1348\"/>\n        <source>&amp;Dump raw EFI data</source>\n        <translation type=\"unfinished\">&amp;Dump raw EFI data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1351\"/>\n        <source>Dump raw EFI data</source>\n        <translation type=\"unfinished\">Dump raw EFI data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"26\"/>\n        <source>Working…</source>\n        <translation type=\"unfinished\">Working…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"92\"/>\n        <source>Undo %1</source>\n        <translation type=\"unfinished\">Undo %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"95\"/>\n        <source>Redo %1</source>\n        <translation type=\"unfinished\">Redo %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"137\"/>\n        <source>Are you sure you want to reload the entries?&lt;br/&gt;ALL of your changes will be lost!</source>\n        <translation type=\"unfinished\">Are you sure you want to reload the entries?&lt;br/&gt;ALL of your changes will be lost!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"162\"/>\n        <source>Are you sure you want to reorder the boot entries?&lt;br/&gt;All indexes will be overwritten!</source>\n        <translation type=\"unfinished\">Are you sure you want to reorder the boot entries?&lt;br/&gt;All indexes will be overwritten!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"221\"/>\n        <source>Are you sure you want to save?&lt;br/&gt;Your EFI configuration will be overwritten!</source>\n        <translation type=\"unfinished\">Are you sure you want to save?&lt;br/&gt;Your EFI configuration will be overwritten!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <source>Open boot configuration dump</source>\n        <translation type=\"unfinished\">Open boot configuration dump</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>JSON documents (*.json)</source>\n        <translation type=\"unfinished\">JSON documents (*.json)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <source>Save boot configuration dump</source>\n        <translation type=\"unfinished\">Save boot configuration dump</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>Save raw EFI dump</source>\n        <translation type=\"unfinished\">Save raw EFI dump</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"31\"/>\n        <source>&lt;h1&gt;EFI Boot Editor&lt;/h1&gt;&lt;p&gt;Version &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Boot Editor for (U)EFI based systems.&lt;/p&gt;</source>\n        <extracomment>About dialog</extracomment>\n        <translation type=\"unfinished\">&lt;h1&gt;EFI Boot Editor&lt;/h1&gt;&lt;p&gt;Version &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Boot Editor for (U)EFI based systems.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"45\"/>\n        <source>&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;Website&lt;/a&gt;&lt;/p&gt;&lt;p&gt;The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.&lt;/p&gt;&lt;p&gt;License: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL Version 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;On Linux uses &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; for EFI variables access.&lt;/p&gt;&lt;p&gt;Uses Tango Icons as fallback icons.&lt;/p&gt;</source>\n        <extracomment>About dialog details</extracomment>\n        <translation type=\"unfinished\">&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;Website&lt;/a&gt;&lt;/p&gt;&lt;p&gt;The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.&lt;/p&gt;&lt;p&gt;License: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL Version 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;On Linux uses &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; for EFI variables access.&lt;/p&gt;&lt;p&gt;Uses Tango Icons as fallback icons.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"330\"/>\n        <source>Reorder %1 entries</source>\n        <translation type=\"unfinished\">Reorder %1 entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"453\"/>\n        <source>Are you sure you want to quit?</source>\n        <translation type=\"unfinished\">Are you sure you want to quit?</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"123\"/>\n        <source>EFI support required</source>\n        <translation type=\"unfinished\">EFI support required</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditorCLI</name>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"13\"/>\n        <source>Boot Editor for (U)EFI based systems.</source>\n        <translation type=\"unfinished\">Boot Editor for (U)EFI based systems.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <source>Export configuration.</source>\n        <translation type=\"unfinished\">Export configuration.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>FILE</source>\n        <translation type=\"unfinished\">FILE</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <source>Dump raw EFI data.</source>\n        <translation type=\"unfinished\">Dump raw EFI data.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>Import configuration from JSON (either from export or raw dump).</source>\n        <translation type=\"unfinished\">Import configuration from JSON (either from export or raw dump).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"19\"/>\n        <source>Force import, don&apos;t ask for confirmation.</source>\n        <translation type=\"unfinished\">Force import, don&apos;t ask for confirmation.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"26\"/>\n        <source>EFI support required</source>\n        <translation type=\"unfinished\">EFI support required</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"45\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Loading EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"47\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"57\"/>\n        <source>Exporting boot configuration…</source>\n        <translation type=\"unfinished\">Exporting boot configuration…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"67\"/>\n        <source>Importing boot configuration…</source>\n        <translation type=\"unfinished\">Importing boot configuration…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Loaded %0 %1 entries</source>\n        <translation type=\"unfinished\">Loaded %0 %1 entries</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <source>Boot</source>\n        <translation type=\"unfinished\">Boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <source>Driver</source>\n        <translation type=\"unfinished\">Driver</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <source>System Preparation</source>\n        <translation type=\"unfinished\">System Preparation</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Hot Key</source>\n        <translation type=\"unfinished\">Hot Key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"78\"/>\n        <source>Are you sure you want to save?\nYour EFI configuration will be overwritten!</source>\n        <translation type=\"unfinished\">Are you sure you want to save?\nYour EFI configuration will be overwritten!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"86\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Saving EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"98\"/>\n        <source>ERROR: %0! %1</source>\n        <translation type=\"unfinished\">ERROR: %0! %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"114\"/>\n        <source>Finished</source>\n        <translation type=\"unfinished\">Finished</translation>\n    </message>\n</context>\n<context>\n    <name>EFIKeySequenceEdit</name>\n    <message>\n        <location filename=\"../src/efikeysequenceedit.cpp\" line=\"109\"/>\n        <source>Press hot key</source>\n        <translation type=\"unfinished\">Press hot key</translation>\n    </message>\n</context>\n<context>\n    <name>FilePathDialog</name>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"12\"/>\n        <source>File path editor</source>\n        <translation type=\"unfinished\">File path editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"47\"/>\n        <source>PCI</source>\n        <translation type=\"unfinished\">PCI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"80\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"86\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"196\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"202\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"218\"/>\n        <source>Function</source>\n        <translation type=\"unfinished\">Function</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"121\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"127\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"143\"/>\n        <source>Device</source>\n        <translation type=\"unfinished\">Device</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"721\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"727\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"742\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"835\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"841\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"856\"/>\n        <source>HID</source>\n        <translation type=\"unfinished\">HID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"761\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"767\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"782\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"896\"/>\n        <source>UID</source>\n        <translation type=\"unfinished\">UID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1813\"/>\n        <source>USB</source>\n        <translation type=\"unfinished\">USB</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1819\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1893\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1909\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3688\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3710\"/>\n        <source>Interface</source>\n        <translation type=\"unfinished\">Interface</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7442\"/>\n        <source>Vendor</source>\n        <translation type=\"unfinished\">Vendor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7445\"/>\n        <source>Vendor settings</source>\n        <translation type=\"unfinished\">Vendor settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7448\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1778\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1793\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5824\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6348\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7117\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7546\"/>\n        <source>GUID</source>\n        <translation type=\"unfinished\">GUID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5539\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7587\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7850\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7853\"/>\n        <source>Data format</source>\n        <translation type=\"unfinished\">Data format</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5542\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7590\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7856\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5546\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5869\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7860\"/>\n        <source>BASE64</source>\n        <translation type=\"unfinished\">BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1168\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5551\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5874\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7865\"/>\n        <source>UTF-16</source>\n        <translation type=\"unfinished\">UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1173\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5556\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7604\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7870\"/>\n        <source>UTF-8</source>\n        <translation type=\"unfinished\">UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5561\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7875\"/>\n        <source>HEX</source>\n        <translation type=\"unfinished\">HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5523\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5901\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7888\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7891\"/>\n        <source>Data</source>\n        <translation type=\"unfinished\">Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7894\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7565\"/>\n        <source>Vendor data</source>\n        <translation type=\"unfinished\">Vendor data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7481\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7757\"/>\n        <source>Type</source>\n        <translation type=\"unfinished\">Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7478\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7500\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7504\"/>\n        <source>HW</source>\n        <translation type=\"unfinished\">HW</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7509\"/>\n        <source>MSG</source>\n        <translation type=\"unfinished\">MSG</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7514\"/>\n        <source>MEDIA</source>\n        <translation type=\"unfinished\">MEDIA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2292\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2298\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2313\"/>\n        <source>MAC</source>\n        <translation type=\"unfinished\">MAC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2265\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;MAC settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;MAC settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2374\"/>\n        <source>IPv4</source>\n        <translation type=\"unfinished\">IPv4</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2380\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv4 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv4 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2569\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2591\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2925\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2931\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2947\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4110\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4116\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4132\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6616\"/>\n        <source>Protocol</source>\n        <translation type=\"unfinished\">Protocol</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3003\"/>\n        <source>Static</source>\n        <translation type=\"unfinished\">Static</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2692\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Subnet mask.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Subnet mask.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2730\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5479\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5486\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5503\"/>\n        <source>IPv6</source>\n        <translation type=\"unfinished\">IPv6</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2736\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv6 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv6 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3008\"/>\n        <source>Stateless auto-configuration</source>\n        <translation type=\"unfinished\">Stateless auto-configuration</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3013\"/>\n        <source>Stateful auto-configuration</source>\n        <translation type=\"unfinished\">Stateful auto-configuration</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3920\"/>\n        <source>SATA</source>\n        <translation type=\"unfinished\">SATA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SATA settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SATA settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1387\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1393\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1409\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1658\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1664\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1679\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3900\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4035\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4041\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4057\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4191\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4197\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4212\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4496\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4502\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4610\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4616\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4988\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5009\"/>\n        <source>LUN</source>\n        <translation type=\"unfinished\">LUN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4885\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4901\"/>\n        <source>URI</source>\n        <translation type=\"unfinished\">URI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6105\"/>\n        <source>Disk</source>\n        <translation type=\"unfinished\">Disk</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6102\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6123\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6126\"/>\n        <source>Choose disk</source>\n        <translation type=\"unfinished\">Choose disk</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6129\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Choose disk from discovered in the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Choose disk from discovered in the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6133\"/>\n        <source>Custom</source>\n        <translation type=\"unfinished\">Custom</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6147\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6150\"/>\n        <source>Reload drives</source>\n        <translation type=\"unfinished\">Reload drives</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reload system drives list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reload system drives list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6343\"/>\n        <source>MBR</source>\n        <translation type=\"unfinished\">MBR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6177\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6183\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6199\"/>\n        <source>Partition</source>\n        <translation type=\"unfinished\">Partition</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6720\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6741\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6797\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6812\"/>\n        <source>Name</source>\n        <translation type=\"unfinished\">Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7176\"/>\n        <source>BIOS Boot Specification</source>\n        <translation type=\"unfinished\">BIOS Boot Specification</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7405\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7411\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7427\"/>\n        <source>Description</source>\n        <translation type=\"unfinished\">Description</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7639\"/>\n        <source>End</source>\n        <translation type=\"unfinished\">End</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7669\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7672\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7678\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7797\"/>\n        <source>Sub-Type</source>\n        <translation type=\"unfinished\">Sub-Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7675\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7697\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7701\"/>\n        <source>End This Instance</source>\n        <translation type=\"unfinished\">End This Instance</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7706\"/>\n        <source>End Entire</source>\n        <translation type=\"unfinished\">End Entire</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7718\"/>\n        <source>Unknown</source>\n        <translation type=\"unfinished\">Unknown</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"50\"/>\n        <source>The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.</source>\n        <translation type=\"unfinished\">The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"53\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"77\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"99\"/>\n        <source>PCI Function Number.</source>\n        <translation type=\"unfinished\">PCI Function Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"83\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"105\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Function Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Function Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"118\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"140\"/>\n        <source>PCI Device Number.</source>\n        <translation type=\"unfinished\">PCI Device Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"124\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Device Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Device Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"163\"/>\n        <source>PCCARD</source>\n        <translation type=\"unfinished\">PCCARD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"166\"/>\n        <source>PCCARD Settings.</source>\n        <translation type=\"unfinished\">PCCARD Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCCARD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCCARD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"193\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"215\"/>\n        <source>Function Number (0 = First Function).</source>\n        <translation type=\"unfinished\">Function Number (0 = First Function).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"199\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"221\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Function Number (0 = First Function).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Function Number (0 = First Function).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"238\"/>\n        <source>Memory Mapped</source>\n        <translation type=\"unfinished\">Memory Mapped</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"241\"/>\n        <source>Memory Mapped Settings.</source>\n        <translation type=\"unfinished\">Memory Mapped Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Memory Mapped Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Memory Mapped Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"268\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"290\"/>\n        <source>The type of memory to allocate.</source>\n        <translation type=\"unfinished\">The type of memory to allocate.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"271\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"293\"/>\n        <source>Memory Type</source>\n        <translation type=\"unfinished\">Memory Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"274\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"296\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The type of memory to allocate.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The type of memory to allocate.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"300\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1584\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1738\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1753\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3145\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3160\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4416\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4437\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6868\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6883\"/>\n        <source>Reserved</source>\n        <translation type=\"unfinished\">Reserved</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"305\"/>\n        <source>Loader Code</source>\n        <translation type=\"unfinished\">Loader Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"310\"/>\n        <source>Loader Data</source>\n        <translation type=\"unfinished\">Loader Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"315\"/>\n        <source>Boot Services Code</source>\n        <translation type=\"unfinished\">Boot Services Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"320\"/>\n        <source>Boot Services Data</source>\n        <translation type=\"unfinished\">Boot Services Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"325\"/>\n        <source>Runtime Services Code</source>\n        <translation type=\"unfinished\">Runtime Services Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"330\"/>\n        <source>Runtime Services Data</source>\n        <translation type=\"unfinished\">Runtime Services Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"335\"/>\n        <source>Conventional</source>\n        <translation type=\"unfinished\">Conventional</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"340\"/>\n        <source>Unusable</source>\n        <translation type=\"unfinished\">Unusable</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"345\"/>\n        <source>ACPI Reclaim</source>\n        <translation type=\"unfinished\">ACPI Reclaim</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"350\"/>\n        <source>ACPI Memory NVS</source>\n        <translation type=\"unfinished\">ACPI Memory NVS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"355\"/>\n        <source>Memory Mapped IO</source>\n        <translation type=\"unfinished\">Memory Mapped IO</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"360\"/>\n        <source>Memory Mapped IO Port Space</source>\n        <translation type=\"unfinished\">Memory Mapped IO Port Space</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"365\"/>\n        <source>Pal Code</source>\n        <translation type=\"unfinished\">Pal Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"370\"/>\n        <source>Persistent</source>\n        <translation type=\"unfinished\">Persistent</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"375\"/>\n        <source>Unaccepted</source>\n        <translation type=\"unfinished\">Unaccepted</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"383\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7013\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7034\"/>\n        <source>Starting Memory Address.</source>\n        <translation type=\"unfinished\">Starting Memory Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"386\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"407\"/>\n        <source>Start Address</source>\n        <translation type=\"unfinished\">Start Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"389\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7019\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7040\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"423\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7053\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7074\"/>\n        <source>Ending Memory Address.</source>\n        <translation type=\"unfinished\">Ending Memory Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"426\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"432\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"447\"/>\n        <source>End Address</source>\n        <translation type=\"unfinished\">End Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"429\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7080\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ending Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ending Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"467\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"522\"/>\n        <source>Controller</source>\n        <translation type=\"unfinished\">Controller</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"470\"/>\n        <source>Controller settings.</source>\n        <translation type=\"unfinished\">Controller settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"473\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"519\"/>\n        <source>Controller number.</source>\n        <translation type=\"unfinished\">Controller number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"525\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"542\"/>\n        <source>BMC</source>\n        <translation type=\"unfinished\">BMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"545\"/>\n        <source>The Device Path for a Baseboard Management Controller (BMC) host interface.</source>\n        <translation type=\"unfinished\">The Device Path for a Baseboard Management Controller (BMC) host interface.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"548\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for a Baseboard Management Controller (BMC) host interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for a Baseboard Management Controller (BMC) host interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"602\"/>\n        <source>The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.</source>\n        <translation type=\"unfinished\">The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"579\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"589\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2332\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2354\"/>\n        <source>Interface Type</source>\n        <translation type=\"unfinished\">Interface Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"582\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"612\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"625\"/>\n        <source>Keyboard Controller Style</source>\n        <translation type=\"unfinished\">Keyboard Controller Style</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"630\"/>\n        <source>Server Management Interface Chip</source>\n        <translation type=\"unfinished\">Server Management Interface Chip</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"635\"/>\n        <source>Block Transfer</source>\n        <translation type=\"unfinished\">Block Transfer</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"643\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"664\"/>\n        <source>Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.</source>\n        <translation type=\"unfinished\">Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"667\"/>\n        <source>Base Address</source>\n        <translation type=\"unfinished\">Base Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"670\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"688\"/>\n        <source>ACPI</source>\n        <translation type=\"unfinished\">ACPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"805\"/>\n        <source>This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.</source>\n        <translation type=\"unfinished\">This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"808\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"718\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"739\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"832\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"853\"/>\n        <source>Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.</source>\n        <translation type=\"unfinished\">Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"724\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"745\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"838\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"859\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"779\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"872\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"893\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.</source>\n        <translation type=\"unfinished\">Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"764\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"785\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"899\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"802\"/>\n        <source>Expanded</source>\n        <translation type=\"unfinished\">Expanded</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"912\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"933\"/>\n        <source>Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.</source>\n        <translation type=\"unfinished\">Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"915\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"921\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"936\"/>\n        <source>CID</source>\n        <translation type=\"unfinished\">CID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"918\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"939\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"952\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"974\"/>\n        <source>Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.</source>\n        <translation type=\"unfinished\">Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"955\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"961\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"977\"/>\n        <source>HIDSTR</source>\n        <translation type=\"unfinished\">HIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"958\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"980\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"987\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1009\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.</source>\n        <translation type=\"unfinished\">Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"990\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"996\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1012\"/>\n        <source>UIDSTR</source>\n        <translation type=\"unfinished\">UIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"993\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1015\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1044\"/>\n        <source>Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.</source>\n        <translation type=\"unfinished\">Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1025\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1031\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1047\"/>\n        <source>CIDSTR</source>\n        <translation type=\"unfinished\">CIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1028\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1050\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1061\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1094\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1100\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1115\"/>\n        <source>ADR</source>\n        <translation type=\"unfinished\">ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1064\"/>\n        <source>The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.</source>\n        <translation type=\"unfinished\">The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1067\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1091\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1112\"/>\n        <source>ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required</source>\n        <translation type=\"unfinished\">ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1097\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1118\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1131\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1192\"/>\n        <source>This device path may optionally contain more than one ADR entry.</source>\n        <translation type=\"unfinished\">This device path may optionally contain more than one ADR entry.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1195\"/>\n        <source>Additional ADR</source>\n        <translation type=\"unfinished\">Additional ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1198\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path may optionally contain more than one ADR entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path may optionally contain more than one ADR entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1153\"/>\n        <source>Additional ADR format.</source>\n        <translation type=\"unfinished\">Additional ADR format.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1156\"/>\n        <source>Additional ADR format</source>\n        <translation type=\"unfinished\">Additional ADR format</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1159\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Additional ADR format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Additional ADR format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1209\"/>\n        <source>NVDIMM</source>\n        <translation type=\"unfinished\">NVDIMM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1212\"/>\n        <source>This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.</source>\n        <translation type=\"unfinished\">This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1260\"/>\n        <source>NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.</source>\n        <translation type=\"unfinished\">NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1242\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1248\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1263\"/>\n        <source>NFIT Device Handle</source>\n        <translation type=\"unfinished\">NFIT Device Handle</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1245\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1284\"/>\n        <source>ATAPI</source>\n        <translation type=\"unfinished\">ATAPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1287\"/>\n        <source>ATAPI Settings.</source>\n        <translation type=\"unfinished\">ATAPI Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1336\"/>\n        <source>Set to zero for primary or one for secondary.</source>\n        <translation type=\"unfinished\">Set to zero for primary or one for secondary.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1317\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1323\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1339\"/>\n        <source>Primary</source>\n        <translation type=\"unfinished\">Primary</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1320\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1342\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for primary or one for secondary.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for primary or one for secondary.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1349\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1371\"/>\n        <source>Set to zero for master or one for slave mode.</source>\n        <translation type=\"unfinished\">Set to zero for master or one for slave mode.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1374\"/>\n        <source>Slave</source>\n        <translation type=\"unfinished\">Slave</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1377\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for master or one for slave mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for master or one for slave mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1384\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1406\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4054\"/>\n        <source>Logical Unit Number.</source>\n        <translation type=\"unfinished\">Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1390\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1412\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4038\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1429\"/>\n        <source>SCSI</source>\n        <translation type=\"unfinished\">SCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1432\"/>\n        <source>SCSI Settings.</source>\n        <translation type=\"unfinished\">SCSI Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1435\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1481\"/>\n        <source>Target ID on the SCSI bus (PUN).</source>\n        <translation type=\"unfinished\">Target ID on the SCSI bus (PUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1962\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1984\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4969\"/>\n        <source>Target ID</source>\n        <translation type=\"unfinished\">Target ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1465\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1487\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the SCSI bus (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the SCSI bus (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4985\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5006\"/>\n        <source>Logical Unit Number (LUN).</source>\n        <translation type=\"unfinished\">Logical Unit Number (LUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5012\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1545\"/>\n        <source>Fibre Channel</source>\n        <translation type=\"unfinished\">Fibre Channel</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1548\"/>\n        <source>Fibre Channel Settings</source>\n        <translation type=\"unfinished\">Fibre Channel Settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1551\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1596\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1750\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4434\"/>\n        <source>Reserved.</source>\n        <translation type=\"unfinished\">Reserved.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1581\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1602\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1756\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3142\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4419\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1615\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1636\"/>\n        <source>Fibre Channel World Wide Name.</source>\n        <translation type=\"unfinished\">Fibre Channel World Wide Name.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1624\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1639\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4456\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4477\"/>\n        <source>World Wide Name</source>\n        <translation type=\"unfinished\">World Wide Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1621\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1642\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel World Wide Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel World Wide Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1676\"/>\n        <source>Fibre Channel Logical Unit Number.</source>\n        <translation type=\"unfinished\">Fibre Channel Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1661\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1682\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1699\"/>\n        <source>Firewire</source>\n        <translation type=\"unfinished\">Firewire</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1702\"/>\n        <source>Firewire Settings.</source>\n        <translation type=\"unfinished\">Firewire Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1705\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firewire Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firewire Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1790\"/>\n        <source>1394 Global Unique ID (GUID)</source>\n        <translation type=\"unfinished\">1394 Global Unique ID (GUID)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1796\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 Global Unique ID (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 Global Unique ID (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1816\"/>\n        <source>USB settings.</source>\n        <translation type=\"unfinished\">USB settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1865\"/>\n        <source>USB Parent Port Number.</source>\n        <translation type=\"unfinished\">USB Parent Port Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1852\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1868\"/>\n        <source>Parent Port</source>\n        <translation type=\"unfinished\">Parent Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1871\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Parent Port Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Parent Port Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1906\"/>\n        <source>USB Interface Number.</source>\n        <translation type=\"unfinished\">USB Interface Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1912\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1929\"/>\n        <source>I2O</source>\n        <translation type=\"unfinished\">I2O</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1932\"/>\n        <source>I2O Settings</source>\n        <translation type=\"unfinished\">I2O Settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1935\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;I2O Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;I2O Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1981\"/>\n        <source>Target ID (TID) for a device.</source>\n        <translation type=\"unfinished\">Target ID (TID) for a device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1965\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1987\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID (TID) for a device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID (TID) for a device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2004\"/>\n        <source>InfiniBand</source>\n        <translation type=\"unfinished\">InfiniBand</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2007\"/>\n        <source>InfiniBand Settings.</source>\n        <translation type=\"unfinished\">InfiniBand Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2010\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;InfiniBand Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;InfiniBand Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2034\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2067\"/>\n        <source>Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.</source>\n        <translation type=\"unfinished\">Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2043\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2055\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2076\"/>\n        <source>Resource Flags</source>\n        <translation type=\"unfinished\">Resource Flags</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2046\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2079\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2098\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2119\"/>\n        <source>128-bit Global Identifier for remote fabric port</source>\n        <translation type=\"unfinished\">128-bit Global Identifier for remote fabric port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2101\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2122\"/>\n        <source>PORT GID</source>\n        <translation type=\"unfinished\">PORT GID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2104\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2125\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;128-bit Global Identifier for remote fabric port&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;128-bit Global Identifier for remote fabric port&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2135\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2156\"/>\n        <source>64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)</source>\n        <translation type=\"unfinished\">64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2138\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2144\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2159\"/>\n        <source>IOC GUID/Service ID</source>\n        <translation type=\"unfinished\">IOC GUID/Service ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2141\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2162\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2175\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2196\"/>\n        <source>64-bit persistent ID of remote IOC port.</source>\n        <translation type=\"unfinished\">64-bit persistent ID of remote IOC port.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2184\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2199\"/>\n        <source>Target Port ID</source>\n        <translation type=\"unfinished\">Target Port ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2181\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote IOC port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote IOC port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2236\"/>\n        <source>64-bit persistent ID of remote device.</source>\n        <translation type=\"unfinished\">64-bit persistent ID of remote device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2239\"/>\n        <source>Device ID</source>\n        <translation type=\"unfinished\">Device ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2259\"/>\n        <source>MAC Address</source>\n        <translation type=\"unfinished\">MAC Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2262\"/>\n        <source>MAC settings.</source>\n        <translation type=\"unfinished\">MAC settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2289\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2310\"/>\n        <source>The MAC address for a network interface padded with 0s.</source>\n        <translation type=\"unfinished\">The MAC address for a network interface padded with 0s.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2295\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2316\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The MAC address for a network interface padded with 0s.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The MAC address for a network interface padded with 0s.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2329\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2351\"/>\n        <source>Network interface type (i.e., 802.3, FDDI). See RFC 3232.</source>\n        <translation type=\"unfinished\">Network interface type (i.e., 802.3, FDDI). See RFC 3232.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2357\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network interface type (i.e., 802.3, FDDI). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network interface type (i.e., 802.3, FDDI). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2377\"/>\n        <source>IPv4 settings.</source>\n        <translation type=\"unfinished\">IPv4 settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2425\"/>\n        <source>The local IPv4 address.</source>\n        <translation type=\"unfinished\">The local IPv4 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2407\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2763\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2784\"/>\n        <source>Local IP Address</source>\n        <translation type=\"unfinished\">Local IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2431\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2465\"/>\n        <source>The remote IPv4 address.</source>\n        <translation type=\"unfinished\">The remote IPv4 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2447\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2824\"/>\n        <source>Remote IP Address</source>\n        <translation type=\"unfinished\">Remote IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2471\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2862\"/>\n        <source>The local port number.</source>\n        <translation type=\"unfinished\">The local port number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2487\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2865\"/>\n        <source>Local Port</source>\n        <translation type=\"unfinished\">Local Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2490\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2547\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2903\"/>\n        <source>The remote port number.</source>\n        <translation type=\"unfinished\">The remote port number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2550\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2906\"/>\n        <source>Remote Port</source>\n        <translation type=\"unfinished\">Remote Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2553\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2909\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2566\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2588\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2922\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2944\"/>\n        <source>The network protocol (i.e., UDP, TCP). See RFC 3232.</source>\n        <translation type=\"unfinished\">The network protocol (i.e., UDP, TCP). See RFC 3232.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2928\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2950\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The network protocol (i.e., UDP, TCP). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The network protocol (i.e., UDP, TCP). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2631\"/>\n        <source>0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.</source>\n        <translation type=\"unfinished\">0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2635\"/>\n        <source>Static IP Address</source>\n        <translation type=\"unfinished\">Static IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2667\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3083\"/>\n        <source>The Gateway IP Address.</source>\n        <translation type=\"unfinished\">The Gateway IP Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3071\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3086\"/>\n        <source>Gateway IP Address</source>\n        <translation type=\"unfinished\">Gateway IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2673\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Gateway IP Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Gateway IP Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2686\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2707\"/>\n        <source>Subnet mask.</source>\n        <translation type=\"unfinished\">Subnet mask.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2689\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2695\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2710\"/>\n        <source>Subnet Mask</source>\n        <translation type=\"unfinished\">Subnet Mask</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2733\"/>\n        <source>IPv6 settings.</source>\n        <translation type=\"unfinished\">IPv6 settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2760\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2781\"/>\n        <source>The local IPv6 address.</source>\n        <translation type=\"unfinished\">The local IPv6 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2787\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2821\"/>\n        <source>The remote IPv6 address.</source>\n        <translation type=\"unfinished\">The remote IPv6 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2963\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2989\"/>\n        <source>0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.</source>\n        <translation type=\"unfinished\">0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2976\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2994\"/>\n        <source>IP Address Origin</source>\n        <translation type=\"unfinished\">IP Address Origin</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2971\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2997\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3021\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3043\"/>\n        <source>The Prefix Length.</source>\n        <translation type=\"unfinished\">The Prefix Length.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3024\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3030\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3046\"/>\n        <source>Prefix Length</source>\n        <translation type=\"unfinished\">Prefix Length</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3027\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3049\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Prefix Length.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Prefix Length.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3106\"/>\n        <source>UART</source>\n        <translation type=\"unfinished\">UART</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3109\"/>\n        <source>UART Settings.</source>\n        <translation type=\"unfinished\">UART Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3112\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3176\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3197\"/>\n        <source>The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.</source>\n        <translation type=\"unfinished\">The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3179\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3185\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3200\"/>\n        <source>Baud Rate</source>\n        <translation type=\"unfinished\">Baud Rate</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3182\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3203\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3216\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3238\"/>\n        <source>The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.</source>\n        <translation type=\"unfinished\">The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3219\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3225\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3241\"/>\n        <source>Data Bits</source>\n        <translation type=\"unfinished\">Data Bits</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3222\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3257\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3291\"/>\n        <source>The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.</source>\n        <translation type=\"unfinished\">The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3266\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3300\"/>\n        <source>Parity</source>\n        <translation type=\"unfinished\">Parity</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3303\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3313\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3394\"/>\n        <source>Default</source>\n        <translation type=\"unfinished\">Default</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3318\"/>\n        <source>No</source>\n        <translation type=\"unfinished\">No</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3323\"/>\n        <source>Even</source>\n        <translation type=\"unfinished\">Even</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3328\"/>\n        <source>Odd</source>\n        <translation type=\"unfinished\">Odd</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3333\"/>\n        <source>Mark</source>\n        <translation type=\"unfinished\">Mark</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3338\"/>\n        <source>Space</source>\n        <translation type=\"unfinished\">Space</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3346\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3376\"/>\n        <source>The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.</source>\n        <translation type=\"unfinished\">The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3353\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3363\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3383\"/>\n        <source>Stop Bits</source>\n        <translation type=\"unfinished\">Stop Bits</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3356\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3399\"/>\n        <source>1</source>\n        <translation type=\"unfinished\">1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3404\"/>\n        <source>1.5</source>\n        <translation type=\"unfinished\">1.5</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3409\"/>\n        <source>2</source>\n        <translation type=\"unfinished\">2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3421\"/>\n        <source>USB Class</source>\n        <translation type=\"unfinished\">USB Class</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3424\"/>\n        <source>USB Class Settings.</source>\n        <translation type=\"unfinished\">USB Class Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3427\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Class Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Class Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3451\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3472\"/>\n        <source>Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.</source>\n        <translation type=\"unfinished\">Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3454\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3460\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3475\"/>\n        <source>Vendor ID</source>\n        <translation type=\"unfinished\">Vendor ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3457\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3478\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3491\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3512\"/>\n        <source>Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.</source>\n        <translation type=\"unfinished\">Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3515\"/>\n        <source>Product ID</source>\n        <translation type=\"unfinished\">Product ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3518\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3552\"/>\n        <source>The class code assigned by the USB-IF. A value of 0xFF will match any class code.</source>\n        <translation type=\"unfinished\">The class code assigned by the USB-IF. A value of 0xFF will match any class code.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3540\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3555\"/>\n        <source>Device Class</source>\n        <translation type=\"unfinished\">Device Class</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3537\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3558\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The class code assigned by the USB-IF. A value of 0xFF will match any class code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The class code assigned by the USB-IF. A value of 0xFF will match any class code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3592\"/>\n        <source>The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.</source>\n        <translation type=\"unfinished\">The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3574\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3595\"/>\n        <source>Device Subclass</source>\n        <translation type=\"unfinished\">Device Subclass</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3632\"/>\n        <source>The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.</source>\n        <translation type=\"unfinished\">The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3635\"/>\n        <source>Device Protocol</source>\n        <translation type=\"unfinished\">Device Protocol</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3617\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3655\"/>\n        <source>USB WWID</source>\n        <translation type=\"unfinished\">USB WWID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3658\"/>\n        <source>This device path describes a USB device using its serial number.</source>\n        <translation type=\"unfinished\">This device path describes a USB device using its serial number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3661\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a USB device using its serial number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a USB device using its serial number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3685\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3707\"/>\n        <source>USB interface Number.</source>\n        <translation type=\"unfinished\">USB interface Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3747\"/>\n        <source>USB vendor id of the device.</source>\n        <translation type=\"unfinished\">USB vendor id of the device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3750\"/>\n        <source>Device Vendor Id</source>\n        <translation type=\"unfinished\">Device Vendor Id</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3753\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB vendor id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB vendor id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3787\"/>\n        <source>USB product id of the device.</source>\n        <translation type=\"unfinished\">USB product id of the device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3790\"/>\n        <source>Device Product Id</source>\n        <translation type=\"unfinished\">Device Product Id</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3793\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB product id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB product id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3828\"/>\n        <source>Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).</source>\n        <translation type=\"unfinished\">Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3815\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3831\"/>\n        <source>Serial Number</source>\n        <translation type=\"unfinished\">Serial Number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3812\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3845\"/>\n        <source>Device Logical Unit</source>\n        <translation type=\"unfinished\">Device Logical Unit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3848\"/>\n        <source>Device Logical Unit Settings.</source>\n        <translation type=\"unfinished\">Device Logical Unit Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3851\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device Logical Unit Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device Logical Unit Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3897\"/>\n        <source>Logical Unit Number for the interface.</source>\n        <translation type=\"unfinished\">Logical Unit Number for the interface.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3903\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number for the interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number for the interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3923\"/>\n        <source>SATA settings.</source>\n        <translation type=\"unfinished\">SATA settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3950\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3972\"/>\n        <source>The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.</source>\n        <translation type=\"unfinished\">The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3953\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3975\"/>\n        <source>HBA Port</source>\n        <translation type=\"unfinished\">HBA Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3956\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3978\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4013\"/>\n        <source>The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.</source>\n        <translation type=\"unfinished\">The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4000\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4016\"/>\n        <source>Port Multiplier Port</source>\n        <translation type=\"unfinished\">Port Multiplier Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3997\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4019\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4077\"/>\n        <source>iSCSI</source>\n        <translation type=\"unfinished\">iSCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4080\"/>\n        <source>iSCSI Settings.</source>\n        <translation type=\"unfinished\">iSCSI Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4083\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4129\"/>\n        <source>Network Protocol (0 = TCP, 1+ = reserved).</source>\n        <translation type=\"unfinished\">Network Protocol (0 = TCP, 1+ = reserved).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4113\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network Protocol (0 = TCP, 1+ = reserved).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network Protocol (0 = TCP, 1+ = reserved).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4148\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4169\"/>\n        <source>iSCSI Login Options.</source>\n        <translation type=\"unfinished\">iSCSI Login Options.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4151\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4172\"/>\n        <source>Options</source>\n        <translation type=\"unfinished\">Options</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4154\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4175\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Login Options.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Login Options.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4188\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4209\"/>\n        <source>8 byte array containing the iSCSI Logical Unit Number.</source>\n        <translation type=\"unfinished\">8 byte array containing the iSCSI Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4194\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing the iSCSI Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing the iSCSI Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4228\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4250\"/>\n        <source>iSCSI Target Portal group tag the initiator intends to establish a session with.</source>\n        <translation type=\"unfinished\">iSCSI Target Portal group tag the initiator intends to establish a session with.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4231\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4253\"/>\n        <source>Target Portal Group</source>\n        <translation type=\"unfinished\">Target Portal Group</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4234\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4256\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Target Portal group tag the initiator intends to establish a session with.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Target Portal group tag the initiator intends to establish a session with.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4291\"/>\n        <source>iSCSI NodeTarget Name.</source>\n        <translation type=\"unfinished\">iSCSI NodeTarget Name.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4272\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4294\"/>\n        <source>Target Name</source>\n        <translation type=\"unfinished\">Target Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4275\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4297\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI NodeTarget Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI NodeTarget Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4308\"/>\n        <source>VLAN</source>\n        <translation type=\"unfinished\">VLAN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4311\"/>\n        <source>VLAN Settings.</source>\n        <translation type=\"unfinished\">VLAN Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4314\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4360\"/>\n        <source>VLAN identifier (0-4094).</source>\n        <translation type=\"unfinished\">VLAN identifier (0-4094).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4341\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4347\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4363\"/>\n        <source>Vlan ID</source>\n        <translation type=\"unfinished\">Vlan ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4344\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4366\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN identifier (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN identifier (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4383\"/>\n        <source>Fibre Channel Ex</source>\n        <translation type=\"unfinished\">Fibre Channel Ex</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4386\"/>\n        <source>The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation type=\"unfinished\">The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4389\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4474\"/>\n        <source>8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).</source>\n        <translation type=\"unfinished\">8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4480\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4514\"/>\n        <source>8 byte array containing Fibre Channel Logical Unit Number.</source>\n        <translation type=\"unfinished\">8 byte array containing Fibre Channel Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4499\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4520\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4537\"/>\n        <source>SAS Extended Messaging</source>\n        <translation type=\"unfinished\">SAS Extended Messaging</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4540\"/>\n        <source>The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation type=\"unfinished\">The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4543\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4567\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4588\"/>\n        <source>8-byte array of the SAS Address for Serial Attached SCSI Target Port.</source>\n        <translation type=\"unfinished\">8-byte array of the SAS Address for Serial Attached SCSI Target Port.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4570\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4576\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4591\"/>\n        <source>SAS Address</source>\n        <translation type=\"unfinished\">SAS Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4573\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4594\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Address for Serial Attached SCSI Target Port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Address for Serial Attached SCSI Target Port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4628\"/>\n        <source>8-byte array of the SAS Logical Unit Number.</source>\n        <translation type=\"unfinished\">8-byte array of the SAS Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4613\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4634\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4647\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4668\"/>\n        <source>More Information about the device and its interconnect.</source>\n        <translation type=\"unfinished\">More Information about the device and its interconnect.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4650\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4656\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4671\"/>\n        <source>Device and Topology Info</source>\n        <translation type=\"unfinished\">Device and Topology Info</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4653\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4674\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;More Information about the device and its interconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;More Information about the device and its interconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4687\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4709\"/>\n        <source>Relative Target Port (RTP).</source>\n        <translation type=\"unfinished\">Relative Target Port (RTP).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4690\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4696\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4712\"/>\n        <source>Relative Target Port</source>\n        <translation type=\"unfinished\">Relative Target Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4715\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Relative Target Port (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Relative Target Port (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4732\"/>\n        <source>NVM Express NS</source>\n        <translation type=\"unfinished\">NVM Express NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4735\"/>\n        <source>NVM Express Namespace Settings.</source>\n        <translation type=\"unfinished\">NVM Express Namespace Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4738\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM Express Namespace Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM Express Namespace Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4783\"/>\n        <source>Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.</source>\n        <translation type=\"unfinished\">Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4765\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4771\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4786\"/>\n        <source>NSID</source>\n        <translation type=\"unfinished\">NSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4768\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4789\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4802\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4823\"/>\n        <source>This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.</source>\n        <translation type=\"unfinished\">This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4805\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4811\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4826\"/>\n        <source>EUI-64</source>\n        <translation type=\"unfinished\">EUI-64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4808\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4829\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4849\"/>\n        <source>Refer to RFC 3986 for details on the URI contents.</source>\n        <translation type=\"unfinished\">Refer to RFC 3986 for details on the URI contents.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Refer to RFC 3986 for details on the URI contents.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Refer to RFC 3986 for details on the URI contents.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4876\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4898\"/>\n        <source>Instance of the URI pursuant to RFC 3986.</source>\n        <translation type=\"unfinished\">Instance of the URI pursuant to RFC 3986.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4882\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Instance of the URI pursuant to RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Instance of the URI pursuant to RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4915\"/>\n        <source>UFS</source>\n        <translation type=\"unfinished\">UFS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4918\"/>\n        <source>UFS Settings.</source>\n        <translation type=\"unfinished\">UFS Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4966\"/>\n        <source>Target ID on the UFS interface (PUN).</source>\n        <translation type=\"unfinished\">Target ID on the UFS interface (PUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4972\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the UFS interface (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the UFS interface (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5029\"/>\n        <source>SD</source>\n        <translation type=\"unfinished\">SD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5032\"/>\n        <source>SD Settings.</source>\n        <translation type=\"unfinished\">SD Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5035\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5081\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5299\"/>\n        <source>Slot Number</source>\n        <translation type=\"unfinished\">Slot Number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5084\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5280\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5286\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5302\"/>\n        <source>Slot</source>\n        <translation type=\"unfinished\">Slot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5087\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5283\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5305\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Slot Number&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Slot Number&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5104\"/>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\">Bluetooth</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5107\"/>\n        <source>EFI Bluetooth Settings.</source>\n        <translation type=\"unfinished\">EFI Bluetooth Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5110\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI Bluetooth Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI Bluetooth Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5155\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5373\"/>\n        <source>48-bit Bluetooth device address.</source>\n        <translation type=\"unfinished\">48-bit Bluetooth device address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5143\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5158\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5361\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5376\"/>\n        <source>Device Address</source>\n        <translation type=\"unfinished\">Device Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5161\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5379\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-bit Bluetooth device address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-bit Bluetooth device address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5178\"/>\n        <source>Wi-Fi</source>\n        <translation type=\"unfinished\">Wi-Fi</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5181\"/>\n        <source>Wi-Fi Settings.</source>\n        <translation type=\"unfinished\">Wi-Fi Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5184\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wi-Fi Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wi-Fi Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5208\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5230\"/>\n        <source>SSID in octet string.</source>\n        <translation type=\"unfinished\">SSID in octet string.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5211\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5217\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5233\"/>\n        <source>SSID</source>\n        <translation type=\"unfinished\">SSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5214\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5236\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID in octet string.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID in octet string.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5247\"/>\n        <source>eMMC</source>\n        <translation type=\"unfinished\">eMMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5250\"/>\n        <source>Embedded Multi-Media Card Settings.</source>\n        <translation type=\"unfinished\">Embedded Multi-Media Card Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5253\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Embedded Multi-Media Card Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Embedded Multi-Media Card Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5322\"/>\n        <source>BluetoothLE</source>\n        <translation type=\"unfinished\">BluetoothLE</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5325\"/>\n        <source>EFI BluetoothLE Settings.</source>\n        <translation type=\"unfinished\">EFI BluetoothLE Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5328\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI BluetoothLE Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI BluetoothLE Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5416\"/>\n        <source>0x00 - Public Device Address.\n0x01 - Random Device Address.</source>\n        <translation type=\"unfinished\">0x00 - Public Device Address.\n0x01 - Random Device Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5396\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5403\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5420\"/>\n        <source>Address Type</source>\n        <translation type=\"unfinished\">Address Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5399\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5423\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Public Device Address.\n0x01 - Random Device Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Public Device Address.\n0x01 - Random Device Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5428\"/>\n        <source>Public</source>\n        <translation type=\"unfinished\">Public</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5433\"/>\n        <source>Random</source>\n        <translation type=\"unfinished\">Random</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5445\"/>\n        <source>DNS</source>\n        <translation type=\"unfinished\">DNS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5448\"/>\n        <source>DNS Settings.</source>\n        <translation type=\"unfinished\">DNS Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5451\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DNS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DNS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5499\"/>\n        <source>0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.</source>\n        <translation type=\"unfinished\">0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5482\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5506\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5514\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5575\"/>\n        <source>One or more instances of the DNS server address in EFI_IP_ADDRESS.</source>\n        <translation type=\"unfinished\">One or more instances of the DNS server address in EFI_IP_ADDRESS.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5520\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5581\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;One or more instances of the DNS server address in EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;One or more instances of the DNS server address in EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5536\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7584\"/>\n        <source>Data format.</source>\n        <translation type=\"unfinished\">Data format.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5592\"/>\n        <source>NVDIMM NS</source>\n        <translation type=\"unfinished\">NVDIMM NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5595\"/>\n        <source>This device path describes a bootable NVDIMM namespace that is defined by a namespace label.</source>\n        <translation type=\"unfinished\">This device path describes a bootable NVDIMM namespace that is defined by a namespace label.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVDIMM namespace that is defined by a namespace label.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVDIMM namespace that is defined by a namespace label.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5622\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5643\"/>\n        <source>Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.</source>\n        <translation type=\"unfinished\">Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5646\"/>\n        <source>UUID</source>\n        <translation type=\"unfinished\">UUID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5628\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5649\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5663\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5698\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5706\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5724\"/>\n        <source>REST Service</source>\n        <translation type=\"unfinished\">REST Service</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5666\"/>\n        <source>REST Service Settings.</source>\n        <translation type=\"unfinished\">REST Service Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5669\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;REST Service Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;REST Service Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5719\"/>\n        <source>0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.</source>\n        <translation type=\"unfinished\">0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5701\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5727\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5733\"/>\n        <source>Redfish</source>\n        <translation type=\"unfinished\">Redfish</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5738\"/>\n        <source>OData</source>\n        <translation type=\"unfinished\">OData</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5743\"/>\n        <source>Vendor specific</source>\n        <translation type=\"unfinished\">Vendor specific</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5775\"/>\n        <source>0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.</source>\n        <translation type=\"unfinished\">0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5755\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5779\"/>\n        <source>Access Mode</source>\n        <translation type=\"unfinished\">Access Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5782\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5787\"/>\n        <source>In-Band</source>\n        <translation type=\"unfinished\">In-Band</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5792\"/>\n        <source>Out-of-band</source>\n        <translation type=\"unfinished\">Out-of-band</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5821\"/>\n        <source>GUID of vendor specific REST service.</source>\n        <translation type=\"unfinished\">GUID of vendor specific REST service.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID of vendor specific REST service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID of vendor specific REST service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5898\"/>\n        <source>Vendor-defined data.</source>\n        <translation type=\"unfinished\">Vendor-defined data.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5915\"/>\n        <source>NVMe-oF NS</source>\n        <translation type=\"unfinished\">NVMe-oF NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5918\"/>\n        <source>This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.</source>\n        <translation type=\"unfinished\">This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5967\"/>\n        <source>Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.</source>\n        <translation type=\"unfinished\">Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5970\"/>\n        <source>NIDT</source>\n        <translation type=\"unfinished\">NIDT</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5973\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5986\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6007\"/>\n        <source>Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.</source>\n        <translation type=\"unfinished\">Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5989\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5995\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6010\"/>\n        <source>NID</source>\n        <translation type=\"unfinished\">NID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5992\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6013\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6023\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6045\"/>\n        <source>Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.</source>\n        <translation type=\"unfinished\">Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6026\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6048\"/>\n        <source>Subsystem NQN</source>\n        <translation type=\"unfinished\">Subsystem NQN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6029\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6051\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6066\"/>\n        <source>Hard Drive</source>\n        <translation type=\"unfinished\">Hard Drive</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6069\"/>\n        <source>The Hard Drive Media Device Path is used to represent a partition on a hard drive.</source>\n        <translation type=\"unfinished\">The Hard Drive Media Device Path is used to represent a partition on a hard drive.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6072\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Hard Drive Media Device Path is used to represent a partition on a hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Hard Drive Media Device Path is used to represent a partition on a hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6174\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6196\"/>\n        <source>Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].</source>\n        <translation type=\"unfinished\">Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6180\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6236\"/>\n        <source>Starting LBA of the partition on the hard drive.</source>\n        <translation type=\"unfinished\">Starting LBA of the partition on the hard drive.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6466\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6487\"/>\n        <source>Partition Start</source>\n        <translation type=\"unfinished\">Partition Start</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting LBA of the partition on the hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting LBA of the partition on the hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6255\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6276\"/>\n        <source>Size of the partition in units of Logical Blocks.</source>\n        <translation type=\"unfinished\">Size of the partition in units of Logical Blocks.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6258\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6264\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6279\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6527\"/>\n        <source>Partition Size</source>\n        <translation type=\"unfinished\">Partition Size</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6261\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6282\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Logical Blocks.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Logical Blocks.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6295\"/>\n        <source>Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation type=\"unfinished\">Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6301\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6310\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6367\"/>\n        <source>Partition Signature</source>\n        <translation type=\"unfinished\">Partition Signature</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6304\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6322\"/>\n        <source>PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.</source>\n        <translation type=\"unfinished\">PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6328\"/>\n        <source>Signature Type</source>\n        <translation type=\"unfinished\">Signature Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6331\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6338\"/>\n        <source>None</source>\n        <translation type=\"unfinished\">None</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6361\"/>\n        <source>Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation type=\"unfinished\">Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6370\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6392\"/>\n        <source>CD-ROM</source>\n        <translation type=\"unfinished\">CD-ROM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6395\"/>\n        <source>The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.</source>\n        <translation type=\"unfinished\">The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6398\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6444\"/>\n        <source>Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.</source>\n        <translation type=\"unfinished\">Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6425\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6431\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6447\"/>\n        <source>Boot Entry</source>\n        <translation type=\"unfinished\">Boot Entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6450\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6463\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6484\"/>\n        <source>Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.</source>\n        <translation type=\"unfinished\">Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6469\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6490\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6524\"/>\n        <source>Size of the partition in units of Blocks, also called Sectors.</source>\n        <translation type=\"unfinished\">Size of the partition in units of Blocks, also called Sectors.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6530\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Blocks, also called Sectors.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Blocks, also called Sectors.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6547\"/>\n        <source>File Path</source>\n        <translation type=\"unfinished\">File Path</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6550\"/>\n        <source>File Path settings.</source>\n        <translation type=\"unfinished\">File Path settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6553\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File Path settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File Path settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6599\"/>\n        <source>Path including directory and file names.</source>\n        <translation type=\"unfinished\">Path including directory and file names.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6586\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6602\"/>\n        <source>Path Name</source>\n        <translation type=\"unfinished\">Path Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6583\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6605\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Path including directory and file names.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Path including directory and file names.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6619\"/>\n        <source>The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.</source>\n        <translation type=\"unfinished\">The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6622\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6667\"/>\n        <source>The ID of the protocol.</source>\n        <translation type=\"unfinished\">The ID of the protocol.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6673\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ID of the protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ID of the protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6687\"/>\n        <source>Firmware File</source>\n        <translation type=\"unfinished\">Firmware File</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6690\"/>\n        <source>Describes a firmware file in a firmware volume.</source>\n        <translation type=\"unfinished\">Describes a firmware file in a firmware volume.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6693\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware file in a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware file in a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6717\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6738\"/>\n        <source>Firmware file name GUID.</source>\n        <translation type=\"unfinished\">Firmware file name GUID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6723\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6744\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware file name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware file name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6758\"/>\n        <source>Firmware Volume</source>\n        <translation type=\"unfinished\">Firmware Volume</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6761\"/>\n        <source>Describes a firmware volume.</source>\n        <translation type=\"unfinished\">Describes a firmware volume.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6764\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6809\"/>\n        <source>Firmware volume name GUID.</source>\n        <translation type=\"unfinished\">Firmware volume name GUID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware volume name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware volume name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6829\"/>\n        <source>Relative Offset Range</source>\n        <translation type=\"unfinished\">Relative Offset Range</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6832\"/>\n        <source>This device path node specifies a range of offsets relative to the first byte available on the device.</source>\n        <translation type=\"unfinished\">This device path node specifies a range of offsets relative to the first byte available on the device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6835\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path node specifies a range of offsets relative to the first byte available on the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path node specifies a range of offsets relative to the first byte available on the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6880\"/>\n        <source>Reserved for future use.</source>\n        <translation type=\"unfinished\">Reserved for future use.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6886\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved for future use.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved for future use.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6899\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6920\"/>\n        <source>Offset of the first byte, relative to the parent device node.</source>\n        <translation type=\"unfinished\">Offset of the first byte, relative to the parent device node.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6902\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6908\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6923\"/>\n        <source>Starting Offset</source>\n        <translation type=\"unfinished\">Starting Offset</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6905\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the first byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the first byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6939\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6960\"/>\n        <source>Offset of the last byte, relative to the parent device node.</source>\n        <translation type=\"unfinished\">Offset of the last byte, relative to the parent device node.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6942\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6963\"/>\n        <source>Ending Offset</source>\n        <translation type=\"unfinished\">Ending Offset</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6966\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the last byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the last byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6983\"/>\n        <source>RAM Disk</source>\n        <translation type=\"unfinished\">RAM Disk</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6986\"/>\n        <source>RAM Disk Settings.</source>\n        <translation type=\"unfinished\">RAM Disk Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6989\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7016\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7037\"/>\n        <source>Starting Address</source>\n        <translation type=\"unfinished\">Starting Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7056\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7077\"/>\n        <source>Ending Address</source>\n        <translation type=\"unfinished\">Ending Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7093\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7114\"/>\n        <source>GUID that defines the type of the RAM Disk.</source>\n        <translation type=\"unfinished\">GUID that defines the type of the RAM Disk.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7120\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID that defines the type of the RAM Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID that defines the type of the RAM Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7130\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7152\"/>\n        <source>RAM Disk instance number, if supported.</source>\n        <translation type=\"unfinished\">RAM Disk instance number, if supported.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7133\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7155\"/>\n        <source>Disk Instance</source>\n        <translation type=\"unfinished\">Disk Instance</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7158\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk instance number, if supported.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk instance number, if supported.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7179\"/>\n        <source>This Device Path is used to describe the booting of non-EFI-aware operating systems.</source>\n        <translation type=\"unfinished\">This Device Path is used to describe the booting of non-EFI-aware operating systems.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7182\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path is used to describe the booting of non-EFI-aware operating systems.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path is used to describe the booting of non-EFI-aware operating systems.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7206\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7249\"/>\n        <source>An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.</source>\n        <translation type=\"unfinished\">An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7220\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7263\"/>\n        <source>Device Type</source>\n        <translation type=\"unfinished\">Device Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7223\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7290\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7347\"/>\n        <source>Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero</source>\n        <translation type=\"unfinished\">Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7311\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7368\"/>\n        <source>Status Flag</source>\n        <translation type=\"unfinished\">Status Flag</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7371\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7402\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7424\"/>\n        <source>String that describes the boot device to a user.</source>\n        <translation type=\"unfinished\">String that describes the boot device to a user.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7408\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7430\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;String that describes the boot device to a user.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;String that describes the boot device to a user.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7543\"/>\n        <source>Vendor-assigned GUID that defines the data that follows.</source>\n        <translation type=\"unfinished\">Vendor-assigned GUID that defines the data that follows.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7549\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-assigned GUID that defines the data that follows.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-assigned GUID that defines the data that follows.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7562\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7622\"/>\n        <source>Vendor-defined variable size data.</source>\n        <translation type=\"unfinished\">Vendor-defined variable size data.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7568\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7628\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined variable size data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined variable size data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7642\"/>\n        <source>Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.</source>\n        <translation type=\"unfinished\">Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7645\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7721\"/>\n        <source>Unknown file path specifier settings</source>\n        <translation type=\"unfinished\">Unknown file path specifier settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7724\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown file path specifier settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown file path specifier settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7748\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7772\"/>\n        <source>Unknown Type</source>\n        <translation type=\"unfinished\">Unknown Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7754\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7775\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7812\"/>\n        <source>Unknown Sub-Type</source>\n        <translation type=\"unfinished\">Unknown Sub-Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7828\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7831\"/>\n        <source>Unknown data</source>\n        <translation type=\"unfinished\">Unknown data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/filepathdialog.cpp\" line=\"1569\"/>\n        <source>Couldn&apos;t change data format!</source>\n        <translation type=\"unfinished\">Couldn&apos;t change data format!</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeyListModel</name>\n    <message>\n        <location filename=\"../src/hotkeylistmodel.cpp\" line=\"100\"/>\n        <source>boot option</source>\n        <translation type=\"unfinished\">boot option</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Boot option</source>\n        <translation type=\"unfinished\">Boot option</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Hot key</source>\n        <translation type=\"unfinished\">Hot key</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Vendor data</source>\n        <translation type=\"unfinished\">Vendor data</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeysDialog</name>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"20\"/>\n        <source>Hot Keys editor</source>\n        <translation type=\"unfinished\">Hot Keys editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"41\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"44\"/>\n        <source>Hot Keys</source>\n        <translation type=\"unfinished\">Hot Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"47\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"125\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"128\"/>\n        <source>Index filter</source>\n        <translation type=\"unfinished\">Index filter</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"131\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Index filter&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Index filter&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"163\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"166\"/>\n        <source>Remove hot key</source>\n        <translation type=\"unfinished\">Remove hot key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"191\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"194\"/>\n        <source>Add hot key</source>\n        <translation type=\"unfinished\">Add hot key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"197\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <location filename=\"../include/commands.h\" line=\"21\"/>\n        <location filename=\"../include/commands.h\" line=\"66\"/>\n        <source>Change %1 to &quot;%2&quot;</source>\n        <translation type=\"unfinished\">Change %1 to &quot;%2&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"35\"/>\n        <source>Insert %1 entry &quot;%2&quot; at position %3</source>\n        <translation type=\"unfinished\">Insert %1 entry &quot;%2&quot; at position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"50\"/>\n        <source>Remove %1 entry &quot;%2&quot; from position %3</source>\n        <translation type=\"unfinished\">Remove %1 entry &quot;%2&quot; from position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"73\"/>\n        <location filename=\"../src/commands.cpp\" line=\"116\"/>\n        <source>Move %1 entry &quot;%2&quot; from position %3 to %4</source>\n        <translation type=\"unfinished\">Move %1 entry &quot;%2&quot; from position %3 to %4</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <location filename=\"../include/commands.h\" line=\"157\"/>\n        <location filename=\"../include/commands.h\" line=\"198\"/>\n        <source>Change %1 entry &quot;%2&quot; %3 to &quot;%4&quot;</source>\n        <translation type=\"unfinished\">Change %1 entry &quot;%2&quot; %3 to &quot;%4&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <source>Optional data</source>\n        <translation type=\"unfinished\">Optional data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"227\"/>\n        <source>Insert %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation type=\"unfinished\">Insert %1 entry &quot;%2&quot; file path at position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"242\"/>\n        <source>Remove %1 entry &quot;%2&quot; file path from position %3</source>\n        <translation type=\"unfinished\">Remove %1 entry &quot;%2&quot; file path from position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"257\"/>\n        <source>Set %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation type=\"unfinished\">Set %1 entry &quot;%2&quot; file path at position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <source>Insert %1 entry at position %2</source>\n        <translation type=\"unfinished\">Insert %1 entry at position %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>Key</source>\n        <translation type=\"unfinished\">Key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <source>Remove %1 entry from position %2</source>\n        <translation type=\"unfinished\">Remove %1 entry from position %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <location filename=\"../include/commands.h\" line=\"362\"/>\n        <location filename=\"../include/commands.h\" line=\"403\"/>\n        <source>Change %1 entry at position %2 %3 to &quot;%4&quot;</source>\n        <translation type=\"unfinished\">Change %1 entry at position %2 %3 to &quot;%4&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>keys</source>\n        <translation type=\"unfinished\">keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"293\"/>\n        <location filename=\"../src/commands.cpp\" line=\"333\"/>\n        <source>Move %1 entry &quot;%2&quot; file path from position %3 to %4</source>\n        <translation type=\"unfinished\">Move %1 entry &quot;%2&quot; file path from position %3 to %4</translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/efibooteditor_zh_Hans.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"zh_Hans\" sourcelanguage=\"en_US\">\n<context>\n    <name>BootEntryForm</name>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"169\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"172\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"182\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"185\"/>\n        <source>Description</source>\n        <translation>描述</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"198\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"201\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"204\"/>\n        <source>Path</source>\n        <translation>路径</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"415\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"418\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"478\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"481\"/>\n        <source>Optional data</source>\n        <translation>可选数据</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"421\"/>\n        <source>Optional</source>\n        <translation>可选</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"434\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"437\"/>\n        <source>Optional data format</source>\n        <translation>可选数据格式</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"6\"/>\n        <source>Boot entry form</source>\n        <translation>引导条目从</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"24\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"27\"/>\n        <source>Error</source>\n        <translation>错误</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"40\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"43\"/>\n        <source>Error note</source>\n        <translation>错误注释</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"46\"/>\n        <source>This entry placeholder is shown here to indicate it&apos;s referenced in boot order. It won&apos;t be modified on save, just left as is.</source>\n        <translation>此处显示此条目占位符以指示它在引导顺序中被引用。 保存时不会对其进行修改，保持原样。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"147\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"150\"/>\n        <source>Hot Keys</source>\n        <translation>热键</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;热键&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"188\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry description.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;条目描述。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"222\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"225\"/>\n        <source>Device path</source>\n        <translation>设备路径</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;设备路径。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"280\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"283\"/>\n        <source>Move file path up</source>\n        <translation>向上移动文件路径</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"286\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;向上移动文件路径。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"305\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"308\"/>\n        <source>Move file path down</source>\n        <translation>向下移动文件路径</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"311\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;向下移动文件路径。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"330\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"333\"/>\n        <source>Remove file path</source>\n        <translation>删除文件路径</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"336\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;删除文件路径。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"355\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"358\"/>\n        <source>Edit file path</source>\n        <translation>编辑文件路径</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"361\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Edit file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;编辑文件路径。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"380\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"383\"/>\n        <source>Add file path</source>\n        <translation>添加文件路径</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;添加文件路径。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;可选数据格式。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"444\"/>\n        <source>BASE64</source>\n        <translation>BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"449\"/>\n        <source>UTF-16</source>\n        <translation>UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"454\"/>\n        <source>UTF-8</source>\n        <translation>UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"459\"/>\n        <source>HEX</source>\n        <translation>HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"484\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry optional data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;输入可选数据。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"497\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"500\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"503\"/>\n        <source>Attributes</source>\n        <translation>属性</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"623\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry category.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;条目类别。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"122\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;条目索引。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"540\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Is entry considered for automatic boot?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;是否考虑自动启动引导？&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"569\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hidden.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;隐藏。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"585\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Force reconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;强制重新连接。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"534\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"537\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"543\"/>\n        <source>Active</source>\n        <translation>活动</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"579\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"582\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"588\"/>\n        <source>Force reconnect</source>\n        <translation>强制重新连接</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"563\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"566\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"572\"/>\n        <source>Hidden</source>\n        <translation>隐藏</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"598\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"601\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"604\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"617\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"620\"/>\n        <source>Category</source>\n        <translation>类别</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"627\"/>\n        <source>Boot</source>\n        <translation>引导</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"632\"/>\n        <source>App</source>\n        <translation>应用程序</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"68\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"71\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"74\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"116\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"119\"/>\n        <source>Index</source>\n        <translation>索引</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentryform.cpp\" line=\"117\"/>\n        <source>Couldn&apos;t change optional data format!</source>\n        <translation>无法更改可选数据格式！</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryListModel</name>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"88\"/>\n        <source>Set Next boot to &quot;%1&quot;</source>\n        <translation>设置下次启动为 &quot;%1&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"184\"/>\n        <source>index</source>\n        <translation>索引</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"200\"/>\n        <source>description</source>\n        <translation>描述</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"237\"/>\n        <source>optional data</source>\n        <translation>可选数据</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"253\"/>\n        <source>attributes</source>\n        <translation>属性</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"269\"/>\n        <source>next boot</source>\n        <translation>下次启动</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryWidget</name>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"12\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"221\"/>\n        <source>Boot entry</source>\n        <translation>引导条目</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"36\"/>\n        <source>Next boot</source>\n        <translation>下一个引导</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"39\"/>\n        <source>Run at next boot</source>\n        <translation>下次引导时运行</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"42\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;When chosen, entry will run at next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;选择后，条目将在下次引导时运行。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"140\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"143\"/>\n        <source>Current boot</source>\n        <translation>当前引导</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This entry is currently booted.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;该条目当前已启动。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"181\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;引导条目索引。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"218\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry description, human readable name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;引导条目描述，人类可读的名称。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"67\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"70\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"76\"/>\n        <source>Device path</source>\n        <translation>设备路径</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"73\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;引导设备路径。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"113\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data, arguments passed to boot executable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;可选数据，传递给启动可执行文件的参数。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"178\"/>\n        <source>Boot entry index</source>\n        <translation>引导条目索引</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"184\"/>\n        <source>Index</source>\n        <translation>索引</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"212\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"215\"/>\n        <source>Boot entry description</source>\n        <translation>引导条目描述</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"107\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"110\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"116\"/>\n        <source>Optional data</source>\n        <translation>可选数据</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootData</name>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"111\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"813\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1027\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1361\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1472\"/>\n        <source>%1: not found</source>\n        <translation>%1: 未找到</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"120\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"821\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1387\"/>\n        <source>%1: failed deserialization</source>\n        <translation>%1: 反序列化失败</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Error loading entries</source>\n        <translation>加载条目时出错</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Failed to load some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>无法加载一些 EFI Boot Manager 条目:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Error saving entries</source>\n        <translation>保存条目时出错</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Entry %1(%2): duplicated index!</source>\n        <translation>条目 %1(%2): 重复索引！</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"389\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"419\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"458\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"479\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"487\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"516\"/>\n        <source>Error saving %1</source>\n        <translation>保存 %1 错误</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"407\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"470\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"504\"/>\n        <source>Error removing %1</source>\n        <translation>移除 %1 错误</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Error importing boot configuration</source>\n        <translation>导入引导配置时出错</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <source>Couldn&apos;t open selected file (%1).</source>\n        <translation>无法打开所选文件 (%1)。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <source>Parser failed: %1</source>\n        <translation>解析器失败: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <source>Invalid _Type: %1</source>\n        <translation>无效类型: %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <source>Error exporting boot configuration</source>\n        <translation>导出引导配置时出错</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <source>Couldn&apos;t open selected file (%1): %2.</source>\n        <translation>无法打开所选文件 (%1): %2。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <source>Couldn&apos;t write into file (%1): %2.</source>\n        <translation>无法写入文件 (%1): %2。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Error dumping raw EFI data</source>\n        <translation>转储原始 EFI 数据时出错</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Failed to dump some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>无法转储某些 EFI Boot Manager 条目:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"905\"/>\n        <source>Timeout</source>\n        <translation>超时</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"921\"/>\n        <source>Apple boot-args</source>\n        <translation>Apple 引导参数</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"937\"/>\n        <source>Firmware actions</source>\n        <translation>固件操作</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"73\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation>正在加载 EFI Boot Manager 条目…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"89\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"787\"/>\n        <source>Searching EFI Boot Manager entries…</source>\n        <translation>正在搜索 EFI Boot Manager 条目…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"116\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"292\"/>\n        <source>Processing EFI Boot Manager entries (%1)…</source>\n        <translation>正在处理 EFI Boot Manager 条目 (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"308\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation>正在保存 EFI Boot Manager 条目…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"333\"/>\n        <source>Searching old EFI Boot Manager entries…</source>\n        <translation>正在搜索旧的 EFI Boot Manager 条目…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"374\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"416\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"447\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"476\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"484\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"491\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"513\"/>\n        <source>Saving EFI Boot Manager entries (%1)…</source>\n        <translation>正在保存 EFI Boot Manager 条目 (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"467\"/>\n        <source>Removing old EFI Boot Manager entries (%1)…</source>\n        <translation>正在删除旧的 EFI Boot Manager 条目 (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"404\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"501\"/>\n        <source>Removing EFI Boot Manager entries (%1)…</source>\n        <translation>正在删除 EFI Boot Manager entries 条目 (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"94\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"338\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"792\"/>\n        <source>Couldn&apos;t load EFI Boot Manager variables</source>\n        <translation>无法加载 EFI Boot Manager 变量</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"100\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"799\"/>\n        <source>Couldn&apos;t find any EFI Boot Manager variables</source>\n        <translation>找不到任何 EFI Boot Manager 变量</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"529\"/>\n        <source>Importing boot configuration…</source>\n        <translation>正在导入引导配置…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"565\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"770\"/>\n        <source>Exporting boot configuration…</source>\n        <translation>正在导出引导配置…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"587\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"809\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"875\"/>\n        <source>Exporting EFI Boot Manager entries (%1)…</source>\n        <translation>正在导出 EFI Boot Manager 条目 (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1013\"/>\n        <source>Importing boot configuration from JSON…</source>\n        <translation>正在从 JSON 导入引导配置…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1032\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1366\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1477\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1531\"/>\n        <source>Importing EFI Boot Manager entries (%1)…</source>\n        <translation>正在导入 EFI Boot Manager 条目 (%1)…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1035\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1376\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>%1: %2 expected</source>\n        <translation>%1: %2 预计</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1043\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1048\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1053\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <source>number</source>\n        <translation>编号</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1058\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1063\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1068\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1073\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1078\"/>\n        <source>bool</source>\n        <translation>布尔</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1109\"/>\n        <source>%1: unknown boot manager capability</source>\n        <translation>%1: 未知的引导管理器能力</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1122\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1166\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1212\"/>\n        <source>array</source>\n        <translation>数组</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1333\"/>\n        <source>string</source>\n        <translation>字符串</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1156\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1192\"/>\n        <source>%1: unknown os indication</source>\n        <translation>%1: 未知操作系统指示</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1083\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1235\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1264\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1290\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1309\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1328\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>object</source>\n        <translation>对象</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <source>hexadecimal number</source>\n        <translation>十六进制数</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1270\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1315\"/>\n        <source>%1: failed parsing</source>\n        <translation>%1: 解析失败</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Failed to import some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>无法导入某些 EFI Boot Manager 条目:\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1347\"/>\n        <source>Importing boot configuration from raw dump…</source>\n        <translation>正在从原始转储导入引导配置…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1379\"/>\n        <source>object(raw_data: string, efi_attributes: number)</source>\n        <extracomment>Expected JSON structure, thrown as error description. raw_data and efi_attributes are field names in JSON file</extracomment>\n        <translation>object(raw_data: string, efi_attributes: number)</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"15\"/>\n        <source>Boot</source>\n        <translation>引导</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"16\"/>\n        <source>Driver</source>\n        <translation>设备</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"17\"/>\n        <source>System Preparation</source>\n        <translation>系统准备</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"18\"/>\n        <source>Platform Recovery</source>\n        <translation>平台恢复</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditor</name>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"18\"/>\n        <source>EFI Boot Editor</source>\n        <translation>EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"71\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"412\"/>\n        <source>Boot</source>\n        <translation>引导</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"74\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"98\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"101\"/>\n        <source>Boot entries</source>\n        <translation>引导条目</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"77\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"104\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Boot entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;引导条目列表。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"133\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"415\"/>\n        <source>Driver</source>\n        <translation>设备</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"136\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"160\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"163\"/>\n        <source>Driver entries</source>\n        <translation>设备条目</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"139\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"166\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Driver entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;设备条目列表。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"195\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"418\"/>\n        <source>System Preparation</source>\n        <translation>系统准备</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"198\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"222\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"225\"/>\n        <source>SysPrep entries</source>\n        <translation>系统准备条目</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"201\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of SysPrep entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;系统准备条目列表。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"257\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"421\"/>\n        <source>Platform Recovery</source>\n        <translation>平台恢复</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"260\"/>\n        <source>PlatformRecovery entries</source>\n        <translation>平台恢复条目</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"263\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of PlatformRecovery entries (READONLY).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;平台恢复条目列表（只读）。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"284\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"287\"/>\n        <source>PlatformRecovery entries (READONLY)</source>\n        <translation>平台恢复条目列表（只读）</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"346\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"349\"/>\n        <source>Add new entry</source>\n        <translation>添加新的条目</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"352\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to add new boot entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;单击此按钮可添加新的引导条目。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"377\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"380\"/>\n        <source>Duplicate entry</source>\n        <translation>重复条目</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"383\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Duplicate entry&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;重复条目&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"408\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"411\"/>\n        <source>Remove entry</source>\n        <translation>移除条目</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"414\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to remove currently selected entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;单击此按钮可删除当前所选条目。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"439\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"442\"/>\n        <source>Move entry up</source>\n        <translation>向上移动条目</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"445\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;单击此按钮可将当前所选条目向上移动。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"470\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"473\"/>\n        <source>Move entry down</source>\n        <translation>向下移动条目</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"476\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;单击此按钮可将当前所选条目下移。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"501\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"504\"/>\n        <source>Reorder entries</source>\n        <translation>重新排序条目</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"507\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click here to adjust the order of all entries based on their position on the list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;单击此处可根据所有条目在列表中的位置调整所有条目的顺序。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"599\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"608\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Global settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;全局设置。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"602\"/>\n        <source>Global</source>\n        <translation>全局</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"632\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"635\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"654\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"657\"/>\n        <source>Boot manager timeout</source>\n        <translation>引导管理器超时</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"638\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"660\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot manager timeout.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;引导管理器超时。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"663\"/>\n        <source>s</source>\n        <translation>s</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"674\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"677\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"686\"/>\n        <source>Firmware details</source>\n        <translation>固件详细信息</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"680\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"689\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;固件详细信息。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"683\"/>\n        <source>Firmware</source>\n        <translation>固件</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"719\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"722\"/>\n        <source>Available firmware features</source>\n        <translation>可用的固件功能</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"725\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware features.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;可用的固件功能。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"728\"/>\n        <source>Features</source>\n        <translation>功能</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"737\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"740\"/>\n        <source>Platform supports reporting of deferred capsule processing by creation of result variable</source>\n        <translation>平台支持通过创建结果变量来报告延迟封装处理</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"743\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports reporting of deferred capsule processing by creation of result variable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;平台支持通过创建结果变量来报告延迟封装处理。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"746\"/>\n        <source>Capsule Reporting</source>\n        <translation>封装报告</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"756\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"759\"/>\n        <source>Firmware supports timestamp based revocation</source>\n        <translation>固件支持基于时间戳的撤销</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"762\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware supports timestamp based revocation.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;固件支持基于时间戳的撤销。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"765\"/>\n        <source>Timestamp based revocation</source>\n        <translation>基于时间戳的撤销</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"775\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"778\"/>\n        <source>Platform supports processing of Firmware Management Protocol update capsule</source>\n        <translation>平台支持固件管理协议更新封装的处理</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"781\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of Firmware Management Protocol update capsule.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;平台支持固件管理协议更新封装的处理。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"784\"/>\n        <source>FMP Capsule</source>\n        <translation>FMP 封装</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"794\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"797\"/>\n        <source>Platform supports processing of file capsules</source>\n        <translation>平台支持文件封装处理</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"800\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of file capsules.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;平台支持文件封装的处理。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"803\"/>\n        <source>File Capsule</source>\n        <translation>文件封装</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"828\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"831\"/>\n        <source>Available firmware actions</source>\n        <translation>可用的固件操作</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware actions.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;可用的固件操作。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"837\"/>\n        <source>Actions</source>\n        <translation>操作</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"846\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"849\"/>\n        <source>Stop at a firmware user interface on the next boot</source>\n        <translation>下次引导时停止在固件用户界面</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Stop at a firmware user interface on the next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;下次引导时停止在固件用户界面。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"855\"/>\n        <source>Boot to firmware UI</source>\n        <translation>引导到固件 UI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"862\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"865\"/>\n        <source>Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot</source>\n        <translation>触发收集当前配置并在下次启动时将刷新的数据报告给 EFI 系统配置表</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;触发收集当前配置并在下次启动时将刷新的数据报告给 EFI 系统配置表。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"871\"/>\n        <source>Collect current config</source>\n        <translation>收集当前配置</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"878\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"881\"/>\n        <source>Indicate that Platform-defined recovery should commence upon reboot</source>\n        <translation>指示平台定义的恢复应在重新引导时开始</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"884\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that Platform-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;指示平台定义的恢复应在重新引导时开始。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"887\"/>\n        <source>Start Platform recovery</source>\n        <translation>启动平台恢复</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"894\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"897\"/>\n        <source>Indicate that OS-defined recovery should commence upon reboot</source>\n        <translation>指示操作系统定义的恢复应该在重新引导时开始</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"900\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that OS-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;指示操作系统定义的恢复应该在重新引导时开始。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"903\"/>\n        <source>Start OS recovery</source>\n        <translation>开始操作系统恢复</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"932\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"935\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"944\"/>\n        <source>Secure boot settings</source>\n        <translation>安全引导设置</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"938\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"947\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Secure boot settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;安全引导设置。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"941\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1025\"/>\n        <source>Secure Boot</source>\n        <translation>安全引导</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"978\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"981\"/>\n        <source>Defines whether the system is currently operating in Audit Mode</source>\n        <translation>定义系统当前是否在审核模式下运行</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"984\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Audit Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;定义系统当前是否在审核模式下运行。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"987\"/>\n        <source>Audit Mode</source>\n        <translation>审核模式</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"997\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1000\"/>\n        <source>Defines whether the system is currently operating in Deployed Mode</source>\n        <translation>定义系统当前是否在部署模式下运行</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1003\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Deployed Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;定义系统当前是否在部署模式下运行。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1006\"/>\n        <source>Deployed Mode</source>\n        <translation>部署模式</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1016\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1019\"/>\n        <source>Defines whether the platform firmware is operating with Secure Boot enabled</source>\n        <translation>定义平台固件是否在启用安全引导的情况下运行</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1022\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the platform firmware is operating with Secure Boot enabled.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;定义平台固件是否在启用安全引导的情况下运行。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1035\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1038\"/>\n        <source>Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables</source>\n        <translation>定义系统是否应要求对安全引导策略变量的请求进行身份验证</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1041\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;定义系统是否应要求对安全引导策略变量的请求进行身份验证。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1044\"/>\n        <source>Setup Mode</source>\n        <translation>设置模式</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1054\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1057\"/>\n        <source>Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys</source>\n        <translation>定义安全引导策略变量是否已被平台供应商或供应商提供的密钥的持有者以外的任何人修改</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;定义安全引导策略变量是否已被平台供应商或供应商提供的密钥的持有者以外的任何人修改。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1063\"/>\n        <source>Vendor Keys</source>\n        <translation>供应商密钥</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1074\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1077\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1086\"/>\n        <source>Apple settings</source>\n        <translation>Apple 设置</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1080\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apple settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apple 设置。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1083\"/>\n        <source>Apple</source>\n        <translation>Apple</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1113\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1116\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1129\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1132\"/>\n        <source>macOS boot arguments</source>\n        <translation>macOS 引导参数</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1119\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;macOS boot arguments.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;macOS 引导参数。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1161\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1164\"/>\n        <source>Undo stack</source>\n        <translation>撤消堆栈</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1167\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo stack&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;撤消堆栈&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1194\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;文件菜单。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1214\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Help menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;帮助菜单。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1255\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Exit the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;退出程序。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1272\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apply changes to the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;对系统应用更改。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1289\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reloads EFI data from the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;从系统重新加载 EFI 数据。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1306\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Show information about the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;显示有关该程序的信息。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1320\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Export current entries into JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;将当前条目导出为 JSON。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1337\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Import EFI data from JSON dump.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;从 JSON 转储导入 EFI 数据。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1354\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dumps raw EFI data for debugging purposes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;转储原始 EFI 数据以用于调试目的。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1362\"/>\n        <source>&amp;Undo</source>\n        <translation>撤消(&amp;U)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1365\"/>\n        <source>Undo</source>\n        <translation>撤消</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1368\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;撤消&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1371\"/>\n        <source>Ctrl+Z</source>\n        <translation>Ctrl+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1379\"/>\n        <source>&amp;Redo</source>\n        <translation>重做(&amp;R)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1382\"/>\n        <source>Redo</source>\n        <translation>重做</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1385\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Redo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;重做&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1388\"/>\n        <source>Ctrl+Shift+Z</source>\n        <translation>Ctrl+Shift+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1396\"/>\n        <source>Hot &amp;keys</source>\n        <translation>热键(&amp;K)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1399\"/>\n        <source>Hot Keys</source>\n        <translation>热键</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1402\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;热键&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"593\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"596\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"605\"/>\n        <source>Global settings</source>\n        <translation>全局设置</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"641\"/>\n        <source>Timeout</source>\n        <translation>超时</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1122\"/>\n        <source>Boot args</source>\n        <translation>引导参数</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1188\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1191\"/>\n        <source>File</source>\n        <translation>文件</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1197\"/>\n        <source>&amp;File</source>\n        <translation>文件(&amp;F)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1208\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1211\"/>\n        <source>Help</source>\n        <translation>帮助</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1217\"/>\n        <source>&amp;Help</source>\n        <translation>帮助(&amp;H)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1225\"/>\n        <source>&amp;Edit</source>\n        <translation>编辑 (&amp;E)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1249\"/>\n        <source>&amp;Quit</source>\n        <translation>退出(&amp;Q)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1252\"/>\n        <source>Quit</source>\n        <translation>退出</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1258\"/>\n        <source>Ctrl+Q</source>\n        <translation>Ctrl+Q</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1266\"/>\n        <source>&amp;Save</source>\n        <translation>保存(&amp;S)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1269\"/>\n        <source>Save</source>\n        <translation>保存</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1275\"/>\n        <source>Ctrl+S</source>\n        <translation>Ctrl+S</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1283\"/>\n        <source>&amp;Reload</source>\n        <translation>重新加载(&amp;R)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1286\"/>\n        <source>Reload</source>\n        <translation>重新加载</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1292\"/>\n        <source>Ctrl+R</source>\n        <translation>Ctrl+R</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1300\"/>\n        <source>About &amp;EFI Boot Editor</source>\n        <translation>关于 EFI Boot Editor(&amp;E)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1303\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"29\"/>\n        <source>About EFI Boot Editor</source>\n        <translation>关于 EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1314\"/>\n        <source>&amp;Export</source>\n        <translation>导出(&amp;E)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1317\"/>\n        <source>Export</source>\n        <translation>导出</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1323\"/>\n        <source>Ctrl+E</source>\n        <translation>Ctrl+E</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1331\"/>\n        <source>&amp;Import</source>\n        <translation>导入(&amp;I)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1334\"/>\n        <source>Import</source>\n        <translation>导入</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1340\"/>\n        <source>Ctrl+I</source>\n        <translation>Ctrl+I</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1348\"/>\n        <source>&amp;Dump raw EFI data</source>\n        <translation>转储原始 EFI 数据(&amp;D)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1351\"/>\n        <source>Dump raw EFI data</source>\n        <translation>转储原始 EFI 数据</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"26\"/>\n        <source>Working…</source>\n        <translation>正在进行…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"92\"/>\n        <source>Undo %1</source>\n        <translation>撤消 %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"95\"/>\n        <source>Redo %1</source>\n        <translation>重做 %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"137\"/>\n        <source>Are you sure you want to reload the entries?&lt;br/&gt;ALL of your changes will be lost!</source>\n        <translation>您确定要重新加载条目吗？&lt;br/&gt;您的所有更改都将丢失！</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"162\"/>\n        <source>Are you sure you want to reorder the boot entries?&lt;br/&gt;All indexes will be overwritten!</source>\n        <translation>您确定要重新排序引导条目吗？&lt;br/&gt;所有索引都将被覆盖！</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"221\"/>\n        <source>Are you sure you want to save?&lt;br/&gt;Your EFI configuration will be overwritten!</source>\n        <translation>您确定要保存吗？&lt;br/&gt;您的 EFI 配置将被覆盖！</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <source>Open boot configuration dump</source>\n        <translation>打开引导配置转储</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>JSON documents (*.json)</source>\n        <translation>JSON 文档 (*.json)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <source>Save boot configuration dump</source>\n        <translation>保存引导配置转储</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>Save raw EFI dump</source>\n        <translation>保存原始 EFI 转储</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"31\"/>\n        <source>&lt;h1&gt;EFI Boot Editor&lt;/h1&gt;&lt;p&gt;Version &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Boot Editor for (U)EFI based systems.&lt;/p&gt;</source>\n        <extracomment>About dialog</extracomment>\n        <translation>&lt;h1&gt;EFI Boot Editor&lt;/h1&gt;&lt;p&gt;版本 &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Boot Editor for (U)EFI based systems.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"45\"/>\n        <source>&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;Website&lt;/a&gt;&lt;/p&gt;&lt;p&gt;The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.&lt;/p&gt;&lt;p&gt;License: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL Version 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;On Linux uses &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; for EFI variables access.&lt;/p&gt;&lt;p&gt;Uses Tango Icons as fallback icons.&lt;/p&gt;</source>\n        <extracomment>About dialog details</extracomment>\n        <translation>&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;网站&lt;/a&gt;&lt;/p&gt;&lt;p&gt;该程序按原样提供，不提供任何形式的保证，包括设计、适销性和特定用途适用性的保证 .&lt;/p&gt;&lt;p&gt;许可证：&lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL 版本 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;在 Linux 上使用 &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; 用于 EFI 变量访问。&lt;/p&gt;&lt;p&gt;使用 Tango 图标作为后备图标。&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"330\"/>\n        <source>Reorder %1 entries</source>\n        <translation>重新排序 %1 条目</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"453\"/>\n        <source>Are you sure you want to quit?</source>\n        <translation>你确定你要退出吗？</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"123\"/>\n        <source>EFI support required</source>\n        <translation>需要 EFI 支持</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditorCLI</name>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"13\"/>\n        <source>Boot Editor for (U)EFI based systems.</source>\n        <translation>用于基于 (U)EFI 的系统的引导编辑器。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <source>Export configuration.</source>\n        <translation>导出配置。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>FILE</source>\n        <translation>文件</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <source>Dump raw EFI data.</source>\n        <translation>转储原始 EFI 数据。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>Import configuration from JSON (either from export or raw dump).</source>\n        <translation>从 JSON 导入配置（从导出或原始转储）。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"19\"/>\n        <source>Force import, don&apos;t ask for confirmation.</source>\n        <translation>强制导入，无需确认。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"26\"/>\n        <source>EFI support required</source>\n        <translation>需要 EFI 支持</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"45\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation>正在加载 EFI Boot Manager 条目…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"47\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"57\"/>\n        <source>Exporting boot configuration…</source>\n        <translation>正在导出引导配置…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"67\"/>\n        <source>Importing boot configuration…</source>\n        <translation>正在导入引导配置…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Loaded %0 %1 entries</source>\n        <translation>已加载 %0 %1 个条目</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <source>Boot</source>\n        <translation>引导</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <source>Driver</source>\n        <translation>设备</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <source>System Preparation</source>\n        <translation>系统准备</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Hot Key</source>\n        <translation>热键</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"78\"/>\n        <source>Are you sure you want to save?\nYour EFI configuration will be overwritten!</source>\n        <translation>您确定要保存吗？\n您的 EFI 配置将被覆盖！</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"86\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation>正在保存 EFI Boot Manager 条目…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"98\"/>\n        <source>ERROR: %0! %1</source>\n        <translation>错误: %0! %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"114\"/>\n        <source>Finished</source>\n        <translation>已完成</translation>\n    </message>\n</context>\n<context>\n    <name>EFIKeySequenceEdit</name>\n    <message>\n        <location filename=\"../src/efikeysequenceedit.cpp\" line=\"109\"/>\n        <source>Press hot key</source>\n        <translation>按热键</translation>\n    </message>\n</context>\n<context>\n    <name>FilePathDialog</name>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"12\"/>\n        <source>File path editor</source>\n        <translation>文件路径编辑器</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"47\"/>\n        <source>PCI</source>\n        <translation>PCI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"80\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"86\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"196\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"202\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"218\"/>\n        <source>Function</source>\n        <translation>功能</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"121\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"127\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"143\"/>\n        <source>Device</source>\n        <translation>设备</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"721\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"727\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"742\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"835\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"841\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"856\"/>\n        <source>HID</source>\n        <translation>HID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"761\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"767\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"782\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"896\"/>\n        <source>UID</source>\n        <translation>UID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1813\"/>\n        <source>USB</source>\n        <translation>USB</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1819\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB 设置。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1893\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1909\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3688\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3710\"/>\n        <source>Interface</source>\n        <translation>接口</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7442\"/>\n        <source>Vendor</source>\n        <translation>供应商</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7445\"/>\n        <source>Vendor settings</source>\n        <translation>供应商设置</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7448\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;供应商设置。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1778\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1793\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5824\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6348\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7117\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7546\"/>\n        <source>GUID</source>\n        <translation>GUID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5539\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7587\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7850\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7853\"/>\n        <source>Data format</source>\n        <translation>数据格式</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5542\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7590\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7856\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;数据格式。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5546\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5869\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7860\"/>\n        <source>BASE64</source>\n        <translation>BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1168\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5551\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5874\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7865\"/>\n        <source>UTF-16</source>\n        <translation>UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1173\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5556\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7604\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7870\"/>\n        <source>UTF-8</source>\n        <translation>UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5561\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7875\"/>\n        <source>HEX</source>\n        <translation>HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5523\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5901\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7888\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7891\"/>\n        <source>Data</source>\n        <translation>数据</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7894\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;数据。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7565\"/>\n        <source>Vendor data</source>\n        <translation>供应商数据</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7481\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7757\"/>\n        <source>Type</source>\n        <translation>类型</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7478\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7500\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;类型。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7504\"/>\n        <source>HW</source>\n        <translation>HW</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7509\"/>\n        <source>MSG</source>\n        <translation>MSG</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7514\"/>\n        <source>MEDIA</source>\n        <translation>介质</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2292\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2298\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2313\"/>\n        <source>MAC</source>\n        <translation>MAC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2265\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;MAC settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;MAC 设置。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2374\"/>\n        <source>IPv4</source>\n        <translation>IPv4</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2380\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv4 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv4 设置。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2569\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2591\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2925\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2931\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2947\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4110\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4116\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4132\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6616\"/>\n        <source>Protocol</source>\n        <translation>协议</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3003\"/>\n        <source>Static</source>\n        <translation>静态</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2692\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Subnet mask.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;子网掩码。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2730\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5479\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5486\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5503\"/>\n        <source>IPv6</source>\n        <translation>IPv6</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2736\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv6 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv6 设置。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3008\"/>\n        <source>Stateless auto-configuration</source>\n        <translation>无状态自动配置</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3013\"/>\n        <source>Stateful auto-configuration</source>\n        <translation>有状态自动配置</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3920\"/>\n        <source>SATA</source>\n        <translation>SATA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SATA settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SATA 设置。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1387\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1393\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1409\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1658\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1664\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1679\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3900\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4035\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4041\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4057\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4191\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4197\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4212\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4496\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4502\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4610\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4616\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4988\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5009\"/>\n        <source>LUN</source>\n        <translation>LUN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4885\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4901\"/>\n        <source>URI</source>\n        <translation>URI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6105\"/>\n        <source>Disk</source>\n        <translation>磁盘</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6102\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;磁盘。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6123\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6126\"/>\n        <source>Choose disk</source>\n        <translation>选择磁盘</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6129\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Choose disk from discovered in the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;从系统中发现的磁盘中选择磁盘。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6133\"/>\n        <source>Custom</source>\n        <translation>自定义</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6147\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6150\"/>\n        <source>Reload drives</source>\n        <translation>重新加载硬盘</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reload system drives list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;重新加载系统硬盘列表。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6343\"/>\n        <source>MBR</source>\n        <translation>MBR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6177\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6183\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6199\"/>\n        <source>Partition</source>\n        <translation>分区</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6720\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6741\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6797\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6812\"/>\n        <source>Name</source>\n        <translation>名称</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7176\"/>\n        <source>BIOS Boot Specification</source>\n        <translation>BIOS 引导规范</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7405\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7411\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7427\"/>\n        <source>Description</source>\n        <translation>描述</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7639\"/>\n        <source>End</source>\n        <translation>结束</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7669\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7672\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7678\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7797\"/>\n        <source>Sub-Type</source>\n        <translation>子类型</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7675\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7697\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;子类型。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7701\"/>\n        <source>End This Instance</source>\n        <translation>结束本实例</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7706\"/>\n        <source>End Entire</source>\n        <translation>全部结束</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7718\"/>\n        <source>Unknown</source>\n        <translation>未知</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"50\"/>\n        <source>The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.</source>\n        <translation>PCI 的设备路径定义了 PCI 设备的 PCI 配置空间地址的路径。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"53\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI 的设备路径定义了 PCI 设备的 PCI 配置空间地址的路径。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"77\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"99\"/>\n        <source>PCI Function Number.</source>\n        <translation>PCI 功能编号。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"83\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"105\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Function Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI 功能编号。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"118\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"140\"/>\n        <source>PCI Device Number.</source>\n        <translation>PCI 设备编号。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"124\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Device Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI 设备编号。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"163\"/>\n        <source>PCCARD</source>\n        <translation>PCCARD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"166\"/>\n        <source>PCCARD Settings.</source>\n        <translation>PCCARD 设置。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCCARD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCCARD 设置。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"193\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"215\"/>\n        <source>Function Number (0 = First Function).</source>\n        <translation>功能编号（0 = 第一个功能）。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"199\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"221\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Function Number (0 = First Function).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;功能编号（0 = 第一个功能）。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"238\"/>\n        <source>Memory Mapped</source>\n        <translation>内存映射</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"241\"/>\n        <source>Memory Mapped Settings.</source>\n        <translation>内存映射设置。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Memory Mapped Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;内存映射设置。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"268\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"290\"/>\n        <source>The type of memory to allocate.</source>\n        <translation>要分配的内存类型。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"271\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"293\"/>\n        <source>Memory Type</source>\n        <translation>内存类型</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"274\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"296\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The type of memory to allocate.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;要分配的内存类型。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"300\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1584\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1738\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1753\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3145\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3160\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4416\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4437\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6868\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6883\"/>\n        <source>Reserved</source>\n        <translation>已预留</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"305\"/>\n        <source>Loader Code</source>\n        <translation>加载程序代码</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"310\"/>\n        <source>Loader Data</source>\n        <translation>加载程序数据</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"315\"/>\n        <source>Boot Services Code</source>\n        <translation>引导服务代码</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"320\"/>\n        <source>Boot Services Data</source>\n        <translation>引导服务数据</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"325\"/>\n        <source>Runtime Services Code</source>\n        <translation>运行时服务代码</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"330\"/>\n        <source>Runtime Services Data</source>\n        <translation>运行时服务数据</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"335\"/>\n        <source>Conventional</source>\n        <translation>传统</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"340\"/>\n        <source>Unusable</source>\n        <translation>不可用</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"345\"/>\n        <source>ACPI Reclaim</source>\n        <translation>ACPI 回收</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"350\"/>\n        <source>ACPI Memory NVS</source>\n        <translation>ACPI 内存 NVS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"355\"/>\n        <source>Memory Mapped IO</source>\n        <translation>内存映射 IO</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"360\"/>\n        <source>Memory Mapped IO Port Space</source>\n        <translation>内存映射 IO 端口空间</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"365\"/>\n        <source>Pal Code</source>\n        <translation>Pal 代码</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"370\"/>\n        <source>Persistent</source>\n        <translation>持久</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"375\"/>\n        <source>Unaccepted</source>\n        <translation>未接受</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"383\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7013\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7034\"/>\n        <source>Starting Memory Address.</source>\n        <translation>起始内存地址。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"386\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"407\"/>\n        <source>Start Address</source>\n        <translation>起始地址</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"389\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7019\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7040\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;起始内存地址。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"423\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7053\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7074\"/>\n        <source>Ending Memory Address.</source>\n        <translation>结束内存地址。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"426\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"432\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"447\"/>\n        <source>End Address</source>\n        <translation>结束地址</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"429\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7080\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ending Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;结束内存地址。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"467\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"522\"/>\n        <source>Controller</source>\n        <translation>控制器</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"470\"/>\n        <source>Controller settings.</source>\n        <translation>控制器设置。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"473\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;控制器设置。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"519\"/>\n        <source>Controller number.</source>\n        <translation>控制器编号。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"525\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;控制器编号。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"542\"/>\n        <source>BMC</source>\n        <translation>BMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"545\"/>\n        <source>The Device Path for a Baseboard Management Controller (BMC) host interface.</source>\n        <translation>底板管理控制器 (BMC) 主机接口的设备路径。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"548\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for a Baseboard Management Controller (BMC) host interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;底板管理控制器 (BMC) 主机接口的设备路径。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"602\"/>\n        <source>The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.</source>\n        <translation>底板管理控制器 (BMC) 主机接口类型：\n0x00 - 未知。\n0x01 - KCS：键盘控制器风格。\n0x02 - SMIC：服务器管理接口芯片。\n0x03 - BT：块传输。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"579\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"589\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2332\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2354\"/>\n        <source>Interface Type</source>\n        <translation>接口类型</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"582\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"612\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;底板管理控制器 (BMC) 主机接口类型：\n0x00 - 未知。\n0x01 - KCS：键盘控制器风格。\n0x02 - SMIC：服务器管理接口芯片。\n0x03 - BT：块传输。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"625\"/>\n        <source>Keyboard Controller Style</source>\n        <translation>键盘控制器样式</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"630\"/>\n        <source>Server Management Interface Chip</source>\n        <translation>服务器管理接口芯片</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"635\"/>\n        <source>Block Transfer</source>\n        <translation>块传输</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"643\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"664\"/>\n        <source>Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.</source>\n        <translation>BMC 的基地址（内存映射或 I/O）。 如果该字段的最低有效位为 1，则该地址位于 I/O 空间； 否则，该地址是内存映射的。 使用详情请参阅 IPMI 接口规范。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"667\"/>\n        <source>Base Address</source>\n        <translation>基址</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"670\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;BMC 的基地址（内存映射或 I/O）。 如果该字段的最低有效位为 1，则该地址位于 I/O 空间； 否则，该地址是内存映射的。 使用详情请参阅 IPMI 接口规范。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"688\"/>\n        <source>ACPI</source>\n        <translation>ACPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"805\"/>\n        <source>This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.</source>\n        <translation>此设备路径包含表示设备的即插即用硬件 ID 及其相应的唯一持久 ID 的 ACPI 设备 ID。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"808\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;此设备路径包含表示设备的即插即用硬件 ID 及其相应的唯一持久 ID 的 ACPI 设备 ID。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"718\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"739\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"832\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"853\"/>\n        <source>Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.</source>\n        <translation>设备 PnP 硬件 ID 存储在数字 32 位压缩 EISA 类型 ID 中。 该值必须与 ACPI 名称空间中相应的 HID 匹配。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"724\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"745\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"838\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"859\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;设备 PnP 硬件 ID 存储在数字 32 位压缩 EISA 类型 ID 中。 该值必须与 ACPI 名称空间中相应的 HID 匹配。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"779\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"872\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"893\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.</source>\n        <translation>如果两个设备具有相同的 HID，则 ACPI 需要唯一的 ID。 该值还必须与 ACPI 名称空间中相应的 UID/HID 对匹配。 仅支持 32 位数值类型的 UID； 因此，字符串不得用于 ACPI 名称空间中的 UID。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"764\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"785\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"899\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;如果两个设备具有相同的 HID，则 ACPI 需要唯一的 ID。 该值还必须与 ACPI 名称空间中相应的 UID/HID 对匹配。 仅支持 32 位数值类型的 UID； 因此，字符串不得用于 ACPI 名称空间中的 UID。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"802\"/>\n        <source>Expanded</source>\n        <translation>扩展</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"912\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"933\"/>\n        <source>Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.</source>\n        <translation>设备兼容的 PnP 硬件 ID 存储在数字 32 位压缩 EISA 类型 ID 中。 该值必须至少与 ACPI 命名空间中相应 CID 返回的兼容设备 ID 之一匹配。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"915\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"921\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"936\"/>\n        <source>CID</source>\n        <translation>CID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"918\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"939\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;设备兼容的 PnP 硬件 ID 存储在数字 32 位压缩 EISA 类型 ID 中。 该值必须至少与 ACPI 命名空间中相应 CID 返回的兼容设备 ID 之一匹配。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"952\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"974\"/>\n        <source>Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.</source>\n        <translation>设备 PnP 硬件 ID 以字符串形式存储。 该值必须与 ACPI 名称空间中相应的 HID 匹配。 如果该字符串的长度为 0，则使用 HID 字段。 如果该字符串的长度大于 0，则该字段将取代 HID 字段。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"955\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"961\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"977\"/>\n        <source>HIDSTR</source>\n        <translation>HIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"958\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"980\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;设备 PnP 硬件 ID 以字符串形式存储。 该值必须与 ACPI 名称空间中相应的 HID 匹配。 如果该字符串的长度为 0，则使用 HID 字段。 如果该字符串的长度大于 0，则该字段将取代 HID 字段。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"987\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1009\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.</source>\n        <translation>如果两个设备具有相同的 HID，则 ACPI 需要唯一的 ID。 该值还必须与 ACPI 名称空间中相应的 UID/HID 对匹配。 该值存储为字符串。 如果该字符串的长度为 0，则使用 UID 字段。 如果该字符串的长度大于 0，则该字段将取代 UID 字段。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"990\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"996\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1012\"/>\n        <source>UIDSTR</source>\n        <translation>UIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"993\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1015\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;如果两个设备具有相同的 HID，则 ACPI 需要唯一的 ID。 该值还必须与 ACPI 名称空间中相应的 UID/HID 对匹配。 该值存储为字符串。 如果该字符串的长度为 0，则使用 UID 字段。 如果该字符串的长度大于 0，则该字段将取代 UID 字段。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1044\"/>\n        <source>Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.</source>\n        <translation>设备兼容的 PnP 硬件 ID 以字符串形式存储。 该值必须至少与 ACPI 命名空间中相应 CID 返回的兼容设备 ID 之一匹配。 如果该字符串的长度为 0，则使用 CID 字段。 如果该字符串的长度大于 0，则该字段将取代 CID 字段。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1025\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1031\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1047\"/>\n        <source>CIDSTR</source>\n        <translation>CIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1028\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1050\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;设备兼容的 PnP 硬件 ID 以字符串形式存储。 该值必须至少与 ACPI 命名空间中相应 CID 返回的兼容设备 ID 之一匹配。 如果该字符串的长度为 0，则使用 CID 字段。 如果该字符串的长度大于 0，则该字段将取代 CID 字段。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1061\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1094\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1100\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1115\"/>\n        <source>ADR</source>\n        <translation>ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1064\"/>\n        <source>The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.</source>\n        <translation>ADR 设备路径用于包含视频输出设备属性以支持图形输出协议。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1067\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR 设备路径用于包含视频输出设备属性以支持图形输出协议。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1091\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1112\"/>\n        <source>ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required</source>\n        <translation>ADR 值。 对于视频输出设备，该字段的值来自表 B-2 ACPI 3.0 规范。 至少需要一个 ADR 值</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1097\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1118\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR 值。 对于视频输出设备，该字段的值来自表 B-2 ACPI 3.0 规范。 至少需要一个 ADR 值&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1131\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1192\"/>\n        <source>This device path may optionally contain more than one ADR entry.</source>\n        <translation>该设备路径可以选择包含多个 ADR 条目。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1195\"/>\n        <source>Additional ADR</source>\n        <translation>额外的 ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1198\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path may optionally contain more than one ADR entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;该设备路径可以选择包含多个 ADR 条目。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1153\"/>\n        <source>Additional ADR format.</source>\n        <translation>额外的 ADR 格式。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1156\"/>\n        <source>Additional ADR format</source>\n        <translation>额外的 ADR 格式</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1159\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Additional ADR format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;额外的 ADR 格式。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1209\"/>\n        <source>NVDIMM</source>\n        <translation>NVDIMM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1212\"/>\n        <source>This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.</source>\n        <translation>此设备路径使用 ACPI 6.0 规范定义的 NFIT 设备句柄作为标识符来描述 NVDIMM 设备。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;此设备路径使用 ACPI 6.0 规范定义的 NFIT 设备句柄作为标识符来描述 NVDIMM 设备。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1260\"/>\n        <source>NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.</source>\n        <translation>NFIT 设备句柄 - 唯一物理标识符。 有关用于此句柄的字段的具体定义，请参阅“ACPI 定义的设备和设备特定对象”部分的“NVDIMM 设备”子章节。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1242\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1248\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1263\"/>\n        <source>NFIT Device Handle</source>\n        <translation>NFIT 设备句柄</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1245\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFIT 设备句柄 - 唯一物理标识符。 有关用于此句柄的字段的具体定义，请参阅“ACPI 定义的设备和设备特定对象”部分的“NVDIMM 设备”子章节。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1284\"/>\n        <source>ATAPI</source>\n        <translation>ATAPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1287\"/>\n        <source>ATAPI Settings.</source>\n        <translation>ATAPI 设置。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI 设置。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1336\"/>\n        <source>Set to zero for primary or one for secondary.</source>\n        <translation>初级设置为零，次级设置为 1。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1317\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1323\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1339\"/>\n        <source>Primary</source>\n        <translation>基本</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1320\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1342\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for primary or one for secondary.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;初级设置为零，次级设置为 1。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1349\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1371\"/>\n        <source>Set to zero for master or one for slave mode.</source>\n        <translation>对于主模式设置为零，对于从模式设置为 1。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1374\"/>\n        <source>Slave</source>\n        <translation>从属</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1377\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for master or one for slave mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;对于主模式设置为零，对于从模式设置为 1。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1384\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1406\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4054\"/>\n        <source>Logical Unit Number.</source>\n        <translation>逻辑单元号。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1390\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1412\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4038\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;逻辑单元号。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1429\"/>\n        <source>SCSI</source>\n        <translation>SCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1432\"/>\n        <source>SCSI Settings.</source>\n        <translation>SCSI 设置。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1435\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI 设置。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1481\"/>\n        <source>Target ID on the SCSI bus (PUN).</source>\n        <translation>SCSI 总线 (PUN) 上的目标 ID。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1962\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1984\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4969\"/>\n        <source>Target ID</source>\n        <translation>目标 ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1465\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1487\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the SCSI bus (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI 总线 (PUN) 上的目标 ID。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4985\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5006\"/>\n        <source>Logical Unit Number (LUN).</source>\n        <translation>逻辑单元号 (LUN)。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5012\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;逻辑单元号 (LUN)。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1545\"/>\n        <source>Fibre Channel</source>\n        <translation>光纤通道</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1548\"/>\n        <source>Fibre Channel Settings</source>\n        <translation>光纤通道设置</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1551\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;光纤通道设置&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1596\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1750\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4434\"/>\n        <source>Reserved.</source>\n        <translation>预留。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1581\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1602\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1756\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3142\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4419\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;预留。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1615\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1636\"/>\n        <source>Fibre Channel World Wide Name.</source>\n        <translation>光纤通道全球通用名称。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1624\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1639\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4456\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4477\"/>\n        <source>World Wide Name</source>\n        <translation>全球通用名称</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1621\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1642\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel World Wide Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;光纤通道全球通用名称。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1676\"/>\n        <source>Fibre Channel Logical Unit Number.</source>\n        <translation>光纤通道逻辑单元号。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1661\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1682\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;光纤通道逻辑单元号。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1699\"/>\n        <source>Firewire</source>\n        <translation>火线</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1702\"/>\n        <source>Firewire Settings.</source>\n        <translation>火线设置。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1705\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firewire Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;火线设置。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1790\"/>\n        <source>1394 Global Unique ID (GUID)</source>\n        <translation>1394 全球唯一ID (GUID)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1796\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 Global Unique ID (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 全球唯一ID (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1816\"/>\n        <source>USB settings.</source>\n        <translation>USB 设置。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1865\"/>\n        <source>USB Parent Port Number.</source>\n        <translation>USB 父端口号。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1852\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1868\"/>\n        <source>Parent Port</source>\n        <translation>父端口</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1871\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Parent Port Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB 父端口号。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1906\"/>\n        <source>USB Interface Number.</source>\n        <translation>USB 接口编号。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1912\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB 接口编号。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1929\"/>\n        <source>I2O</source>\n        <translation>I2O</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1932\"/>\n        <source>I2O Settings</source>\n        <translation>I2O 设置</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1935\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;I2O Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;I2O 设置&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1981\"/>\n        <source>Target ID (TID) for a device.</source>\n        <translation>设备的目标 ID (TID)。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1965\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1987\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID (TID) for a device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;设备的目标 ID (TID)。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2004\"/>\n        <source>InfiniBand</source>\n        <translation>无限带宽</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2007\"/>\n        <source>InfiniBand Settings.</source>\n        <translation>无限带宽设置。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2010\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;InfiniBand Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;无限带宽设置。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2034\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2067\"/>\n        <source>Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.</source>\n        <translation>帮助识别/管理 InfiniBand 设备路径元素的标志：\n位 0 - IOC/服务（0b = IOC，1b = 服务）。\n位 1 - 扩展引导环境。\n位 2 - 控制台协议。\n位 3 - 存储协议。\n位 4 - 网络协议。\n所有其他位均保留。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2043\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2055\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2076\"/>\n        <source>Resource Flags</source>\n        <translation>资源标志</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2046\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2079\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;用于帮助识别/管理无限带宽设备路径元素的标志：\n位 0 - IOC/服务（0b = IOC，1b = 服务）。\n位 1 - 扩展引导环境。\n位 2 - 控制台协议。\n位 3 - 存储协议。\n位 4 - 网络协议。\n所有其他位均保留。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2098\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2119\"/>\n        <source>128-bit Global Identifier for remote fabric port</source>\n        <translation>用于远程结构端口的 128 位全局标识符</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2101\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2122\"/>\n        <source>PORT GID</source>\n        <translation>PORT GID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2104\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2125\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;128-bit Global Identifier for remote fabric port&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;用于远程结构端口的 128 位全局标识符&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2135\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2156\"/>\n        <source>64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)</source>\n        <translation>远程 IOC 或服务器进程的 64 位唯一标识符。 资源标志（位 0）指定的字段的解释</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2138\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2144\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2159\"/>\n        <source>IOC GUID/Service ID</source>\n        <translation>IOC GUID/服务 ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2141\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2162\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;远程 IOC 或服务器进程的 64 位唯一标识符。 资源标志（位 0）指定的字段的解释&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2175\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2196\"/>\n        <source>64-bit persistent ID of remote IOC port.</source>\n        <translation>远程 IOC 端口的 64 位持久 ID。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2184\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2199\"/>\n        <source>Target Port ID</source>\n        <translation>目标端口 ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2181\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote IOC port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;远程 IOC 端口的 64 位持久 ID。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2236\"/>\n        <source>64-bit persistent ID of remote device.</source>\n        <translation>远程设备的 64 位持久 ID。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2239\"/>\n        <source>Device ID</source>\n        <translation>设备 ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;远程设备的 64 位持久 ID。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2259\"/>\n        <source>MAC Address</source>\n        <translation>MAC 地址</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2262\"/>\n        <source>MAC settings.</source>\n        <translation>MAC 设置。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2289\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2310\"/>\n        <source>The MAC address for a network interface padded with 0s.</source>\n        <translation>以 0 填充的网络接口的 MAC 地址。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2295\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2316\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The MAC address for a network interface padded with 0s.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;以 0 填充的网络接口的 MAC 地址。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2329\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2351\"/>\n        <source>Network interface type (i.e., 802.3, FDDI). See RFC 3232.</source>\n        <translation>网络接口类型（例如 802.3、FDDI）。 请参阅 RFC 3232。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2357\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network interface type (i.e., 802.3, FDDI). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;网络接口类型（例如 802.3、FDDI）。 请参阅 RFC 3232。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2377\"/>\n        <source>IPv4 settings.</source>\n        <translation>IPv4 设置。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2425\"/>\n        <source>The local IPv4 address.</source>\n        <translation>本地 IPv4 地址。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2407\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2763\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2784\"/>\n        <source>Local IP Address</source>\n        <translation>本地 IP 地址</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2431\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;本地 IPv4 地址。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2465\"/>\n        <source>The remote IPv4 address.</source>\n        <translation>远程 IPv4 地址。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2447\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2824\"/>\n        <source>Remote IP Address</source>\n        <translation>远程 IP 地址</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2471\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;远程 IPv4 地址。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2862\"/>\n        <source>The local port number.</source>\n        <translation>本地端口号。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2487\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2865\"/>\n        <source>Local Port</source>\n        <translation>本地端口</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2490\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;本地端口号。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2547\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2903\"/>\n        <source>The remote port number.</source>\n        <translation>远程端口号。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2550\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2906\"/>\n        <source>Remote Port</source>\n        <translation>远程端口</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2553\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2909\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;远程端口号。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2566\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2588\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2922\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2944\"/>\n        <source>The network protocol (i.e., UDP, TCP). See RFC 3232.</source>\n        <translation>网络协议（例如 UDP、TCP）。 请参阅 RFC 3232。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2928\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2950\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The network protocol (i.e., UDP, TCP). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;网络协议（例如 UDP、TCP）。 请参阅 RFC 3232。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2631\"/>\n        <source>0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.</source>\n        <translation>0x00 - 源 IP 地址是通过 DHCP 分配的。\n0x01 - 源 IP 地址是静态绑定的。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2635\"/>\n        <source>Static IP Address</source>\n        <translation>静态 IP 地址</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - 源 IP 地址是通过 DHCP 分配的。\n0x01 - 源 IP 地址是静态绑定的。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2667\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3083\"/>\n        <source>The Gateway IP Address.</source>\n        <translation>网关 IP 地址。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3071\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3086\"/>\n        <source>Gateway IP Address</source>\n        <translation>网关 IP 地址</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2673\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Gateway IP Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;网关 IP 地址。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2686\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2707\"/>\n        <source>Subnet mask.</source>\n        <translation>子网掩码。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2689\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2695\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2710\"/>\n        <source>Subnet Mask</source>\n        <translation>子网掩码</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2733\"/>\n        <source>IPv6 settings.</source>\n        <translation>IPv6 设置。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2760\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2781\"/>\n        <source>The local IPv6 address.</source>\n        <translation>本地 IPv6 地址。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2787\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;本地 IPv6 地址。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2821\"/>\n        <source>The remote IPv6 address.</source>\n        <translation>远程 IPv6 地址。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;远程 IPv6 地址。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2963\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2989\"/>\n        <source>0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.</source>\n        <translation>0x00 - 手动配置本地 IP 地址。\n0x01 - 本地 IP 地址通过 IPv6 无状态自动配置分配。\n0x02 - 本地 IP 地址是通过 IPv6 状态配置分配的。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2976\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2994\"/>\n        <source>IP Address Origin</source>\n        <translation>IP 地址来源</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2971\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2997\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - 手动配置本地 IP 地址。\n0x01 - 本地 IP 地址通过 IPv6 无状态自动配置分配。\n0x02 - 本地 IP 地址是通过 IPv6 状态配置分配的。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3021\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3043\"/>\n        <source>The Prefix Length.</source>\n        <translation>前缀长度。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3024\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3030\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3046\"/>\n        <source>Prefix Length</source>\n        <translation>前缀长度</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3027\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3049\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Prefix Length.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;前缀长度。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3106\"/>\n        <source>UART</source>\n        <translation>UART</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3109\"/>\n        <source>UART Settings.</source>\n        <translation>UART 设置。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3112\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART 设置。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3176\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3197\"/>\n        <source>The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.</source>\n        <translation>UART 类型设备的波特率设置。 值 0 表示将使用设备默认波特率。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3179\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3185\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3200\"/>\n        <source>Baud Rate</source>\n        <translation>波特率</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3182\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3203\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART 类型设备的波特率设置。 值 0 表示将使用设备默认波特率。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3216\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3238\"/>\n        <source>The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.</source>\n        <translation>UART 类型设备的数据位数。 值 0 表示将使用设备默认的数据位数。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3219\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3225\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3241\"/>\n        <source>Data Bits</source>\n        <translation>数据位数</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3222\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART 类型设备的数据位数。 值 0 表示将使用设备默认的数据位数。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3257\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3291\"/>\n        <source>The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.</source>\n        <translation>UART 类型设备的奇偶校验设置：\n0x00 - 默认奇偶校验。\n0x01 - 无奇偶校验。\n0x02 - 偶校验。\n0x03 - 奇校验。\n0x04 - 标记奇偶校验。\n0x05 - 空间奇偶校验。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3266\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3300\"/>\n        <source>Parity</source>\n        <translation>奇偶校验</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3303\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART 类型设备的奇偶校验设置：\n0x00 - 默认奇偶校验。\n0x01 - 无奇偶校验。\n0x02 - 偶校验。\n0x03 - 奇校验。\n0x04 - 标记奇偶校验。\n0x05 - 空间奇偶校验。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3313\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3394\"/>\n        <source>Default</source>\n        <translation>默认</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3318\"/>\n        <source>No</source>\n        <translation>否</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3323\"/>\n        <source>Even</source>\n        <translation>偶数</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3328\"/>\n        <source>Odd</source>\n        <translation>奇数</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3333\"/>\n        <source>Mark</source>\n        <translation>标记</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3338\"/>\n        <source>Space</source>\n        <translation>空间</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3346\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3376\"/>\n        <source>The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.</source>\n        <translation>UART 类型设备的停止位数量：\n0x00 - 默认停止位。\n0x01 - 1 个停止位。\n0x02 - 1.5 停止位。\n0x03 - 2 个停止位。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3353\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3363\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3383\"/>\n        <source>Stop Bits</source>\n        <translation>停止位</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3356\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART 类型设备的停止位数量：\n0x00 - 默认停止位。\n0x01 - 1 个停止位。\n0x02 - 1.5 个停止位。\n0x03 - 2 个停止位。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3399\"/>\n        <source>1</source>\n        <translation>1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3404\"/>\n        <source>1.5</source>\n        <translation>1.5</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3409\"/>\n        <source>2</source>\n        <translation>2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3421\"/>\n        <source>USB Class</source>\n        <translation>USB 类</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3424\"/>\n        <source>USB Class Settings.</source>\n        <translation>USB 类设置。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3427\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Class Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB 类设置。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3451\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3472\"/>\n        <source>Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.</source>\n        <translation>由 USB-IF 分配的供应商 ID。 值 0xFFFF 将匹配任何供应商 ID。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3454\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3460\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3475\"/>\n        <source>Vendor ID</source>\n        <translation>供应商 ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3457\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3478\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;由 USB-IF 分配的供应商 ID。 值 0xFFFF 将匹配任何供应商 ID。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3491\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3512\"/>\n        <source>Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.</source>\n        <translation>由 USB-IF 分配的产品 ID。 值 0xFFFF 将匹配任何产品 ID。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3515\"/>\n        <source>Product ID</source>\n        <translation>产品 ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3518\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;由 USB-IF 分配的产品 ID。 值 0xFFFF 将匹配任何产品 ID。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3552\"/>\n        <source>The class code assigned by the USB-IF. A value of 0xFF will match any class code.</source>\n        <translation>USB-IF 分配的类别代码。 0xFF 值将匹配任何类别代码。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3540\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3555\"/>\n        <source>Device Class</source>\n        <translation>设备类别</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3537\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3558\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The class code assigned by the USB-IF. A value of 0xFF will match any class code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB-IF 分配的类别代码。 0xFF 值将匹配任何类别代码。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3592\"/>\n        <source>The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.</source>\n        <translation>USB-IF 分配的子类代码。 0xFF 值将匹配任何子类代码。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3574\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3595\"/>\n        <source>Device Subclass</source>\n        <translation>设备子类</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB-IF 分配的子类代码。 0xFF 值将匹配任何子类代码。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3632\"/>\n        <source>The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.</source>\n        <translation>USB-IF 分配的协议代码。 值 0xFF 将匹配任何协议代码。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3635\"/>\n        <source>Device Protocol</source>\n        <translation>设备协议</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3617\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;由 USB-IF 分配的协议代码。数值 0xFF 匹配所有协议代码。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3655\"/>\n        <source>USB WWID</source>\n        <translation>USB WWID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3658\"/>\n        <source>This device path describes a USB device using its serial number.</source>\n        <translation>此设备路径用序列号描述了一个 USB 设备。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3661\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a USB device using its serial number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;此设备路径用序列号描述了一个 USB 设备。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3685\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3707\"/>\n        <source>USB interface Number.</source>\n        <translation>USB 接口编号。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB 接口编号。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3747\"/>\n        <source>USB vendor id of the device.</source>\n        <translation>设备的 USB 制造商 ID。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3750\"/>\n        <source>Device Vendor Id</source>\n        <translation>设备制造商 ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3753\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB vendor id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;设备的 USB 制造商 ID。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3787\"/>\n        <source>USB product id of the device.</source>\n        <translation>设备的 USB 产品 ID。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3790\"/>\n        <source>Device Product Id</source>\n        <translation>设备产品 ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3793\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB product id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;设备的 USB 产品 ID。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3828\"/>\n        <source>Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).</source>\n        <translation>USB 序列号的最后 64 个或更少的 UTF-16 字符。字符串的长度由长度字段减去序列号字段偏移量 (10) 决定。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3815\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3831\"/>\n        <source>Serial Number</source>\n        <translation>序列号</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3812\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB 序列号的最后 64 个或更少的 UTF-16 字符。字符串的长度由长度字段减去序列号字段偏移量 (10) 决定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3845\"/>\n        <source>Device Logical Unit</source>\n        <translation>设备逻辑单元</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3848\"/>\n        <source>Device Logical Unit Settings.</source>\n        <translation>设备逻辑单元设置。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3851\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device Logical Unit Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;设备逻辑单元设置。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3897\"/>\n        <source>Logical Unit Number for the interface.</source>\n        <translation>接口的逻辑单元号。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3903\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number for the interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;接口的逻辑单元号。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3923\"/>\n        <source>SATA settings.</source>\n        <translation>SATA 设置。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3950\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3972\"/>\n        <source>The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.</source>\n        <translation>便于连接到设备或端口倍增器的 HBA 端口号。值 0xFFFF 为保留值。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3953\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3975\"/>\n        <source>HBA Port</source>\n        <translation>HBA 端口</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3956\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3978\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;用于连接设备或端口倍增器的 HBA 端口号。值 0xFFFF 为保留值。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4013\"/>\n        <source>The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.</source>\n        <translation>端口倍增器端口号，用于方便连接到设备。如果设备直接连接到 HBA，则必须设置为 0xFFFF。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4000\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4016\"/>\n        <source>Port Multiplier Port</source>\n        <translation>端口复用器端口</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3997\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4019\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;端口倍增器端口号，用于连接设备。如果设备直接连接到 HBA，则必须设置为 0xFFFF。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4077\"/>\n        <source>iSCSI</source>\n        <translation>iSCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4080\"/>\n        <source>iSCSI Settings.</source>\n        <translation>iSCSI 设置。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4083\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI 设置。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4129\"/>\n        <source>Network Protocol (0 = TCP, 1+ = reserved).</source>\n        <translation>网络协议（0 = TCP，1+ = 保留）。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4113\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network Protocol (0 = TCP, 1+ = reserved).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;网络协议（0 = TCP，1+ = 保留）。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4148\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4169\"/>\n        <source>iSCSI Login Options.</source>\n        <translation>iSCSI 登录设置。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4151\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4172\"/>\n        <source>Options</source>\n        <translation>设置</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4154\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4175\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Login Options.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI 登录设置。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4188\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4209\"/>\n        <source>8 byte array containing the iSCSI Logical Unit Number.</source>\n        <translation>包含 iSCSI 逻辑单元号的 8 字节数组。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4194\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing the iSCSI Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;包含 iSCSI 逻辑单元号的 8 字节数组。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4228\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4250\"/>\n        <source>iSCSI Target Portal group tag the initiator intends to establish a session with.</source>\n        <translation>启动器想要与之建立会话的 iSCSI 目标门户组标签。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4231\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4253\"/>\n        <source>Target Portal Group</source>\n        <translation>目标门户组</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4234\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4256\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Target Portal group tag the initiator intends to establish a session with.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;启动器打算与其建立会话的 iSCSI 目标门户组标签。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4291\"/>\n        <source>iSCSI NodeTarget Name.</source>\n        <translation>iSCSI 节点目标名称。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4272\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4294\"/>\n        <source>Target Name</source>\n        <translation>目标名称</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4275\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4297\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI NodeTarget Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI 节点目标名称。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4308\"/>\n        <source>VLAN</source>\n        <translation>VLAN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4311\"/>\n        <source>VLAN Settings.</source>\n        <translation>VLAN 设置。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4314\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN 设置。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4360\"/>\n        <source>VLAN identifier (0-4094).</source>\n        <translation>VLAN 标识符（0-4094）。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4341\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4347\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4363\"/>\n        <source>Vlan ID</source>\n        <translation>Vlan ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4344\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4366\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN identifier (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN 标识符 (0-4094)。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4383\"/>\n        <source>Fibre Channel Ex</source>\n        <translation>光纤通道扩展</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4386\"/>\n        <source>The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation>光纤通道 Ex 设备路径阐明了逻辑单元号字段的定义，以符合 T-10 SCSI 架构模型 4 规范。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4389\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;光纤通道 Ex 设备路径阐明了逻辑单元号字段的定义，以符合 T-10 SCSI 架构模型 4 规范。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4474\"/>\n        <source>8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).</source>\n        <translation>包含光纤通道终端设备端口名称（又称全球名称）的 8 字节数组。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4480\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;包含光纤通道终端设备端口名称（又称全球名称）的 8 字节数组。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4514\"/>\n        <source>8 byte array containing Fibre Channel Logical Unit Number.</source>\n        <translation>包含光纤通道逻辑单元号的 8 字节数组。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4499\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4520\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;包含光纤通道逻辑单元号的 8 字节数组。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4537\"/>\n        <source>SAS Extended Messaging</source>\n        <translation>SAS 扩展消息传递</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4540\"/>\n        <source>The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation>SAS Ex 设备路径明确了逻辑单元号字段的定义，以符合 T-10 SCSI 架构模型 4 规范。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4543\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SAS Ex 设备路径阐明了逻辑单元号字段的定义，以符合 T-10 SCSI 架构模型 4 规范。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4567\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4588\"/>\n        <source>8-byte array of the SAS Address for Serial Attached SCSI Target Port.</source>\n        <translation>串行连接 SCSI 目标端口的 SAS 地址的 8 字节数组。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4570\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4576\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4591\"/>\n        <source>SAS Address</source>\n        <translation>SAS 地址</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4573\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4594\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Address for Serial Attached SCSI Target Port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;串行连接 SCSI 目标端口的 SAS 地址的 8 字节数组。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4628\"/>\n        <source>8-byte array of the SAS Logical Unit Number.</source>\n        <translation>SAS 逻辑单元号的 8 字节数组。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4613\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4634\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SAS 逻辑单元号的 8 字节数组。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4647\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4668\"/>\n        <source>More Information about the device and its interconnect.</source>\n        <translation>有关该设备及其互连的更多信息。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4650\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4656\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4671\"/>\n        <source>Device and Topology Info</source>\n        <translation>设备和拓扑信息</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4653\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4674\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;More Information about the device and its interconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;有关该设备及其互连的更多信息。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4687\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4709\"/>\n        <source>Relative Target Port (RTP).</source>\n        <translation>相对目标端口 (RTP)。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4690\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4696\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4712\"/>\n        <source>Relative Target Port</source>\n        <translation>相对目标端口</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4715\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Relative Target Port (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;相对目标端口 (RTP)。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4732\"/>\n        <source>NVM Express NS</source>\n        <translation>NVM Express NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4735\"/>\n        <source>NVM Express Namespace Settings.</source>\n        <translation>NVM Express 命名空间设置。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4738\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM Express Namespace Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM Express 命名空间设置。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4783\"/>\n        <source>Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.</source>\n        <translation>命名空间标识符 (NSID)。0 和 0xFFFFFFFF 的值无效。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4765\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4771\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4786\"/>\n        <source>NSID</source>\n        <translation>NSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4768\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4789\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;命名空间标识符 (NSID)。0 和 0xFFFFFFFF 的值无效。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4802\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4823\"/>\n        <source>This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.</source>\n        <translation>此字段包含 IEEE 扩展唯一标识符 (EUI-64)。没有 EUI-64 值的设备必须用 0 值初始化此字段。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4805\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4811\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4826\"/>\n        <source>EUI-64</source>\n        <translation>EUI-64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4808\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4829\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;此字段包含 IEEE 扩展唯一标识符 (EUI-64)。没有 EUI-64 值的设备必须将此字段初始化为 0。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4849\"/>\n        <source>Refer to RFC 3986 for details on the URI contents.</source>\n        <translation>有关 URI 内容的详细信息，请参阅 RFC 3986。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Refer to RFC 3986 for details on the URI contents.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;有关 URI 内容的详细信息，请参阅 RFC 3986。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4876\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4898\"/>\n        <source>Instance of the URI pursuant to RFC 3986.</source>\n        <translation>符合 RFC 3986 的 URI 实例。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4882\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Instance of the URI pursuant to RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;符合 RFC 3986 的 URI 实例。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4915\"/>\n        <source>UFS</source>\n        <translation>UFS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4918\"/>\n        <source>UFS Settings.</source>\n        <translation>UFS 设置。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS 设置。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4966\"/>\n        <source>Target ID on the UFS interface (PUN).</source>\n        <translation>UFS 接口上的目标 ID (PUN)。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4972\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the UFS interface (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS 接口上的目标 ID (PUN)。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5029\"/>\n        <source>SD</source>\n        <translation>SD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5032\"/>\n        <source>SD Settings.</source>\n        <translation>SD 设置。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5035\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SD 设置。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5081\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5299\"/>\n        <source>Slot Number</source>\n        <translation>槽位号</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5084\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5280\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5286\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5302\"/>\n        <source>Slot</source>\n        <translation>槽位</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5087\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5283\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5305\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Slot Number&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;槽位号&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5104\"/>\n        <source>Bluetooth</source>\n        <translation>蓝牙</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5107\"/>\n        <source>EFI Bluetooth Settings.</source>\n        <translation>EFI 蓝牙设置。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5110\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI Bluetooth Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI 蓝牙设置。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5155\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5373\"/>\n        <source>48-bit Bluetooth device address.</source>\n        <translation>48 位蓝牙设备地址。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5143\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5158\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5361\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5376\"/>\n        <source>Device Address</source>\n        <translation>设备地址</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5161\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5379\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-bit Bluetooth device address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48 位蓝牙设备地址。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5178\"/>\n        <source>Wi-Fi</source>\n        <translation>Wi-Fi</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5181\"/>\n        <source>Wi-Fi Settings.</source>\n        <translation>Wi-Fi 设置。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5184\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wi-Fi Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wi-Fi 设置。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5208\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5230\"/>\n        <source>SSID in octet string.</source>\n        <translation>八位字节字符串中的 SSID。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5211\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5217\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5233\"/>\n        <source>SSID</source>\n        <translation>SSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5214\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5236\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID in octet string.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;八位字节字符串中的 SSID。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5247\"/>\n        <source>eMMC</source>\n        <translation>eMMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5250\"/>\n        <source>Embedded Multi-Media Card Settings.</source>\n        <translation>嵌入式多媒体卡设置。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5253\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Embedded Multi-Media Card Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;嵌入式多媒体卡设置。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5322\"/>\n        <source>BluetoothLE</source>\n        <translation>BluetoothLE</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5325\"/>\n        <source>EFI BluetoothLE Settings.</source>\n        <translation>EFI BluetoothLE 设置。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5328\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI BluetoothLE Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI BluetoothLE 设置。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5416\"/>\n        <source>0x00 - Public Device Address.\n0x01 - Random Device Address.</source>\n        <translation>0x00 - 公共设备地址。\n0x01 - 随机设备地址。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5396\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5403\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5420\"/>\n        <source>Address Type</source>\n        <translation>地址类型</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5399\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5423\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Public Device Address.\n0x01 - Random Device Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - 公共设备地址。\n0x01 - 随机设备地址。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5428\"/>\n        <source>Public</source>\n        <translation>公共</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5433\"/>\n        <source>Random</source>\n        <translation>随机</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5445\"/>\n        <source>DNS</source>\n        <translation>DNS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5448\"/>\n        <source>DNS Settings.</source>\n        <translation>DNS 设置。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5451\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DNS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DNS 设置。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5499\"/>\n        <source>0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.</source>\n        <translation>0x00 - DNS 服务器地址为 IPv4 地址。\n0x01 - DNS 服务器地址为 IPv6 地址。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5482\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5506\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - DNS 服务器地址为 IPv4 地址。\n0x01 - DNS 服务器地址为 IPv6 地址。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5514\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5575\"/>\n        <source>One or more instances of the DNS server address in EFI_IP_ADDRESS.</source>\n        <translation>EFI_IP_ADDRESS 中的 DNS 服务器地址的一个或多个实例。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5520\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5581\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;One or more instances of the DNS server address in EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI_IP_ADDRESS 中的一个或多个 DNS 服务器地址实例。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5536\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7584\"/>\n        <source>Data format.</source>\n        <translation>数据格式。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5592\"/>\n        <source>NVDIMM NS</source>\n        <translation>NVDIMM NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5595\"/>\n        <source>This device path describes a bootable NVDIMM namespace that is defined by a namespace label.</source>\n        <translation>该设备路径描述了由命名空间标签定义的可启动 NVDIMM 命名空间。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVDIMM namespace that is defined by a namespace label.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;此设备路径描述了由命名空间标签定义的可启动 NVDIMM 命名空间。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5622\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5643\"/>\n        <source>Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.</source>\n        <translation>命名空间唯一标签标识符 UUID。有关此字段的详细信息，请参阅 NVDIMM 标签协议 - 标签定义部分中的 Uuid 描述。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5646\"/>\n        <source>UUID</source>\n        <translation>UUID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5628\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5649\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;命名空间唯一标签标识符 UUID。有关此字段的详细信息，请参阅 NVDIMM 标签协议 - 标签定义部分中的 Uuid 描述。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5663\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5698\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5706\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5724\"/>\n        <source>REST Service</source>\n        <translation>REST 服务</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5666\"/>\n        <source>REST Service Settings.</source>\n        <translation>重置服务设置。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5669\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;REST Service Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;重置服务设置。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5719\"/>\n        <source>0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.</source>\n        <translation>0x01 - Redfish REST 服务。\n0x02 - OData REST 服务。\n0xFF - 供应商特定的 REST 服务。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5701\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5727\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Redfish REST 服务。\n0x02 - OData REST 服务。\n0xFF - 供应商特定的 REST 服务。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5733\"/>\n        <source>Redfish</source>\n        <translation>Redfish</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5738\"/>\n        <source>OData</source>\n        <translation>OData</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5743\"/>\n        <source>Vendor specific</source>\n        <translation>制造商专用</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5775\"/>\n        <source>0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.</source>\n        <translation>0x01 - 带内 REST 服务。\n0x02 - 带外 REST 服务。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5755\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5779\"/>\n        <source>Access Mode</source>\n        <translation>访问模式</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5782\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - 带内 REST 服务。\n0x02 - 带外 REST 服务。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5787\"/>\n        <source>In-Band</source>\n        <translation>波段内</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5792\"/>\n        <source>Out-of-band</source>\n        <translation>超出波段</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5821\"/>\n        <source>GUID of vendor specific REST service.</source>\n        <translation>供应商特定 REST 服务的 GUID。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID of vendor specific REST service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;供应商特定 REST 服务的 GUID。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5898\"/>\n        <source>Vendor-defined data.</source>\n        <translation>制造商定义数据。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;制造商定义数据。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5915\"/>\n        <source>NVMe-oF NS</source>\n        <translation>NVMe-oF NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5918\"/>\n        <source>This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.</source>\n        <translation>该设备路径描述了由唯一的命名空间和子系统 NQN 标识定义的可启动 NVMe over Fiber 命名空间。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;此设备路径描述了由唯一命名空间和子系统 NQN 标识定义的可启动 NVMe over Fiber 命名空间。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5967\"/>\n        <source>Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.</source>\n        <translation>命名空间标识符类型 (NIDT)，用于 NVM Express 基本规范在 CNS 03h NIDT 字段（1h、2h 或 3h）中定义的全局唯一类型值。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5970\"/>\n        <source>NIDT</source>\n        <translation>NIDT</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5973\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;命名空间标识符类型 (NIDT)，用于 NVM Express 基本规范在 CNS 03h NIDT 字段（1h、2h 或 3h）中定义的全局唯一类型值。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5986\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6007\"/>\n        <source>Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.</source>\n        <translation>命名空间标识符 (NID)，NVM Express 基本规范以大端格式在命名空间标识描述符列表 (CNS 03h) 中定义的全局唯一值。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5989\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5995\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6010\"/>\n        <source>NID</source>\n        <translation>NID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5992\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6013\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;命名空间标识符（NID），是 NVM Express 基本规范在命名空间标识描述符列表（CNS 03h）中以大端格式定义的全局唯一值。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6023\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6045\"/>\n        <source>Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.</source>\n        <translation>NVM 子系统的唯一标识符，以 n 字节的 UTF-8 字符串形式存储，符合 NVM Express 基本规范中的 NVMe 限定名称。子系统 NQN 用于识别和身份验证。最大长度为 224 字节。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6026\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6048\"/>\n        <source>Subsystem NQN</source>\n        <translation>子系统 NQN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6029\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6051\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM 子系统的唯一标识符，以 n 字节的 UTF-8 字符串形式存储，符合 NVM Express 基本规范中的 NVMe 限定名称。子系统 NQN 用于识别和身份验证。最大长度为 224 字节。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6066\"/>\n        <source>Hard Drive</source>\n        <translation>硬盘</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6069\"/>\n        <source>The Hard Drive Media Device Path is used to represent a partition on a hard drive.</source>\n        <translation>硬盘媒体设备路径用于表示硬盘上的分区。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6072\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Hard Drive Media Device Path is used to represent a partition on a hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;硬盘媒体设备路径用于表示硬盘上的分区。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6174\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6196\"/>\n        <source>Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].</source>\n        <translation>描述分区表中的条目，从条目 1 开始。分区号 0 代表整个设备。MBR 分区的有效分区号为 [1, 4]。GPT 分区的有效分区号为 [1, NumberOfPartitionEntries]。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6180\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;描述分区表中的条目，从条目 1 开始。分区号 0 代表整个设备。MBR 分区的有效分区号为 [1, 4]。GPT 分区的有效分区号为 [1, NumberOfPartitionEntries]。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6236\"/>\n        <source>Starting LBA of the partition on the hard drive.</source>\n        <translation>硬盘驱动器上分区的起始 LBA。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6466\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6487\"/>\n        <source>Partition Start</source>\n        <translation>分区起点</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting LBA of the partition on the hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;硬盘上分区的起始 LBA。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6255\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6276\"/>\n        <source>Size of the partition in units of Logical Blocks.</source>\n        <translation>以逻辑块为单位的分区大小。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6258\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6264\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6279\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6527\"/>\n        <source>Partition Size</source>\n        <translation>分区大小</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6261\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6282\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Logical Blocks.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;以逻辑块为单位的分区大小。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6295\"/>\n        <source>Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation>此分区独有的签名：\n如果 SignatureType 为 0，则必须用 16 个零初始化此字段。\n如果 SignatureType 为 1，则 MBR 签名存储在此字段的前 4 个字节中。其他 12 个字节用零初始化。\n如果 SignatureType 为 2，则此字段包含 16 字节签名。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6301\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6310\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6367\"/>\n        <source>Partition Signature</source>\n        <translation>分区签名</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6304\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;此分区独有的签名：\n如果 SignatureType 为 0，则必须用 16 个零初始化此字段。\n如果 SignatureType 为 1，则 MBR 签名存储在此字段的前 4 个字节中。其他 12 个字节用零初始化。\n如果 SignatureType 为 2，则此字段包含 16 字节签名。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6322\"/>\n        <source>PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.</source>\n        <translation>磁盘签名的部分类型（保留未使用的值）：\n            0x00 - 无磁盘签名。\n            0x01 - 来自地址 0x1b8 的 32 位签名，类型为 0x01 MBR。\n            0x02 - GUID 签名。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6328\"/>\n        <source>Signature Type</source>\n        <translation>签名类型</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6331\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;磁盘签名的部分类型（保留未使用的值）：\n            0x00 - 无磁盘签名。\n            0x01 - 来自地址 0x1b8 的 32 位签名，类型为 0x01 MBR。\n            0x02 - GUID 签名。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6338\"/>\n        <source>None</source>\n        <translation>无</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6361\"/>\n        <source>Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation>此分区独有的签名：\n           如果 SignatureType 为 0，则必须用 16 个零初始化此字段。\n            如果 SignatureType 为 1，则 MBR 签名存储在此字段的前 4 个字节中。其他 12 个字节用零初始化。\n            如果 SignatureType 为 2，则此字段包含 16 字节签名。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6370\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;此分区独有的签名：\n            如果 SignatureType 为 0，则必须用 16 个零初始化此字段。\n            如果 SignatureType 为 1，则 MBR 签名存储在此字段的前 4 个字节中。其他 12 个字节用零初始化。\n            如果 SignatureType 为 2，则此字段包含 16 字节签名。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6392\"/>\n        <source>CD-ROM</source>\n        <translation>CD-ROM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6395\"/>\n        <source>The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.</source>\n        <translation>CD-ROM 媒体设备路径用于定义 CD-ROM 上存在的系统分区。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6398\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;CD-ROM 媒体设备路径用于定义 CD-ROM 上存在的系统分区。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6444\"/>\n        <source>Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.</source>\n        <translation>引导目录中的引导条目号。初始/默认条目定义为零。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6425\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6431\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6447\"/>\n        <source>Boot Entry</source>\n        <translation>启动条目</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6450\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;来自引导目录的引导条目编号。初始/默认条目定义为零。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6463\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6484\"/>\n        <source>Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.</source>\n        <translation>介质上分区的起始 RBA。CD-ROM 使用相对逻辑块寻址。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6469\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6490\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;介质上分区的起始 RBA。CD-ROM 使用相对逻辑块寻址。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6524\"/>\n        <source>Size of the partition in units of Blocks, also called Sectors.</source>\n        <translation>分区的大小以块（也称为扇区）为单位。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6530\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Blocks, also called Sectors.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;以块（也称为扇区）为单位的分区大小。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6547\"/>\n        <source>File Path</source>\n        <translation>文件路径</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6550\"/>\n        <source>File Path settings.</source>\n        <translation>文件路径设置。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6553\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File Path settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;文件路径设置。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6599\"/>\n        <source>Path including directory and file names.</source>\n        <translation>路径包括目录和文件名。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6586\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6602\"/>\n        <source>Path Name</source>\n        <translation>路径名</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6583\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6605\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Path including directory and file names.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;包含目录和文件名的路径。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6619\"/>\n        <source>The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.</source>\n        <translation>媒体协议设备路径用于表示在指定路径位置的设备路径中使用的协议。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6622\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;媒体协议设备路径用于表示在指定路径位置的设备路径中使用的协议。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6667\"/>\n        <source>The ID of the protocol.</source>\n        <translation>协议 ID。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6673\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ID of the protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;协议 ID。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6687\"/>\n        <source>Firmware File</source>\n        <translation>固件文件</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6690\"/>\n        <source>Describes a firmware file in a firmware volume.</source>\n        <translation>描述固件卷中的固件文件。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6693\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware file in a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;描述固件卷中的固件文件。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6717\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6738\"/>\n        <source>Firmware file name GUID.</source>\n        <translation>固件文件名 GUID。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6723\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6744\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware file name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;固件文件名 GUID。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6758\"/>\n        <source>Firmware Volume</source>\n        <translation>固件卷</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6761\"/>\n        <source>Describes a firmware volume.</source>\n        <translation>描述固件卷。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6764\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;描述固件卷。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6809\"/>\n        <source>Firmware volume name GUID.</source>\n        <translation>固件卷名 GUID。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware volume name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;固件卷名称 GUID。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6829\"/>\n        <source>Relative Offset Range</source>\n        <translation>相对偏移范围</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6832\"/>\n        <source>This device path node specifies a range of offsets relative to the first byte available on the device.</source>\n        <translation>此设备路径节点指定相对于设备上可用的第一个字节的偏移范围。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6835\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path node specifies a range of offsets relative to the first byte available on the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;此设备路径节点指定相对于设备上可用的第一个字节的偏移范围。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6880\"/>\n        <source>Reserved for future use.</source>\n        <translation>保留以供将来使用。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6886\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved for future use.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;保留以供将来使用。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6899\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6920\"/>\n        <source>Offset of the first byte, relative to the parent device node.</source>\n        <translation>相对于父设备节点的第一个字节的偏移量。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6902\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6908\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6923\"/>\n        <source>Starting Offset</source>\n        <translation>起始偏移</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6905\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the first byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;相对于父设备节点的第一个字节的偏移量。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6939\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6960\"/>\n        <source>Offset of the last byte, relative to the parent device node.</source>\n        <translation>相对于父设备节点的最后一个字节的偏移量。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6942\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6963\"/>\n        <source>Ending Offset</source>\n        <translation>末端偏移</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6966\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the last byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;最后一个字节的偏移量，相对于父设备节点。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6983\"/>\n        <source>RAM Disk</source>\n        <translation>内存盘</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6986\"/>\n        <source>RAM Disk Settings.</source>\n        <translation>RAM 磁盘设置。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6989\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM 磁盘设置。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7016\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7037\"/>\n        <source>Starting Address</source>\n        <translation>起始地址</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7056\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7077\"/>\n        <source>Ending Address</source>\n        <translation>终止地址</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7093\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7114\"/>\n        <source>GUID that defines the type of the RAM Disk.</source>\n        <translation>定义 RAM 磁盘类型的 GUID。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7120\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID that defines the type of the RAM Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;定义 RAM 磁盘类型的 GUID。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7130\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7152\"/>\n        <source>RAM Disk instance number, if supported.</source>\n        <translation>RAM 磁盘实例号（如果支持）。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7133\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7155\"/>\n        <source>Disk Instance</source>\n        <translation>磁盘实例</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7158\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk instance number, if supported.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM 磁盘实例号（如果支持）。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7179\"/>\n        <source>This Device Path is used to describe the booting of non-EFI-aware operating systems.</source>\n        <translation>此设备路径用于描述非 EFI 感知操作系统的启动。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7182\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path is used to describe the booting of non-EFI-aware operating systems.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;此设备路径用于描述非 EFI 感知操作系统的启动。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7206\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7249\"/>\n        <source>An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.</source>\n        <translation>描述设备类型的标识号：\n  0x00 - 保留。\n  0x01 - 软盘。\n  0x02 - 硬盘。\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB 设备。\n  0x06 - 嵌入式网络。\n  0x07..0x7F - 保留。\n  0x80 - BEV 设备。\n  0x81..0xFE - 保留。\n  0xFF - 未知。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7220\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7263\"/>\n        <source>Device Type</source>\n        <translation>设备类型</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7223\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;描述设备类型的标识号：\n  0x00 - 保留。\n  0x01 - 软盘。\n  0x02 - 硬盘。\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB 设备。\n  0x06 - 嵌入式网络。\n  0x07..0x7F - 保留。\n  0x80 - BEV 设备。\n  0x81..0xFE - 保留。\n  0xFF - 未知。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7290\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7347\"/>\n        <source>Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero</source>\n        <translation>BIOS 启动规范定义的状态标志：\n|  位|     字段     | 值 | 描述\n|========|===============|=======|=============\n|  3..0  | 旧位置  | 0..15 | 上次启动时此条目在表中的索引。用于在完成单个设备检测后更新 IPL 或 BCV 优先级。\n|--------|-------------- |-------|-------------\n|  7..4  |  (保留)   |   0   | 保留以备将来使用，必须为零。\n|--------|-------------- |-------|-------------\n|   8    |    已启用    | 0..1  | 0 = 启动 (IPL) 时将忽略条目；启动连接 (BCV) 时将不调用条目。\n|        |               |       | 1 = 将尝试启动条目 (IPL)；将调用条目进行启动连接 (BCV)。\n|--------|---------------|-------|-------------\n|    9   |    失败     | 0..1  | 0 = 未尝试启动，或者不知道是否发生启动失败 (IPL)；条目连接成功 (BCV)。\n|        |               |       | 1 = 启动尝试失败 (IPL)；连接尝试失败 (BCV)。\n|--------|---------------|-------|-------------\n| 11..10 | 介质存在 | 0..3  | 0 = 设备中没有可启动介质。\n|        |               |       | 1 = 不知道是否存在可启动介质。\n|        |               |       | 2 = 介质存在且似乎可启动。\n|        |               |       | 3 = 保留以备将来使用。\n|--------|---------------|-------|-------------\n| 15..12 |  (保留)   |   0   | 保留以供将来使用，必须为零</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7311\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7368\"/>\n        <source>Status Flag</source>\n        <translation>状态标志</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7371\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;BIOS 启动规范定义的状态标志：\n|  位|     字段     | 值 | 描述\n|========|===============|=======|=============\n|  3..0  | 旧位置  | 0..15 | 上次启动时此条目在表中的索引。用于在完成单个设备检测后更新 IPL 或 BCV 优先级。\n|--------|-------------- |-------|-------------\n|  7..4  |  (保留)   |   0   | 保留以备将来使用，必须为零。\n|--------|-------------- |-------|-------------\n|   8    |    已启用    | 0..1  | 0 = 启动 (IPL) 时将忽略条目；启动连接 (BCV) 时将不调用条目。\n|        |               |       | 1 = 将尝试启动条目 (IPL)；将调用条目进行启动连接 (BCV)。\n|--------|---------------|-------|-------------\n|    9   |    失败     | 0..1  | 0 = 未尝试启动，或者不知道是否发生启动失败 (IPL)；条目连接成功 (BCV)。\n|        |               |       | 1 = 启动尝试失败 (IPL)；连接尝试失败 (BCV)。\n|--------|---------------|-------|-------------\n| 11..10 | 介质存在 | 0..3  | 0 = 设备中没有可启动介质。\n|        |               |       | 1 = 不知道是否存在可启动介质。\n|        |               |       | 2 = 介质存在且似乎可启动。\n|        |               |       | 3 = 保留以备将来使用。\n|--------|---------------|-------|-------------\n| 15..12 |  (保留)   |   0   | 保留以供将来使用，必须为零&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7402\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7424\"/>\n        <source>String that describes the boot device to a user.</source>\n        <translation>向用户描述启动设备的字符串。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7408\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7430\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;String that describes the boot device to a user.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;向用户描述启动设备的字符串。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7543\"/>\n        <source>Vendor-assigned GUID that defines the data that follows.</source>\n        <translation>供应商分配的 GUID，定义后续数据。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7549\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-assigned GUID that defines the data that follows.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;供应商分配的 GUID，定义后续数据。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7562\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7622\"/>\n        <source>Vendor-defined variable size data.</source>\n        <translation>供应商定义的可变大小数据。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7568\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7628\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined variable size data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;供应商定义的可变大小数据。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7642\"/>\n        <source>Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.</source>\n        <translation>根据子类型，此设备路径节点用于指示设备路径实例或设备路径结构的结束。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7645\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;根据子类型，此设备路径节点用于指示设备路径实例或设备路径结构的结束。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7721\"/>\n        <source>Unknown file path specifier settings</source>\n        <translation>未知文件路径指定符设置</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7724\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown file path specifier settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;未知的文件路径指定符设置。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7748\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7772\"/>\n        <source>Unknown Type</source>\n        <translation>未知类型</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7754\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7775\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;未知类型。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7812\"/>\n        <source>Unknown Sub-Type</source>\n        <translation>未知子类型</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;未知子类型。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7828\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7831\"/>\n        <source>Unknown data</source>\n        <translation>未知数据</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;未知数据。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/filepathdialog.cpp\" line=\"1569\"/>\n        <source>Couldn&apos;t change data format!</source>\n        <translation>无法更改数据格式！</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeyListModel</name>\n    <message>\n        <location filename=\"../src/hotkeylistmodel.cpp\" line=\"100\"/>\n        <source>boot option</source>\n        <translation>引导选项</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Boot option</source>\n        <translation>引导选项</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Hot key</source>\n        <translation>热键</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Vendor data</source>\n        <translation>供应商数据</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeysDialog</name>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"20\"/>\n        <source>Hot Keys editor</source>\n        <translation>热键编辑器</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"41\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"44\"/>\n        <source>Hot Keys</source>\n        <translation>热键</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"47\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;热键&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"125\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"128\"/>\n        <source>Index filter</source>\n        <translation>索引过滤器</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"131\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Index filter&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;索引过滤器&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"163\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"166\"/>\n        <source>Remove hot key</source>\n        <translation>移除热键</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;删除热键&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"191\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"194\"/>\n        <source>Add hot key</source>\n        <translation>添加热键</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"197\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;添加热键&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <location filename=\"../include/commands.h\" line=\"21\"/>\n        <location filename=\"../include/commands.h\" line=\"66\"/>\n        <source>Change %1 to &quot;%2&quot;</source>\n        <translation>更改 %1 为 &quot;%2&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"35\"/>\n        <source>Insert %1 entry &quot;%2&quot; at position %3</source>\n        <translation>在位置 %3 插入 %1 条目&quot;%2&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"50\"/>\n        <source>Remove %1 entry &quot;%2&quot; from position %3</source>\n        <translation>从位置 %3 删除 %1 条目“%2”</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"73\"/>\n        <location filename=\"../src/commands.cpp\" line=\"116\"/>\n        <source>Move %1 entry &quot;%2&quot; from position %3 to %4</source>\n        <translation>移动 %1 条目&quot;%2&quot;从位置 %3 到 %4</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <location filename=\"../include/commands.h\" line=\"157\"/>\n        <location filename=\"../include/commands.h\" line=\"198\"/>\n        <source>Change %1 entry &quot;%2&quot; %3 to &quot;%4&quot;</source>\n        <translation>更改 %1 条目&quot;%2&quot; %3 为“%4”</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <source>Optional data</source>\n        <translation>可选数据</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"227\"/>\n        <source>Insert %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation>在位置 %3 处插入 %1 条目 &quot;%2&quot; 文件路径</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"242\"/>\n        <source>Remove %1 entry &quot;%2&quot; file path from position %3</source>\n        <translation>从位置 %3 删除文件路径“%2”中的 %1 个条目</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"257\"/>\n        <source>Set %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation>在位置 %3 设置 %1 条目“%2”文件路径</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <source>Insert %1 entry at position %2</source>\n        <translation>在位置 %2 处插入 %1 条目</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>Key</source>\n        <translation>键</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <source>Remove %1 entry from position %2</source>\n        <translation>从位置 %2 删除 %1 条目</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <location filename=\"../include/commands.h\" line=\"362\"/>\n        <location filename=\"../include/commands.h\" line=\"403\"/>\n        <source>Change %1 entry at position %2 %3 to &quot;%4&quot;</source>\n        <translation>将位置 %2 %3 处的 %1 条目更改为“%4”</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>keys</source>\n        <translation>键</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"293\"/>\n        <location filename=\"../src/commands.cpp\" line=\"333\"/>\n        <source>Move %1 entry &quot;%2&quot; file path from position %3 to %4</source>\n        <translation>将 %1 条目 &quot;%2&quot; 文件路径从位置 %3 移动到 %4</translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/efibooteditor_zh_Hant.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"zh_Hant\" sourcelanguage=\"en_US\">\n<context>\n    <name>BootEntryForm</name>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"169\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"172\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"182\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"185\"/>\n        <source>Description</source>\n        <translation>描述</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"198\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"201\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"204\"/>\n        <source>Path</source>\n        <translation>路徑</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"415\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"418\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"478\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"481\"/>\n        <source>Optional data</source>\n        <translation>選擇性資料</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"421\"/>\n        <source>Optional</source>\n        <translation>選擇性</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"434\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"437\"/>\n        <source>Optional data format</source>\n        <translation>選擇性資料格式</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"6\"/>\n        <source>Boot entry form</source>\n        <translation>啟動條目表單</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"24\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"27\"/>\n        <source>Error</source>\n        <translation>錯誤</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"40\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"43\"/>\n        <source>Error note</source>\n        <translation>錯誤註釋</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"46\"/>\n        <source>This entry placeholder is shown here to indicate it&apos;s referenced in boot order. It won&apos;t be modified on save, just left as is.</source>\n        <translation type=\"unfinished\">This entry placeholder is shown here to indicate it&apos;s referenced in boot order. It won&apos;t be modified on save, just left as is.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"147\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"150\"/>\n        <source>Hot Keys</source>\n        <translation>熱鍵</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;熱鍵&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"188\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry description.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;條目描述。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"222\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"225\"/>\n        <source>Device path</source>\n        <translation>裝置路徑</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;裝置路徑。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"280\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"283\"/>\n        <source>Move file path up</source>\n        <translation>向上移動檔案路徑</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"286\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;向上移動檔案路徑。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"305\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"308\"/>\n        <source>Move file path down</source>\n        <translation>向下移動檔案路徑</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"311\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Move file path down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;向下移動檔案路徑。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"330\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"333\"/>\n        <source>Remove file path</source>\n        <translation>移除檔案路徑</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"336\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;移除檔案路徑。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"355\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"358\"/>\n        <source>Edit file path</source>\n        <translation>編輯檔案路徑</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"361\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Edit file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;編輯檔案路徑。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"380\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"383\"/>\n        <source>Add file path</source>\n        <translation>新增檔案路徑</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add file path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;新增檔案路徑。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;選擇性資料格式。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"444\"/>\n        <source>BASE64</source>\n        <translation>BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"449\"/>\n        <source>UTF-16</source>\n        <translation>UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"454\"/>\n        <source>UTF-8</source>\n        <translation>UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"459\"/>\n        <source>HEX</source>\n        <translation>HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"484\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry optional data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;條目選擇性資料。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"497\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"500\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"503\"/>\n        <source>Attributes</source>\n        <translation>屬性</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"623\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry category.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;條目類別。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"122\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;條目索引。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"540\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Is entry considered for automatic boot?&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;自動啟動時是否考慮此條目？&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"569\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hidden.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;隱藏。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"585\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Force reconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;強制重新連接。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"534\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"537\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"543\"/>\n        <source>Active</source>\n        <translation>啟用</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"579\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"582\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"588\"/>\n        <source>Force reconnect</source>\n        <translation>強制重新連接</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"563\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"566\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"572\"/>\n        <source>Hidden</source>\n        <translation>隱藏</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"598\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"601\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"604\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"617\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"620\"/>\n        <source>Category</source>\n        <translation>類別</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"627\"/>\n        <source>Boot</source>\n        <translation>啟動</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"632\"/>\n        <source>App</source>\n        <translation>應用程式</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"68\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"71\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"74\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"116\"/>\n        <location filename=\"../src/form/bootentryform.ui\" line=\"119\"/>\n        <source>Index</source>\n        <translation>索引</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentryform.cpp\" line=\"117\"/>\n        <source>Couldn&apos;t change optional data format!</source>\n        <translation>無法變更選擇性資料格式！</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryListModel</name>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"88\"/>\n        <source>Set Next boot to &quot;%1&quot;</source>\n        <translation>設定下次啟動為「%1」</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"184\"/>\n        <source>index</source>\n        <translation>索引</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"200\"/>\n        <source>description</source>\n        <translation>描述</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"237\"/>\n        <source>optional data</source>\n        <translation>選擇性資料</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"253\"/>\n        <source>attributes</source>\n        <translation>屬性</translation>\n    </message>\n    <message>\n        <location filename=\"../src/bootentrylistmodel.cpp\" line=\"269\"/>\n        <source>next boot</source>\n        <translation>下次啟動</translation>\n    </message>\n</context>\n<context>\n    <name>BootEntryWidget</name>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"12\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"221\"/>\n        <source>Boot entry</source>\n        <translation>啟動條目</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"36\"/>\n        <source>Next boot</source>\n        <translation>下一個啟動</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"39\"/>\n        <source>Run at next boot</source>\n        <translation>下次啟動時運行</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"42\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;When chosen, entry will run at next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;選擇後，條目將在下次啟動時運行。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"140\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"143\"/>\n        <source>Current boot</source>\n        <translation>目前啟動</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This entry is currently booted.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;此條目目前已啟動。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"181\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry index.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;啟動條目索引。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"218\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot entry description, human readable name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;啟動條目描述，人類可理解的名稱。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"67\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"70\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"76\"/>\n        <source>Device path</source>\n        <translation>裝置路徑</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"73\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot device path.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;啟動裝置路徑。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"113\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Optional data, arguments passed to boot executable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;選擇性資料，傳送到啟動執行檔的參數。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"175\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"178\"/>\n        <source>Boot entry index</source>\n        <translation>啟動條目索引</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"184\"/>\n        <source>Index</source>\n        <translation>索引</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"212\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"215\"/>\n        <source>Boot entry description</source>\n        <translation>啟動條目描述</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"107\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"110\"/>\n        <location filename=\"../src/form/bootentrywidget.ui\" line=\"116\"/>\n        <source>Optional data</source>\n        <translation>選擇性資料</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootData</name>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"111\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"813\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1027\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1361\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1472\"/>\n        <source>%1: not found</source>\n        <translation>%1：找不到</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"120\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"821\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1387\"/>\n        <source>%1: failed deserialization</source>\n        <translation>%1：反序列化失敗</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Error loading entries</source>\n        <translation>載入條目時發生錯誤</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"301\"/>\n        <source>Failed to load some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>某些 EFI Boot Manager 條目載入失敗：\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Error saving entries</source>\n        <translation>儲存條目時發生錯誤</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"690\"/>\n        <source>Entry %1(%2): duplicated index!</source>\n        <translation>條目 %1（%2）：重複的索引！</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"389\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"419\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"458\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"479\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"487\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"516\"/>\n        <source>Error saving %1</source>\n        <translation>儲存 %1 時發生錯誤</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"407\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"470\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"504\"/>\n        <source>Error removing %1</source>\n        <translation>移除 %1 時發生錯誤</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Error importing boot configuration</source>\n        <translation>匯入啟動設定時發生錯誤</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <source>Couldn&apos;t open selected file (%1).</source>\n        <translation>無法開啟選擇的檔案（%1）。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"542\"/>\n        <source>Parser failed: %1</source>\n        <translation>解析器失敗：%1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"556\"/>\n        <source>Invalid _Type: %1</source>\n        <translation>無效類型：%1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <source>Error exporting boot configuration</source>\n        <translation>匯出啟動設定時發生錯誤</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"569\"/>\n        <source>Couldn&apos;t open selected file (%1): %2.</source>\n        <translation>無法開啟選擇的檔案（%1）：%2。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"759\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <source>Couldn&apos;t write into file (%1): %2.</source>\n        <translation>無法寫入檔案（%1）：%2。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"774\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"889\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Error dumping raw EFI data</source>\n        <translation>傾印原始 EFI 資料時發生錯誤</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"895\"/>\n        <source>Failed to dump some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>傾印某些 EFI Boot Manager 條目時發生錯誤：\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"905\"/>\n        <source>Timeout</source>\n        <translation>逾時</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"921\"/>\n        <source>Apple boot-args</source>\n        <translation>Apple 啟動參數</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"937\"/>\n        <source>Firmware actions</source>\n        <translation>韌體操作</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"73\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation>正在載入 EFI Boot Manager 條目…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"89\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"787\"/>\n        <source>Searching EFI Boot Manager entries…</source>\n        <translation>正在搜尋 EFI Boot Manager 條目…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"116\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"292\"/>\n        <source>Processing EFI Boot Manager entries (%1)…</source>\n        <translation>正在處理 EFI Boot Manager 條目（%1）…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"308\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation>正在儲存 EFI Boot Manager 條目…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"333\"/>\n        <source>Searching old EFI Boot Manager entries…</source>\n        <translation>正在搜尋舊的 EFI Boot Manager 條目…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"374\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"416\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"447\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"476\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"484\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"491\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"513\"/>\n        <source>Saving EFI Boot Manager entries (%1)…</source>\n        <translation>正在儲存 EFI Boot Manager 條目（%1）…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"467\"/>\n        <source>Removing old EFI Boot Manager entries (%1)…</source>\n        <translation>正在移除舊的 EFI Boot Manager 條目（%1）…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"404\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"501\"/>\n        <source>Removing EFI Boot Manager entries (%1)…</source>\n        <translation>正在移除 EFI Boot Manager 條目（%1）…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"94\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"338\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"792\"/>\n        <source>Couldn&apos;t load EFI Boot Manager variables</source>\n        <translation>無法載入 EFI Boot Manager 變數</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"100\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"799\"/>\n        <source>Couldn&apos;t find any EFI Boot Manager variables</source>\n        <translation>找不到任何 EFI Boot Manager 變數</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"529\"/>\n        <source>Importing boot configuration…</source>\n        <translation>正在匯入啟動設定…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"565\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"770\"/>\n        <source>Exporting boot configuration…</source>\n        <translation>正在匯出啟動設定…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"587\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"809\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"875\"/>\n        <source>Exporting EFI Boot Manager entries (%1)…</source>\n        <translation>正在匯出 EFI Boot Manager 條目（%1）…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1013\"/>\n        <source>Importing boot configuration from JSON…</source>\n        <translation>正在從 JSON 檔匯入啟動設定…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1032\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1366\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1477\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1531\"/>\n        <source>Importing EFI Boot Manager entries (%1)…</source>\n        <translation>正在匯入 EFI Boot Manager 條目（%1）…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1035\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1376\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>%1: %2 expected</source>\n        <translation>%1：預期為 %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1043\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1048\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1053\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1223\"/>\n        <source>number</source>\n        <translation>數字</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1058\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1063\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1068\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1073\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1078\"/>\n        <source>bool</source>\n        <translation>布林</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1109\"/>\n        <source>%1: unknown boot manager capability</source>\n        <translation>%1：啟動管理員功能未知</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1122\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1166\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1212\"/>\n        <source>array</source>\n        <translation>陣列</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1097\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1134\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1178\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1333\"/>\n        <source>string</source>\n        <translation>字串</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1156\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1192\"/>\n        <source>%1: unknown os indication</source>\n        <translation>%1：未知的作業系統指示</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1083\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1235\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1264\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1290\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1309\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1328\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1369\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1480\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1533\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1571\"/>\n        <source>object</source>\n        <translation>物件</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1248\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1304\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1494\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1548\"/>\n        <source>hexadecimal number</source>\n        <translation>十六進制數</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1270\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1315\"/>\n        <source>%1: failed parsing</source>\n        <translation>%1：解析失敗</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1340\"/>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1584\"/>\n        <source>Failed to import some EFI Boot Manager entries:\n\n  - %1</source>\n        <translation>某些 EFI Boot Manager 條目匯入失敗：\n\n  - %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1347\"/>\n        <source>Importing boot configuration from raw dump…</source>\n        <translation>正在從原始傾印檔匯入啟動設定…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibootdata.cpp\" line=\"1379\"/>\n        <source>object(raw_data: string, efi_attributes: number)</source>\n        <extracomment>Expected JSON structure, thrown as error description. raw_data and efi_attributes are field names in JSON file</extracomment>\n        <translation>object(raw_data: string, efi_attributes: number)</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"15\"/>\n        <source>Boot</source>\n        <translation>啟動</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"16\"/>\n        <source>Driver</source>\n        <translation>驅動程式</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"17\"/>\n        <source>System Preparation</source>\n        <translation>系統準備工作</translation>\n    </message>\n    <message>\n        <location filename=\"../include/efibootdata.h\" line=\"18\"/>\n        <source>Platform Recovery</source>\n        <translation>平台修復</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditor</name>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"18\"/>\n        <source>EFI Boot Editor</source>\n        <translation>EFI 啟動編輯器</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"71\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"412\"/>\n        <source>Boot</source>\n        <translation>啟動</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"74\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"98\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"101\"/>\n        <source>Boot entries</source>\n        <translation>啟動條目</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"77\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"104\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Boot entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;啟動條目列表。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"133\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"415\"/>\n        <source>Driver</source>\n        <translation>驅動程式</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"136\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"160\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"163\"/>\n        <source>Driver entries</source>\n        <translation>驅動程式條目</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"139\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"166\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of Driver entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;驅動程式條目列表。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"195\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"418\"/>\n        <source>System Preparation</source>\n        <translation>系統準備工作</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"198\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"222\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"225\"/>\n        <source>SysPrep entries</source>\n        <translation>系統準備工作條目</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"201\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"228\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of SysPrep entries.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;系統準備工作條目列表。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"257\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"421\"/>\n        <source>Platform Recovery</source>\n        <translation>平台修復</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"260\"/>\n        <source>PlatformRecovery entries</source>\n        <translation>平台修復條目</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"263\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;List of PlatformRecovery entries (READONLY).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;平台修復條目列表（唯讀）。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"284\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"287\"/>\n        <source>PlatformRecovery entries (READONLY)</source>\n        <translation>平台修復條目（唯讀）</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"346\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"349\"/>\n        <source>Add new entry</source>\n        <translation>新增條目</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"352\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to add new boot entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;點擊此以新增啟動條目。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"377\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"380\"/>\n        <source>Duplicate entry</source>\n        <translation>重複條目</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"383\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Duplicate entry&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;重複條目&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"408\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"411\"/>\n        <source>Remove entry</source>\n        <translation>移除條目</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"414\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to remove currently selected entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;點擊此以移除目前選取的條目。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"439\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"442\"/>\n        <source>Move entry up</source>\n        <translation>向上移動條目</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"445\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry up.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;點擊此處將選擇的條目向上移動。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"470\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"473\"/>\n        <source>Move entry down</source>\n        <translation>向下移動條目</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"476\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click this to move currently selected entry down.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;點擊此處將選擇的條目向下移動。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"501\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"504\"/>\n        <source>Reorder entries</source>\n        <translation>重新排序條目</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"507\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click here to adjust the order of all entries based on their position on the list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Click here to adjust the order of all entries based on their position on the list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"599\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"608\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Global settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;全域設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"602\"/>\n        <source>Global</source>\n        <translation>全域</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"632\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"635\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"654\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"657\"/>\n        <source>Boot manager timeout</source>\n        <translation>啟動管理員逾時時間</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"638\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"660\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot manager timeout.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;啟動管理員逾時時間。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"663\"/>\n        <source>s</source>\n        <translation>s</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"674\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"677\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"686\"/>\n        <source>Firmware details</source>\n        <translation>韌體詳情</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"680\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"689\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;韌體詳情。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"683\"/>\n        <source>Firmware</source>\n        <translation>韌體</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"719\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"722\"/>\n        <source>Available firmware features</source>\n        <translation>可用的韌體功能</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"725\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware features.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;可用的韌體功能。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"728\"/>\n        <source>Features</source>\n        <translation>功能</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"737\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"740\"/>\n        <source>Platform supports reporting of deferred capsule processing by creation of result variable</source>\n        <translation type=\"unfinished\">Platform supports reporting of deferred capsule processing by creation of result variable</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"743\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports reporting of deferred capsule processing by creation of result variable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports reporting of deferred capsule processing by creation of result variable.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"746\"/>\n        <source>Capsule Reporting</source>\n        <translation type=\"unfinished\">Capsule Reporting</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"756\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"759\"/>\n        <source>Firmware supports timestamp based revocation</source>\n        <translation type=\"unfinished\">Firmware supports timestamp based revocation</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"762\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware supports timestamp based revocation.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware supports timestamp based revocation.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"765\"/>\n        <source>Timestamp based revocation</source>\n        <translation type=\"unfinished\">Timestamp based revocation</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"775\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"778\"/>\n        <source>Platform supports processing of Firmware Management Protocol update capsule</source>\n        <translation type=\"unfinished\">Platform supports processing of Firmware Management Protocol update capsule</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"781\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of Firmware Management Protocol update capsule.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of Firmware Management Protocol update capsule.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"784\"/>\n        <source>FMP Capsule</source>\n        <translation type=\"unfinished\">FMP Capsule</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"794\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"797\"/>\n        <source>Platform supports processing of file capsules</source>\n        <translation type=\"unfinished\">Platform supports processing of file capsules</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"800\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of file capsules.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Platform supports processing of file capsules.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"803\"/>\n        <source>File Capsule</source>\n        <translation type=\"unfinished\">File Capsule</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"828\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"831\"/>\n        <source>Available firmware actions</source>\n        <translation type=\"unfinished\">Available firmware actions</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware actions.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Available firmware actions.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"837\"/>\n        <source>Actions</source>\n        <translation>動作</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"846\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"849\"/>\n        <source>Stop at a firmware user interface on the next boot</source>\n        <translation type=\"unfinished\">Stop at a firmware user interface on the next boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Stop at a firmware user interface on the next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Stop at a firmware user interface on the next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"855\"/>\n        <source>Boot to firmware UI</source>\n        <translation type=\"unfinished\">Boot to firmware UI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"862\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"865\"/>\n        <source>Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot</source>\n        <translation type=\"unfinished\">Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Trigger collecting current configuration and reporting the refreshed data to EFI System Configuration Table on next boot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"871\"/>\n        <source>Collect current config</source>\n        <translation type=\"unfinished\">Collect current config</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"878\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"881\"/>\n        <source>Indicate that Platform-defined recovery should commence upon reboot</source>\n        <translation type=\"unfinished\">Indicate that Platform-defined recovery should commence upon reboot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"884\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that Platform-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that Platform-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"887\"/>\n        <source>Start Platform recovery</source>\n        <translation type=\"unfinished\">Start Platform recovery</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"894\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"897\"/>\n        <source>Indicate that OS-defined recovery should commence upon reboot</source>\n        <translation type=\"unfinished\">Indicate that OS-defined recovery should commence upon reboot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"900\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that OS-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Indicate that OS-defined recovery should commence upon reboot.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"903\"/>\n        <source>Start OS recovery</source>\n        <translation type=\"unfinished\">Start OS recovery</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"932\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"935\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"944\"/>\n        <source>Secure boot settings</source>\n        <translation type=\"unfinished\">Secure boot settings</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"938\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"947\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Secure boot settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Secure boot settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"941\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1025\"/>\n        <source>Secure Boot</source>\n        <translation>安全啟動</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"978\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"981\"/>\n        <source>Defines whether the system is currently operating in Audit Mode</source>\n        <translation type=\"unfinished\">Defines whether the system is currently operating in Audit Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"984\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Audit Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Audit Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"987\"/>\n        <source>Audit Mode</source>\n        <translation>審核模式</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"997\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1000\"/>\n        <source>Defines whether the system is currently operating in Deployed Mode</source>\n        <translation type=\"unfinished\">Defines whether the system is currently operating in Deployed Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1003\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Deployed Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system is currently operating in Deployed Mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1006\"/>\n        <source>Deployed Mode</source>\n        <translation>已部署模式</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1016\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1019\"/>\n        <source>Defines whether the platform firmware is operating with Secure Boot enabled</source>\n        <translation type=\"unfinished\">Defines whether the platform firmware is operating with Secure Boot enabled</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1022\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the platform firmware is operating with Secure Boot enabled.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the platform firmware is operating with Secure Boot enabled.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1035\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1038\"/>\n        <source>Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables</source>\n        <translation type=\"unfinished\">Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1041\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the system should require authentication or not on requests to Secure Boot Policy Variables.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1044\"/>\n        <source>Setup Mode</source>\n        <translation>設定模式</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1054\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1057\"/>\n        <source>Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys</source>\n        <translation type=\"unfinished\">Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Defines whether the Security Boot Policy Variables have been modified by anyone other than the platform vendor or a holder of the vendor-provided keys.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1063\"/>\n        <source>Vendor Keys</source>\n        <translation>供應商密鑰</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1074\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1077\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1086\"/>\n        <source>Apple settings</source>\n        <translation>Apple 設定</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1080\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apple settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apple 設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1083\"/>\n        <source>Apple</source>\n        <translation>Apple</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1113\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1116\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1129\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1132\"/>\n        <source>macOS boot arguments</source>\n        <translation type=\"unfinished\">macOS boot arguments</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1119\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;macOS boot arguments.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;macOS boot arguments.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1161\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1164\"/>\n        <source>Undo stack</source>\n        <translation type=\"unfinished\">Undo stack</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1167\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo stack&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo stack&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1194\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;檔案選單。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1214\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Help menu.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;幫助選單。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1255\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Exit the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Exit the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1272\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apply changes to the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Apply changes to the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1289\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reloads EFI data from the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reloads EFI data from the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1306\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Show information about the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Show information about the program.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1320\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Export current entries into JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Export current entries into JSON.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1337\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Import EFI data from JSON dump.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Import EFI data from JSON dump.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1354\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dumps raw EFI data for debugging purposes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Dumps raw EFI data for debugging purposes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1362\"/>\n        <source>&amp;Undo</source>\n        <translation>復原 (&amp;U)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1365\"/>\n        <source>Undo</source>\n        <translation>復原</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1368\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Undo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;復原&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1371\"/>\n        <source>Ctrl+Z</source>\n        <translation>Ctrl+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1379\"/>\n        <source>&amp;Redo</source>\n        <translation>重做 (&amp;R)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1382\"/>\n        <source>Redo</source>\n        <translation>重做</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1385\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Redo&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;重做&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1388\"/>\n        <source>Ctrl+Shift+Z</source>\n        <translation>Ctrl+Shift+Z</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1396\"/>\n        <source>Hot &amp;keys</source>\n        <translation type=\"unfinished\">Hot &amp;keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1399\"/>\n        <source>Hot Keys</source>\n        <translation type=\"unfinished\">Hot Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1402\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"593\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"596\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"605\"/>\n        <source>Global settings</source>\n        <translation>全域設定</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"641\"/>\n        <source>Timeout</source>\n        <translation>逾時</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1122\"/>\n        <source>Boot args</source>\n        <translation>啟動參數</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1188\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1191\"/>\n        <source>File</source>\n        <translation>檔案</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1197\"/>\n        <source>&amp;File</source>\n        <translation>檔案 (&amp;F)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1208\"/>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1211\"/>\n        <source>Help</source>\n        <translation>幫助</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1217\"/>\n        <source>&amp;Help</source>\n        <translation>幫助 (&amp;H)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1225\"/>\n        <source>&amp;Edit</source>\n        <translation>編輯 (&amp;E)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1249\"/>\n        <source>&amp;Quit</source>\n        <translation>退出 (&amp;Q)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1252\"/>\n        <source>Quit</source>\n        <translation>退出</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1258\"/>\n        <source>Ctrl+Q</source>\n        <translation>Ctrl+Q</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1266\"/>\n        <source>&amp;Save</source>\n        <translation>儲存 (&amp;S)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1269\"/>\n        <source>Save</source>\n        <translation>儲存</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1275\"/>\n        <source>Ctrl+S</source>\n        <translation>Ctrl+S</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1283\"/>\n        <source>&amp;Reload</source>\n        <translation>重新載入 (&amp;R)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1286\"/>\n        <source>Reload</source>\n        <translation>重新載入</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1292\"/>\n        <source>Ctrl+R</source>\n        <translation>Ctrl+R</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1300\"/>\n        <source>About &amp;EFI Boot Editor</source>\n        <translation type=\"unfinished\">About &amp;EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1303\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"29\"/>\n        <source>About EFI Boot Editor</source>\n        <translation type=\"unfinished\">About EFI Boot Editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1314\"/>\n        <source>&amp;Export</source>\n        <translation>匯出 (&amp;E)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1317\"/>\n        <source>Export</source>\n        <translation>匯出</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1323\"/>\n        <source>Ctrl+E</source>\n        <translation>Ctrl+E</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1331\"/>\n        <source>&amp;Import</source>\n        <translation>匯入 (&amp;I)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1334\"/>\n        <source>Import</source>\n        <translation>匯入</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1340\"/>\n        <source>Ctrl+I</source>\n        <translation>Ctrl+I</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1348\"/>\n        <source>&amp;Dump raw EFI data</source>\n        <translation type=\"unfinished\">&amp;Dump raw EFI data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/efibooteditor.ui\" line=\"1351\"/>\n        <source>Dump raw EFI data</source>\n        <translation type=\"unfinished\">Dump raw EFI data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"26\"/>\n        <source>Working…</source>\n        <translation>正在進行…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"92\"/>\n        <source>Undo %1</source>\n        <translation type=\"unfinished\">Undo %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"95\"/>\n        <source>Redo %1</source>\n        <translation type=\"unfinished\">Redo %1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"137\"/>\n        <source>Are you sure you want to reload the entries?&lt;br/&gt;ALL of your changes will be lost!</source>\n        <translation type=\"unfinished\">Are you sure you want to reload the entries?&lt;br/&gt;ALL of your changes will be lost!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"162\"/>\n        <source>Are you sure you want to reorder the boot entries?&lt;br/&gt;All indexes will be overwritten!</source>\n        <translation type=\"unfinished\">Are you sure you want to reorder the boot entries?&lt;br/&gt;All indexes will be overwritten!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"221\"/>\n        <source>Are you sure you want to save?&lt;br/&gt;Your EFI configuration will be overwritten!</source>\n        <translation type=\"unfinished\">Are you sure you want to save?&lt;br/&gt;Your EFI configuration will be overwritten!</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <source>Open boot configuration dump</source>\n        <translation type=\"unfinished\">Open boot configuration dump</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"230\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>JSON documents (*.json)</source>\n        <translation>JSON 文件（*.json）</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"248\"/>\n        <source>Save boot configuration dump</source>\n        <translation type=\"unfinished\">Save boot configuration dump</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"260\"/>\n        <source>Save raw EFI dump</source>\n        <translation>儲存原始 EFI 傾印</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"31\"/>\n        <source>&lt;h1&gt;EFI Boot Editor&lt;/h1&gt;&lt;p&gt;Version &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Boot Editor for (U)EFI based systems.&lt;/p&gt;</source>\n        <extracomment>About dialog</extracomment>\n        <translation type=\"unfinished\">&lt;h1&gt;EFI Boot Editor&lt;/h1&gt;&lt;p&gt;Version &lt;b&gt;%1&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Boot Editor for (U)EFI based systems.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"45\"/>\n        <source>&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;Website&lt;/a&gt;&lt;/p&gt;&lt;p&gt;The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.&lt;/p&gt;&lt;p&gt;License: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL Version 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;On Linux uses &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; for EFI variables access.&lt;/p&gt;&lt;p&gt;Uses Tango Icons as fallback icons.&lt;/p&gt;</source>\n        <extracomment>About dialog details</extracomment>\n        <translation type=\"unfinished\">&lt;p&gt;&lt;a href=&apos;%1&apos;&gt;Website&lt;/a&gt;&lt;/p&gt;&lt;p&gt;The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.&lt;/p&gt;&lt;p&gt;License: &lt;a href=&apos;https://www.gnu.org/licenses/lgpl.html&apos;&gt;GNU LGPL Version 3&lt;/a&gt;&lt;/p&gt;&lt;p&gt;On Linux uses &lt;a href=&apos;https://github.com/rhboot/efivar&apos;&gt;efivar&lt;/a&gt; for EFI variables access.&lt;/p&gt;&lt;p&gt;Uses Tango Icons as fallback icons.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"330\"/>\n        <source>Reorder %1 entries</source>\n        <translation>重新排序 %1 條目</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"453\"/>\n        <source>Are you sure you want to quit?</source>\n        <translation>你確定你要退出嗎？</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditor.cpp\" line=\"123\"/>\n        <source>EFI support required</source>\n        <translation>需要 EFI 支援</translation>\n    </message>\n</context>\n<context>\n    <name>EFIBootEditorCLI</name>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"13\"/>\n        <source>Boot Editor for (U)EFI based systems.</source>\n        <translation type=\"unfinished\">Boot Editor for (U)EFI based systems.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <source>Export configuration.</source>\n        <translation>匯出配置。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"16\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>FILE</source>\n        <translation>檔案</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"17\"/>\n        <source>Dump raw EFI data.</source>\n        <translation type=\"unfinished\">Dump raw EFI data.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"18\"/>\n        <source>Import configuration from JSON (either from export or raw dump).</source>\n        <translation type=\"unfinished\">Import configuration from JSON (either from export or raw dump).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"19\"/>\n        <source>Force import, don&apos;t ask for confirmation.</source>\n        <translation type=\"unfinished\">Force import, don&apos;t ask for confirmation.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"26\"/>\n        <source>EFI support required</source>\n        <translation type=\"unfinished\">EFI support required</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"45\"/>\n        <source>Loading EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Loading EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"47\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"57\"/>\n        <source>Exporting boot configuration…</source>\n        <translation type=\"unfinished\">Exporting boot configuration…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"67\"/>\n        <source>Importing boot configuration…</source>\n        <translation type=\"unfinished\">Importing boot configuration…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Loaded %0 %1 entries</source>\n        <translation>已載入 %0 %1 條目</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"71\"/>\n        <source>Boot</source>\n        <translation>啟動</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"72\"/>\n        <source>Driver</source>\n        <translation>驅動程式</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"73\"/>\n        <source>System Preparation</source>\n        <translation>系統準備工作</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"74\"/>\n        <source>Hot Key</source>\n        <translation type=\"unfinished\">Hot Key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"78\"/>\n        <source>Are you sure you want to save?\nYour EFI configuration will be overwritten!</source>\n        <translation>你確定你要儲存嗎？\n你的 EFI 配置將被覆寫！</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"86\"/>\n        <source>Saving EFI Boot Manager entries…</source>\n        <translation type=\"unfinished\">Saving EFI Boot Manager entries…</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"98\"/>\n        <source>ERROR: %0! %1</source>\n        <translation>錯誤：%0！%1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/efibooteditorcli.cpp\" line=\"114\"/>\n        <source>Finished</source>\n        <translation>已完成</translation>\n    </message>\n</context>\n<context>\n    <name>EFIKeySequenceEdit</name>\n    <message>\n        <location filename=\"../src/efikeysequenceedit.cpp\" line=\"109\"/>\n        <source>Press hot key</source>\n        <translation type=\"unfinished\">Press hot key</translation>\n    </message>\n</context>\n<context>\n    <name>FilePathDialog</name>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"12\"/>\n        <source>File path editor</source>\n        <translation>檔案路徑編輯器</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"47\"/>\n        <source>PCI</source>\n        <translation>PCI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"80\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"86\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"196\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"202\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"218\"/>\n        <source>Function</source>\n        <translation>功能</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"121\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"127\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"143\"/>\n        <source>Device</source>\n        <translation>裝置</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"721\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"727\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"742\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"835\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"841\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"856\"/>\n        <source>HID</source>\n        <translation>HID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"761\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"767\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"782\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"896\"/>\n        <source>UID</source>\n        <translation>UID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1813\"/>\n        <source>USB</source>\n        <translation>USB</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1819\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB 設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1893\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1909\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3688\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3710\"/>\n        <source>Interface</source>\n        <translation>介面</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7442\"/>\n        <source>Vendor</source>\n        <translation>供應商</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7445\"/>\n        <source>Vendor settings</source>\n        <translation>供應商設定</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7448\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;供應商設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1778\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1793\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5824\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6348\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7102\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7117\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7546\"/>\n        <source>GUID</source>\n        <translation>GUID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5539\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7587\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7850\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7853\"/>\n        <source>Data format</source>\n        <translation>資料格式</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5542\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7590\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7856\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;資料格式。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5546\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5869\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7860\"/>\n        <source>BASE64</source>\n        <translation>BASE64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1168\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5551\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5874\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7865\"/>\n        <source>UTF-16</source>\n        <translation>UTF-16</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1173\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5556\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7604\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7870\"/>\n        <source>UTF-8</source>\n        <translation>UTF-8</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5561\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7875\"/>\n        <source>HEX</source>\n        <translation>HEX</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5523\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5901\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7888\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7891\"/>\n        <source>Data</source>\n        <translation>資料</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7894\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;資料。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7565\"/>\n        <source>Vendor data</source>\n        <translation>供應商資料</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7481\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7757\"/>\n        <source>Type</source>\n        <translation>類型</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7478\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7500\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;類型。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7504\"/>\n        <source>HW</source>\n        <translation>HW</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7509\"/>\n        <source>MSG</source>\n        <translation>MSG</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7514\"/>\n        <source>MEDIA</source>\n        <translation>介質</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2292\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2298\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2313\"/>\n        <source>MAC</source>\n        <translation>MAC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2265\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;MAC settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;MAC 設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2374\"/>\n        <source>IPv4</source>\n        <translation>IPv4</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2380\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv4 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv4 設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2569\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2591\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2925\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2931\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2947\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4110\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4116\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4132\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6616\"/>\n        <source>Protocol</source>\n        <translation>協定</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3003\"/>\n        <source>Static</source>\n        <translation>靜態</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2692\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Subnet mask.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Subnet mask.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2730\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5479\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5486\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5503\"/>\n        <source>IPv6</source>\n        <translation>IPv6</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2736\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv6 settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;IPv6 設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3008\"/>\n        <source>Stateless auto-configuration</source>\n        <translation>無狀態自動配置</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3013\"/>\n        <source>Stateful auto-configuration</source>\n        <translation>有狀態自動配置</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3920\"/>\n        <source>SATA</source>\n        <translation>SATA</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SATA settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SATA 設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1387\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1393\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1409\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1658\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1664\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1679\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3900\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4035\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4041\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4057\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4191\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4197\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4212\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4496\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4502\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4517\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4610\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4616\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4988\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5009\"/>\n        <source>LUN</source>\n        <translation>LUN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4879\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4885\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4901\"/>\n        <source>URI</source>\n        <translation>URI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6096\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6105\"/>\n        <source>Disk</source>\n        <translation>磁碟</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6102\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;磁碟。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6123\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6126\"/>\n        <source>Choose disk</source>\n        <translation>選擇磁碟</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6129\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Choose disk from discovered in the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Choose disk from discovered in the system.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6133\"/>\n        <source>Custom</source>\n        <translation>自訂</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6147\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6150\"/>\n        <source>Reload drives</source>\n        <translation type=\"unfinished\">Reload drives</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6153\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reload system drives list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reload system drives list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6343\"/>\n        <source>MBR</source>\n        <translation>MBR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6177\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6183\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6199\"/>\n        <source>Partition</source>\n        <translation>分割區</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6720\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6741\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6797\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6812\"/>\n        <source>Name</source>\n        <translation>名稱</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7176\"/>\n        <source>BIOS Boot Specification</source>\n        <translation type=\"unfinished\">BIOS Boot Specification</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7405\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7411\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7427\"/>\n        <source>Description</source>\n        <translation>描述</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7639\"/>\n        <source>End</source>\n        <translation>結束</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7669\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7672\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7678\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7797\"/>\n        <source>Sub-Type</source>\n        <translation>子類型</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7675\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7697\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;子類型。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7701\"/>\n        <source>End This Instance</source>\n        <translation type=\"unfinished\">End This Instance</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7706\"/>\n        <source>End Entire</source>\n        <translation>全部結束</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7718\"/>\n        <source>Unknown</source>\n        <translation>未知</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"50\"/>\n        <source>The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.</source>\n        <translation type=\"unfinished\">The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"53\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for PCI defines the path to the PCI configuration space address for a PCI device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"77\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"99\"/>\n        <source>PCI Function Number.</source>\n        <translation type=\"unfinished\">PCI Function Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"83\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"105\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Function Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Function Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"118\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"140\"/>\n        <source>PCI Device Number.</source>\n        <translation type=\"unfinished\">PCI Device Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"124\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"146\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Device Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCI Device Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"163\"/>\n        <source>PCCARD</source>\n        <translation>PCCARD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"166\"/>\n        <source>PCCARD Settings.</source>\n        <translation>PCCARD 設定。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCCARD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PCCARD 設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"193\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"215\"/>\n        <source>Function Number (0 = First Function).</source>\n        <translation type=\"unfinished\">Function Number (0 = First Function).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"199\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"221\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Function Number (0 = First Function).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Function Number (0 = First Function).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"238\"/>\n        <source>Memory Mapped</source>\n        <translation type=\"unfinished\">Memory Mapped</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"241\"/>\n        <source>Memory Mapped Settings.</source>\n        <translation type=\"unfinished\">Memory Mapped Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Memory Mapped Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Memory Mapped Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"268\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"290\"/>\n        <source>The type of memory to allocate.</source>\n        <translation type=\"unfinished\">The type of memory to allocate.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"271\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"293\"/>\n        <source>Memory Type</source>\n        <translation type=\"unfinished\">Memory Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"274\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"296\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The type of memory to allocate.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The type of memory to allocate.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"300\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1578\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1584\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1599\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1738\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1753\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3145\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3160\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4416\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4437\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6862\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6868\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6883\"/>\n        <source>Reserved</source>\n        <translation>已預留</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"305\"/>\n        <source>Loader Code</source>\n        <translation type=\"unfinished\">Loader Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"310\"/>\n        <source>Loader Data</source>\n        <translation type=\"unfinished\">Loader Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"315\"/>\n        <source>Boot Services Code</source>\n        <translation type=\"unfinished\">Boot Services Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"320\"/>\n        <source>Boot Services Data</source>\n        <translation type=\"unfinished\">Boot Services Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"325\"/>\n        <source>Runtime Services Code</source>\n        <translation type=\"unfinished\">Runtime Services Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"330\"/>\n        <source>Runtime Services Data</source>\n        <translation type=\"unfinished\">Runtime Services Data</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"335\"/>\n        <source>Conventional</source>\n        <translation>傳統</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"340\"/>\n        <source>Unusable</source>\n        <translation>無法使用</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"345\"/>\n        <source>ACPI Reclaim</source>\n        <translation>ACPI 回收</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"350\"/>\n        <source>ACPI Memory NVS</source>\n        <translation type=\"unfinished\">ACPI Memory NVS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"355\"/>\n        <source>Memory Mapped IO</source>\n        <translation type=\"unfinished\">Memory Mapped IO</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"360\"/>\n        <source>Memory Mapped IO Port Space</source>\n        <translation type=\"unfinished\">Memory Mapped IO Port Space</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"365\"/>\n        <source>Pal Code</source>\n        <translation type=\"unfinished\">Pal Code</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"370\"/>\n        <source>Persistent</source>\n        <translation>持久</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"375\"/>\n        <source>Unaccepted</source>\n        <translation>未接受</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"383\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7013\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7034\"/>\n        <source>Starting Memory Address.</source>\n        <translation type=\"unfinished\">Starting Memory Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"386\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"407\"/>\n        <source>Start Address</source>\n        <translation>起始地址</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"389\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7019\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7040\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"423\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7053\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7074\"/>\n        <source>Ending Memory Address.</source>\n        <translation type=\"unfinished\">Ending Memory Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"426\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"432\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"447\"/>\n        <source>End Address</source>\n        <translation>結束地址</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"429\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7080\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ending Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ending Memory Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"467\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"522\"/>\n        <source>Controller</source>\n        <translation>控制器</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"470\"/>\n        <source>Controller settings.</source>\n        <translation>控制器設定。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"473\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;控制器設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"519\"/>\n        <source>Controller number.</source>\n        <translation type=\"unfinished\">Controller number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"525\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Controller number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"542\"/>\n        <source>BMC</source>\n        <translation>BMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"545\"/>\n        <source>The Device Path for a Baseboard Management Controller (BMC) host interface.</source>\n        <translation type=\"unfinished\">The Device Path for a Baseboard Management Controller (BMC) host interface.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"548\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for a Baseboard Management Controller (BMC) host interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Device Path for a Baseboard Management Controller (BMC) host interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"602\"/>\n        <source>The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.</source>\n        <translation type=\"unfinished\">The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"579\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"589\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"609\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2332\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2354\"/>\n        <source>Interface Type</source>\n        <translation type=\"unfinished\">Interface Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"582\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"612\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Baseboard Management Controller (BMC) host interface type:\n0x00 - Unknown.\n0x01 - KCS: Keyboard Controller Style.\n0x02 - SMIC: Server Management Interface Chip.\n0x03 - BT: Block Transfer.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"625\"/>\n        <source>Keyboard Controller Style</source>\n        <translation type=\"unfinished\">Keyboard Controller Style</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"630\"/>\n        <source>Server Management Interface Chip</source>\n        <translation type=\"unfinished\">Server Management Interface Chip</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"635\"/>\n        <source>Block Transfer</source>\n        <translation type=\"unfinished\">Block Transfer</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"643\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"664\"/>\n        <source>Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.</source>\n        <translation type=\"unfinished\">Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"667\"/>\n        <source>Base Address</source>\n        <translation type=\"unfinished\">Base Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"670\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Base address (either memory-mapped or I/O) of the BMC. If the least-significant bit of the field is a 1, the address is in I/O space; otherwise, the address is memory-mapped. Refer to the IPMI Interface Specification for usage details.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"688\"/>\n        <source>ACPI</source>\n        <translation>ACPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"805\"/>\n        <source>This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.</source>\n        <translation type=\"unfinished\">This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"694\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"808\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path contains ACPI Device IDs that represent a device’s Plug and Play Hardware ID and its corresponding unique persistent ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"718\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"739\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"832\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"853\"/>\n        <source>Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.</source>\n        <translation type=\"unfinished\">Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"724\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"745\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"838\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"859\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match the corresponding HID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"779\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"872\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"893\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.</source>\n        <translation type=\"unfinished\">Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"764\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"785\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"878\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"899\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. Only the 32-bit numeric value type of UID is supported; thus strings must not be used for the UID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"802\"/>\n        <source>Expanded</source>\n        <translation>已擴展</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"912\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"933\"/>\n        <source>Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.</source>\n        <translation type=\"unfinished\">Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"915\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"921\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"936\"/>\n        <source>CID</source>\n        <translation>CID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"918\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"939\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored in a numeric 32-bit compressed EISA-type ID. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI name space.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"952\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"974\"/>\n        <source>Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.</source>\n        <translation type=\"unfinished\">Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"955\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"961\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"977\"/>\n        <source>HIDSTR</source>\n        <translation>HIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"958\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"980\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices PnP hardware ID stored as a string. This value must match the corresponding HID in the ACPI name space. If the length of this string is 0, then the HID field is used. If the length of this string is greater than 0, then this field supersedes the HID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"987\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1009\"/>\n        <source>Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.</source>\n        <translation type=\"unfinished\">Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"990\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"996\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1012\"/>\n        <source>UIDSTR</source>\n        <translation>UIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"993\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1015\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique ID that is required by ACPI if two devices have the same HID. This value must also match the corresponding UID/HID pair in the ACPI name space. This value is stored as a string. If the length of this string is 0, then the UID field is used. If the length of this string is greater than 0, then this field supersedes the UID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1044\"/>\n        <source>Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.</source>\n        <translation type=\"unfinished\">Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1025\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1031\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1047\"/>\n        <source>CIDSTR</source>\n        <translation>CIDSTR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1028\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1050\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Devices compatible PnP hardware ID stored as a string. This value must match at least one of the compatible device IDs returned by the corresponding CID in the ACPI namespace. If the length of this string is 0, then the CID field is used. If the length of this string is greater than 0, then this field supersedes the CID field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1061\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1094\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1100\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1115\"/>\n        <source>ADR</source>\n        <translation>ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1064\"/>\n        <source>The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.</source>\n        <translation type=\"unfinished\">The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1067\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ADR device path is used to contain video output device attributes to support the Graphics Output Protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1091\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1112\"/>\n        <source>ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required</source>\n        <translation type=\"unfinished\">ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1097\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1118\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ADR value. For video output devices the value of this field comes from Table B-2 ACPI 3.0 specification. At least one ADR value is required&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1131\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1192\"/>\n        <source>This device path may optionally contain more than one ADR entry.</source>\n        <translation type=\"unfinished\">This device path may optionally contain more than one ADR entry.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1195\"/>\n        <source>Additional ADR</source>\n        <translation>額外的 ADR</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1198\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path may optionally contain more than one ADR entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path may optionally contain more than one ADR entry.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1153\"/>\n        <source>Additional ADR format.</source>\n        <translation type=\"unfinished\">Additional ADR format.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1156\"/>\n        <source>Additional ADR format</source>\n        <translation>額外的 ADR 格式</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1159\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Additional ADR format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;額外的 ADR 格式。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1209\"/>\n        <source>NVDIMM</source>\n        <translation>NVDIMM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1212\"/>\n        <source>This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.</source>\n        <translation>此裝置路徑使用 ACPI 6.0 規範定義的 NFIT 裝置句柄作為識別碼來描述 NVDIMM 裝置。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes an NVDIMM device using the ACPI 6.0 specification defined NFIT Device Handle as the identifier.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;此裝置路徑使用 ACPI 6.0 規範定義的 NFIT 裝置句柄作為識別碼來描述 NVDIMM 裝置。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1260\"/>\n        <source>NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.</source>\n        <translation>NFIT 裝置句柄—唯一實體識別碼。有關用於此句柄的欄位的具體定義，請參閱「ACPI 定義的裝置和裝置特定物件」部份的「NVDIMM 裝置」子章節。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1242\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1248\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1263\"/>\n        <source>NFIT Device Handle</source>\n        <translation>NFIT 裝置句柄</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1245\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFIT Device Handle - Unique physical identifier. See ACPI Defined Devices and Device Specific Objects section, NVDIMM Devices sub-chapter for the specific definition of the fields utilized for this handle.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NFIT 裝置句柄—唯一實體識別碼。有關用於此句柄的欄位的具體定義，請參閱「ACPI 定義的裝置和裝置特定物件」部份的「NVDIMM 裝置」子章節。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1284\"/>\n        <source>ATAPI</source>\n        <translation>ATAPI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1287\"/>\n        <source>ATAPI Settings.</source>\n        <translation>ATAPI 設定。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1290\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;ATAPI 設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1336\"/>\n        <source>Set to zero for primary or one for secondary.</source>\n        <translation type=\"unfinished\">Set to zero for primary or one for secondary.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1317\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1323\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1339\"/>\n        <source>Primary</source>\n        <translation type=\"unfinished\">Primary</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1320\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1342\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for primary or one for secondary.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for primary or one for secondary.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1349\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1371\"/>\n        <source>Set to zero for master or one for slave mode.</source>\n        <translation type=\"unfinished\">Set to zero for master or one for slave mode.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1374\"/>\n        <source>Slave</source>\n        <translation>從屬</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1377\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Set to zero for master or one for slave mode.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;對於主模式設定為 0，對於從屬模式設定為 1。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1384\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1406\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4054\"/>\n        <source>Logical Unit Number.</source>\n        <translation type=\"unfinished\">Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1390\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1412\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4038\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4060\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1429\"/>\n        <source>SCSI</source>\n        <translation>SCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1432\"/>\n        <source>SCSI Settings.</source>\n        <translation>SCSI 設定。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1435\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SCSI 設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1481\"/>\n        <source>Target ID on the SCSI bus (PUN).</source>\n        <translation type=\"unfinished\">Target ID on the SCSI bus (PUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1962\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1984\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4969\"/>\n        <source>Target ID</source>\n        <translation>目標 ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1465\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1487\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the SCSI bus (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the SCSI bus (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4985\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5006\"/>\n        <source>Logical Unit Number (LUN).</source>\n        <translation>邏輯單元號（LUN）。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5012\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number (LUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;邏輯單元號（LUN）。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1545\"/>\n        <source>Fibre Channel</source>\n        <translation>光纖通道</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1548\"/>\n        <source>Fibre Channel Settings</source>\n        <translation>光纖通道設定</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1551\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;光纖通道設定&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1575\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1596\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1750\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4434\"/>\n        <source>Reserved.</source>\n        <translation>已預留。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1581\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1602\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1756\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3142\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3163\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4419\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4440\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;已預留。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1615\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1636\"/>\n        <source>Fibre Channel World Wide Name.</source>\n        <translation>光纖通道全球通用名稱。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1624\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1639\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4456\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4462\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4477\"/>\n        <source>World Wide Name</source>\n        <translation>全球通用名稱</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1621\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1642\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel World Wide Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;光纖通道全球通用名稱。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1676\"/>\n        <source>Fibre Channel Logical Unit Number.</source>\n        <translation>光纖通道邏輯單元號。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1661\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1682\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;光纖通道邏輯單元號。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1699\"/>\n        <source>Firewire</source>\n        <translation>火線</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1702\"/>\n        <source>Firewire Settings.</source>\n        <translation>火線設定。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1705\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firewire Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;火線設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1790\"/>\n        <source>1394 Global Unique ID (GUID)</source>\n        <translation>1394 全域唯一識別碼（GUID）</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1796\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 Global Unique ID (GUID)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;1394 全域唯一識別碼（GUID）&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1816\"/>\n        <source>USB settings.</source>\n        <translation>USB 設定。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1865\"/>\n        <source>USB Parent Port Number.</source>\n        <translation>USB 父通訊埠號碼。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1852\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1868\"/>\n        <source>Parent Port</source>\n        <translation>父通訊埠</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1871\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Parent Port Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB 父通訊埠號碼。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1906\"/>\n        <source>USB Interface Number.</source>\n        <translation>USB 介面號碼。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1912\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB 介面號碼。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1929\"/>\n        <source>I2O</source>\n        <translation>I2O</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1932\"/>\n        <source>I2O Settings</source>\n        <translation>I2O 設定</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1935\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;I2O Settings&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;I2O 設定&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1981\"/>\n        <source>Target ID (TID) for a device.</source>\n        <translation type=\"unfinished\">Target ID (TID) for a device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1965\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"1987\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID (TID) for a device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID (TID) for a device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2004\"/>\n        <source>InfiniBand</source>\n        <translation>InfiniBand</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2007\"/>\n        <source>InfiniBand Settings.</source>\n        <translation type=\"unfinished\">InfiniBand Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2010\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;InfiniBand Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;InfiniBand Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2034\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2067\"/>\n        <source>Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.</source>\n        <translation type=\"unfinished\">Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2043\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2055\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2076\"/>\n        <source>Resource Flags</source>\n        <translation type=\"unfinished\">Resource Flags</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2046\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2079\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Flags to help identify/manage InfiniBand device path elements:\nBit 0 - IOC/Service (0b = IOC, 1b = Service).\nBit 1 - Extend Boot Environment.\nBit 2 - Console Protocol.\nBit 3 - Storage Protocol.\nBit 4 - Network Protocol.\nAll other bits are reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2098\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2119\"/>\n        <source>128-bit Global Identifier for remote fabric port</source>\n        <translation type=\"unfinished\">128-bit Global Identifier for remote fabric port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2101\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2122\"/>\n        <source>PORT GID</source>\n        <translation>PORT GID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2104\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2125\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;128-bit Global Identifier for remote fabric port&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;128-bit Global Identifier for remote fabric port&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2135\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2156\"/>\n        <source>64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)</source>\n        <translation type=\"unfinished\">64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2138\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2144\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2159\"/>\n        <source>IOC GUID/Service ID</source>\n        <translation type=\"unfinished\">IOC GUID/Service ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2141\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2162\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit unique identifier to remote IOC or server process. Interpretation of field specified by Resource Flags (bit 0)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2175\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2196\"/>\n        <source>64-bit persistent ID of remote IOC port.</source>\n        <translation type=\"unfinished\">64-bit persistent ID of remote IOC port.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2178\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2184\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2199\"/>\n        <source>Target Port ID</source>\n        <translation type=\"unfinished\">Target Port ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2181\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote IOC port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote IOC port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2236\"/>\n        <source>64-bit persistent ID of remote device.</source>\n        <translation type=\"unfinished\">64-bit persistent ID of remote device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2239\"/>\n        <source>Device ID</source>\n        <translation>裝置 ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;64-bit persistent ID of remote device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2259\"/>\n        <source>MAC Address</source>\n        <translation>MAC 地址</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2262\"/>\n        <source>MAC settings.</source>\n        <translation>MAC 設定。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2289\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2310\"/>\n        <source>The MAC address for a network interface padded with 0s.</source>\n        <translation type=\"unfinished\">The MAC address for a network interface padded with 0s.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2295\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2316\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The MAC address for a network interface padded with 0s.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The MAC address for a network interface padded with 0s.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2329\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2351\"/>\n        <source>Network interface type (i.e., 802.3, FDDI). See RFC 3232.</source>\n        <translation type=\"unfinished\">Network interface type (i.e., 802.3, FDDI). See RFC 3232.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2357\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network interface type (i.e., 802.3, FDDI). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network interface type (i.e., 802.3, FDDI). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2377\"/>\n        <source>IPv4 settings.</source>\n        <translation>IPv4 設定。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2404\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2425\"/>\n        <source>The local IPv4 address.</source>\n        <translation type=\"unfinished\">The local IPv4 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2407\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2413\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2763\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2784\"/>\n        <source>Local IP Address</source>\n        <translation type=\"unfinished\">Local IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2410\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2431\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2444\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2465\"/>\n        <source>The remote IPv4 address.</source>\n        <translation type=\"unfinished\">The remote IPv4 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2447\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2468\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2803\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2824\"/>\n        <source>Remote IP Address</source>\n        <translation type=\"unfinished\">Remote IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2450\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2471\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv4 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2484\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2840\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2862\"/>\n        <source>The local port number.</source>\n        <translation type=\"unfinished\">The local port number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2487\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2849\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2865\"/>\n        <source>Local Port</source>\n        <translation type=\"unfinished\">Local Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2490\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2846\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2868\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2525\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2547\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2903\"/>\n        <source>The remote port number.</source>\n        <translation type=\"unfinished\">The remote port number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2550\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2884\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2890\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2906\"/>\n        <source>Remote Port</source>\n        <translation type=\"unfinished\">Remote Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2553\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2887\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2909\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote port number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2566\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2588\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2922\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2944\"/>\n        <source>The network protocol (i.e., UDP, TCP). See RFC 3232.</source>\n        <translation type=\"unfinished\">The network protocol (i.e., UDP, TCP). See RFC 3232.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2572\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2594\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2928\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2950\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The network protocol (i.e., UDP, TCP). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The network protocol (i.e., UDP, TCP). See RFC 3232.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2631\"/>\n        <source>0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.</source>\n        <translation type=\"unfinished\">0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2618\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2635\"/>\n        <source>Static IP Address</source>\n        <translation type=\"unfinished\">Static IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Source IP Address was assigned though DHCP.\n0x01 - The Source IP Address is statically bound.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2667\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3083\"/>\n        <source>The Gateway IP Address.</source>\n        <translation type=\"unfinished\">The Gateway IP Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2649\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2655\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2670\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3071\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3086\"/>\n        <source>Gateway IP Address</source>\n        <translation type=\"unfinished\">Gateway IP Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2673\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3089\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Gateway IP Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Gateway IP Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2686\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2707\"/>\n        <source>Subnet mask.</source>\n        <translation type=\"unfinished\">Subnet mask.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2689\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2695\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2710\"/>\n        <source>Subnet Mask</source>\n        <translation type=\"unfinished\">Subnet Mask</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2733\"/>\n        <source>IPv6 settings.</source>\n        <translation>IPv6 設定。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2760\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2781\"/>\n        <source>The local IPv6 address.</source>\n        <translation type=\"unfinished\">The local IPv6 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2787\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The local IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2821\"/>\n        <source>The remote IPv6 address.</source>\n        <translation type=\"unfinished\">The remote IPv6 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The remote IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2963\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2989\"/>\n        <source>0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.</source>\n        <translation type=\"unfinished\">0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2968\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2976\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2994\"/>\n        <source>IP Address Origin</source>\n        <translation type=\"unfinished\">IP Address Origin</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2971\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"2997\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The Local IP Address was manually configured.\n0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration.\n0x02 - The Local IP Address is assigned through IPv6 stateful configuration.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3021\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3043\"/>\n        <source>The Prefix Length.</source>\n        <translation type=\"unfinished\">The Prefix Length.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3024\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3030\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3046\"/>\n        <source>Prefix Length</source>\n        <translation type=\"unfinished\">Prefix Length</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3027\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3049\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Prefix Length.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Prefix Length.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3106\"/>\n        <source>UART</source>\n        <translation>UART</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3109\"/>\n        <source>UART Settings.</source>\n        <translation>UART 設定。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3112\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UART 設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3176\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3197\"/>\n        <source>The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.</source>\n        <translation type=\"unfinished\">The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3179\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3185\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3200\"/>\n        <source>Baud Rate</source>\n        <translation type=\"unfinished\">Baud Rate</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3182\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3203\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The baud rate setting for the UART style device. A value of 0 means that the devices default baud rate will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3216\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3238\"/>\n        <source>The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.</source>\n        <translation type=\"unfinished\">The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3219\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3225\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3241\"/>\n        <source>Data Bits</source>\n        <translation type=\"unfinished\">Data Bits</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3222\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3244\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of data bits for the UART style device. A value of 0 means that the devices default number of data bits will be used.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3257\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3291\"/>\n        <source>The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.</source>\n        <translation type=\"unfinished\">The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3266\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3300\"/>\n        <source>Parity</source>\n        <translation type=\"unfinished\">Parity</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3303\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The parity setting for the UART style device:\n0x00 - Default Parity.\n0x01 - No Parity.\n0x02 - Even Parity.\n0x03 - Odd Parity.\n0x04 - Mark Parity.\n0x05 - Space Parity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3313\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3394\"/>\n        <source>Default</source>\n        <translation>預設</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3318\"/>\n        <source>No</source>\n        <translation>否</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3323\"/>\n        <source>Even</source>\n        <translation>偶數</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3328\"/>\n        <source>Odd</source>\n        <translation>奇數</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3333\"/>\n        <source>Mark</source>\n        <translation>標記</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3338\"/>\n        <source>Space</source>\n        <translation>空間</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3346\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3376\"/>\n        <source>The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.</source>\n        <translation type=\"unfinished\">The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3353\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3363\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3383\"/>\n        <source>Stop Bits</source>\n        <translation type=\"unfinished\">Stop Bits</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3356\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3386\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The number of stop bits for the UART style device:\n0x00 - Default Stop Bits.\n0x01 - 1 Stop Bit.\n0x02 - 1.5 Stop Bits.\n0x03 - 2 Stop Bits.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3399\"/>\n        <source>1</source>\n        <translation>1</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3404\"/>\n        <source>1.5</source>\n        <translation>1.5</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3409\"/>\n        <source>2</source>\n        <translation>2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3421\"/>\n        <source>USB Class</source>\n        <translation type=\"unfinished\">USB Class</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3424\"/>\n        <source>USB Class Settings.</source>\n        <translation type=\"unfinished\">USB Class Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3427\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Class Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB Class Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3451\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3472\"/>\n        <source>Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.</source>\n        <translation type=\"unfinished\">Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3454\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3460\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3475\"/>\n        <source>Vendor ID</source>\n        <translation type=\"unfinished\">Vendor ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3457\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3478\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor ID assigned by USB-IF. A value of 0xFFFF will match any Vendor ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3491\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3512\"/>\n        <source>Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.</source>\n        <translation type=\"unfinished\">Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3494\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3500\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3515\"/>\n        <source>Product ID</source>\n        <translation type=\"unfinished\">Product ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3497\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3518\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Product ID assigned by USB-IF. A value of 0xFFFF will match any Product ID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3531\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3552\"/>\n        <source>The class code assigned by the USB-IF. A value of 0xFF will match any class code.</source>\n        <translation type=\"unfinished\">The class code assigned by the USB-IF. A value of 0xFF will match any class code.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3534\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3540\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3555\"/>\n        <source>Device Class</source>\n        <translation type=\"unfinished\">Device Class</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3537\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3558\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The class code assigned by the USB-IF. A value of 0xFF will match any class code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The class code assigned by the USB-IF. A value of 0xFF will match any class code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3571\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3592\"/>\n        <source>The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.</source>\n        <translation type=\"unfinished\">The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3574\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3595\"/>\n        <source>Device Subclass</source>\n        <translation type=\"unfinished\">Device Subclass</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The subclass code assigned by the USB-IF. A value of 0xFF will match any subclass code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3611\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3632\"/>\n        <source>The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.</source>\n        <translation type=\"unfinished\">The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3614\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3620\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3635\"/>\n        <source>Device Protocol</source>\n        <translation type=\"unfinished\">Device Protocol</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3617\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3638\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The protocol code assigned by the USB-IF. A value of 0xFF will match any protocol code.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3655\"/>\n        <source>USB WWID</source>\n        <translation type=\"unfinished\">USB WWID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3658\"/>\n        <source>This device path describes a USB device using its serial number.</source>\n        <translation type=\"unfinished\">This device path describes a USB device using its serial number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3661\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a USB device using its serial number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a USB device using its serial number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3685\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3707\"/>\n        <source>USB interface Number.</source>\n        <translation type=\"unfinished\">USB interface Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3691\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3713\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB interface Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3726\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3747\"/>\n        <source>USB vendor id of the device.</source>\n        <translation type=\"unfinished\">USB vendor id of the device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3729\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3735\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3750\"/>\n        <source>Device Vendor Id</source>\n        <translation type=\"unfinished\">Device Vendor Id</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3732\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3753\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB vendor id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB vendor id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3766\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3787\"/>\n        <source>USB product id of the device.</source>\n        <translation type=\"unfinished\">USB product id of the device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3775\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3790\"/>\n        <source>Device Product Id</source>\n        <translation type=\"unfinished\">Device Product Id</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3772\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3793\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB product id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;USB product id of the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3828\"/>\n        <source>Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).</source>\n        <translation type=\"unfinished\">Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3815\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3831\"/>\n        <source>Serial Number</source>\n        <translation type=\"unfinished\">Serial Number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3812\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Last 64-or-fewer UTF-16 characters of the USB serial number. The length of the string is determined by the Length field less the offset of the Serial Number field (10).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3845\"/>\n        <source>Device Logical Unit</source>\n        <translation type=\"unfinished\">Device Logical Unit</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3848\"/>\n        <source>Device Logical Unit Settings.</source>\n        <translation type=\"unfinished\">Device Logical Unit Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3851\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device Logical Unit Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Device Logical Unit Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3875\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3897\"/>\n        <source>Logical Unit Number for the interface.</source>\n        <translation type=\"unfinished\">Logical Unit Number for the interface.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3881\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3903\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number for the interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Logical Unit Number for the interface.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3923\"/>\n        <source>SATA settings.</source>\n        <translation>SATA 設定。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3950\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3972\"/>\n        <source>The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.</source>\n        <translation type=\"unfinished\">The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3953\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3959\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3975\"/>\n        <source>HBA Port</source>\n        <translation type=\"unfinished\">HBA Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3956\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3978\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The HBA port number that facilitates the connection to the device or a port multiplier. The value 0xFFFF is reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3991\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4013\"/>\n        <source>The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.</source>\n        <translation type=\"unfinished\">The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3994\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4000\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4016\"/>\n        <source>Port Multiplier Port</source>\n        <translation type=\"unfinished\">Port Multiplier Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"3997\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4019\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Port multiplier port number that facilitates the connection to the device. Must be set to 0xFFFF if the device is directly connected to the HBA.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4077\"/>\n        <source>iSCSI</source>\n        <translation>iSCSI</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4080\"/>\n        <source>iSCSI Settings.</source>\n        <translation type=\"unfinished\">iSCSI Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4083\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4107\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4129\"/>\n        <source>Network Protocol (0 = TCP, 1+ = reserved).</source>\n        <translation type=\"unfinished\">Network Protocol (0 = TCP, 1+ = reserved).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4113\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4135\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network Protocol (0 = TCP, 1+ = reserved).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Network Protocol (0 = TCP, 1+ = reserved).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4148\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4169\"/>\n        <source>iSCSI Login Options.</source>\n        <translation type=\"unfinished\">iSCSI Login Options.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4151\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4157\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4172\"/>\n        <source>Options</source>\n        <translation>選項</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4154\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4175\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Login Options.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Login Options.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4188\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4209\"/>\n        <source>8 byte array containing the iSCSI Logical Unit Number.</source>\n        <translation type=\"unfinished\">8 byte array containing the iSCSI Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4194\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4215\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing the iSCSI Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing the iSCSI Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4228\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4250\"/>\n        <source>iSCSI Target Portal group tag the initiator intends to establish a session with.</source>\n        <translation type=\"unfinished\">iSCSI Target Portal group tag the initiator intends to establish a session with.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4231\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4253\"/>\n        <source>Target Portal Group</source>\n        <translation type=\"unfinished\">Target Portal Group</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4234\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4256\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Target Portal group tag the initiator intends to establish a session with.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI Target Portal group tag the initiator intends to establish a session with.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4269\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4291\"/>\n        <source>iSCSI NodeTarget Name.</source>\n        <translation type=\"unfinished\">iSCSI NodeTarget Name.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4272\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4278\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4294\"/>\n        <source>Target Name</source>\n        <translation type=\"unfinished\">Target Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4275\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4297\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI NodeTarget Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;iSCSI NodeTarget Name.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4308\"/>\n        <source>VLAN</source>\n        <translation>VLAN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4311\"/>\n        <source>VLAN Settings.</source>\n        <translation type=\"unfinished\">VLAN Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4314\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4338\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4360\"/>\n        <source>VLAN identifier (0-4094).</source>\n        <translation type=\"unfinished\">VLAN identifier (0-4094).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4341\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4347\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4363\"/>\n        <source>Vlan ID</source>\n        <translation type=\"unfinished\">Vlan ID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4344\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4366\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN identifier (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;VLAN identifier (0-4094).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4383\"/>\n        <source>Fibre Channel Ex</source>\n        <translation type=\"unfinished\">Fibre Channel Ex</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4386\"/>\n        <source>The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation type=\"unfinished\">The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4389\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Fibre Channel Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4453\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4474\"/>\n        <source>8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).</source>\n        <translation type=\"unfinished\">8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4459\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4480\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel End Device Port Name (a.k.a., World Wide Name).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4493\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4514\"/>\n        <source>8 byte array containing Fibre Channel Logical Unit Number.</source>\n        <translation type=\"unfinished\">8 byte array containing Fibre Channel Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4499\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4520\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8 byte array containing Fibre Channel Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4537\"/>\n        <source>SAS Extended Messaging</source>\n        <translation type=\"unfinished\">SAS Extended Messaging</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4540\"/>\n        <source>The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</source>\n        <translation type=\"unfinished\">The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4543\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The SAS Ex device path clarifies the definition of the Logical Unit Number field to conform with the T-10 SCSI Architecture Model 4 specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4567\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4588\"/>\n        <source>8-byte array of the SAS Address for Serial Attached SCSI Target Port.</source>\n        <translation type=\"unfinished\">8-byte array of the SAS Address for Serial Attached SCSI Target Port.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4570\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4576\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4591\"/>\n        <source>SAS Address</source>\n        <translation type=\"unfinished\">SAS Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4573\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4594\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Address for Serial Attached SCSI Target Port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Address for Serial Attached SCSI Target Port.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4607\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4628\"/>\n        <source>8-byte array of the SAS Logical Unit Number.</source>\n        <translation type=\"unfinished\">8-byte array of the SAS Logical Unit Number.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4613\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4634\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;8-byte array of the SAS Logical Unit Number.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4647\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4668\"/>\n        <source>More Information about the device and its interconnect.</source>\n        <translation type=\"unfinished\">More Information about the device and its interconnect.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4650\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4656\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4671\"/>\n        <source>Device and Topology Info</source>\n        <translation type=\"unfinished\">Device and Topology Info</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4653\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4674\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;More Information about the device and its interconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;More Information about the device and its interconnect.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4687\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4709\"/>\n        <source>Relative Target Port (RTP).</source>\n        <translation type=\"unfinished\">Relative Target Port (RTP).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4690\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4696\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4712\"/>\n        <source>Relative Target Port</source>\n        <translation type=\"unfinished\">Relative Target Port</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4715\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Relative Target Port (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Relative Target Port (RTP).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4732\"/>\n        <source>NVM Express NS</source>\n        <translation type=\"unfinished\">NVM Express NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4735\"/>\n        <source>NVM Express Namespace Settings.</source>\n        <translation type=\"unfinished\">NVM Express Namespace Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4738\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM Express Namespace Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;NVM Express Namespace Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4783\"/>\n        <source>Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.</source>\n        <translation type=\"unfinished\">Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4765\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4771\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4786\"/>\n        <source>NSID</source>\n        <translation>NSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4768\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4789\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace identifier (NSID). The values of 0 and 0xFFFFFFFF are invalid.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4802\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4823\"/>\n        <source>This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.</source>\n        <translation type=\"unfinished\">This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4805\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4811\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4826\"/>\n        <source>EUI-64</source>\n        <translation>EUI-64</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4808\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4829\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This field contains the IEEE Extended Unique Identifier (EUI-64). Devices without an EUI-64 value must initialize this field with a value of 0.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4849\"/>\n        <source>Refer to RFC 3986 for details on the URI contents.</source>\n        <translation type=\"unfinished\">Refer to RFC 3986 for details on the URI contents.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4852\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Refer to RFC 3986 for details on the URI contents.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Refer to RFC 3986 for details on the URI contents.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4876\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4898\"/>\n        <source>Instance of the URI pursuant to RFC 3986.</source>\n        <translation type=\"unfinished\">Instance of the URI pursuant to RFC 3986.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4882\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Instance of the URI pursuant to RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Instance of the URI pursuant to RFC 3986.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4915\"/>\n        <source>UFS</source>\n        <translation>UFS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4918\"/>\n        <source>UFS Settings.</source>\n        <translation type=\"unfinished\">UFS Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;UFS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4966\"/>\n        <source>Target ID on the UFS interface (PUN).</source>\n        <translation type=\"unfinished\">Target ID on the UFS interface (PUN).</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"4972\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the UFS interface (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Target ID on the UFS interface (PUN).&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5029\"/>\n        <source>SD</source>\n        <translation>SD</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5032\"/>\n        <source>SD Settings.</source>\n        <translation type=\"unfinished\">SD Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5035\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SD Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5059\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5081\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5277\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5299\"/>\n        <source>Slot Number</source>\n        <translation type=\"unfinished\">Slot Number</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5068\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5084\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5280\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5286\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5302\"/>\n        <source>Slot</source>\n        <translation type=\"unfinished\">Slot</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5065\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5087\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5283\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5305\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Slot Number&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Slot Number&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5104\"/>\n        <source>Bluetooth</source>\n        <translation>藍牙</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5107\"/>\n        <source>EFI Bluetooth Settings.</source>\n        <translation type=\"unfinished\">EFI Bluetooth Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5110\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI Bluetooth Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI Bluetooth Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5134\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5155\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5352\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5373\"/>\n        <source>48-bit Bluetooth device address.</source>\n        <translation type=\"unfinished\">48-bit Bluetooth device address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5137\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5143\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5158\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5355\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5361\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5376\"/>\n        <source>Device Address</source>\n        <translation type=\"unfinished\">Device Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5140\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5161\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5358\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5379\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-bit Bluetooth device address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;48-bit Bluetooth device address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5178\"/>\n        <source>Wi-Fi</source>\n        <translation>Wi-Fi</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5181\"/>\n        <source>Wi-Fi Settings.</source>\n        <translation type=\"unfinished\">Wi-Fi Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5184\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wi-Fi Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Wi-Fi Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5208\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5230\"/>\n        <source>SSID in octet string.</source>\n        <translation type=\"unfinished\">SSID in octet string.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5211\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5217\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5233\"/>\n        <source>SSID</source>\n        <translation>SSID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5214\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5236\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID in octet string.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;SSID in octet string.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5247\"/>\n        <source>eMMC</source>\n        <translation>eMMC</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5250\"/>\n        <source>Embedded Multi-Media Card Settings.</source>\n        <translation type=\"unfinished\">Embedded Multi-Media Card Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5253\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Embedded Multi-Media Card Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Embedded Multi-Media Card Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5322\"/>\n        <source>BluetoothLE</source>\n        <translation>藍牙低功耗</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5325\"/>\n        <source>EFI BluetoothLE Settings.</source>\n        <translation type=\"unfinished\">EFI BluetoothLE Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5328\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI BluetoothLE Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;EFI BluetoothLE Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5392\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5416\"/>\n        <source>0x00 - Public Device Address.\n0x01 - Random Device Address.</source>\n        <translation type=\"unfinished\">0x00 - Public Device Address.\n0x01 - Random Device Address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5396\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5403\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5420\"/>\n        <source>Address Type</source>\n        <translation>地址類型</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5399\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5423\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Public Device Address.\n0x01 - Random Device Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - Public Device Address.\n0x01 - Random Device Address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5428\"/>\n        <source>Public</source>\n        <translation>公共</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5433\"/>\n        <source>Random</source>\n        <translation>隨機</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5445\"/>\n        <source>DNS</source>\n        <translation>DNS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5448\"/>\n        <source>DNS Settings.</source>\n        <translation>DNS 設定。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5451\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DNS Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DNS 設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5475\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5499\"/>\n        <source>0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.</source>\n        <translation type=\"unfinished\">0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5482\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5506\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x00 - The DNS server address is IPv4 address.\n0x01 - The DNS server address is IPv6 address.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5514\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5575\"/>\n        <source>One or more instances of the DNS server address in EFI_IP_ADDRESS.</source>\n        <translation type=\"unfinished\">One or more instances of the DNS server address in EFI_IP_ADDRESS.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5520\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5581\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;One or more instances of the DNS server address in EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;One or more instances of the DNS server address in EFI_IP_ADDRESS.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5536\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7584\"/>\n        <source>Data format.</source>\n        <translation>資料格式。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5592\"/>\n        <source>NVDIMM NS</source>\n        <translation>NVDIMM NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5595\"/>\n        <source>This device path describes a bootable NVDIMM namespace that is defined by a namespace label.</source>\n        <translation type=\"unfinished\">This device path describes a bootable NVDIMM namespace that is defined by a namespace label.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5598\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVDIMM namespace that is defined by a namespace label.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVDIMM namespace that is defined by a namespace label.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5622\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5643\"/>\n        <source>Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.</source>\n        <translation type=\"unfinished\">Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5625\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5631\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5646\"/>\n        <source>UUID</source>\n        <translation>UUID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5628\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5649\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace unique label identifier UUID. See the Uuid description in the NVDIMM Label Protocol - Label definitions section for details on this field.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5663\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5698\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5706\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5724\"/>\n        <source>REST Service</source>\n        <translation type=\"unfinished\">REST Service</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5666\"/>\n        <source>REST Service Settings.</source>\n        <translation type=\"unfinished\">REST Service Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5669\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;REST Service Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;REST Service Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5693\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5719\"/>\n        <source>0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.</source>\n        <translation type=\"unfinished\">0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5701\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5727\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - Redfish REST Service.\n0x02 - OData REST Service.\n0xFF - Vendor specific REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5733\"/>\n        <source>Redfish</source>\n        <translation>Redfish</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5738\"/>\n        <source>OData</source>\n        <translation>OData</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5743\"/>\n        <source>Vendor specific</source>\n        <translation type=\"unfinished\">Vendor specific</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5775\"/>\n        <source>0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.</source>\n        <translation type=\"unfinished\">0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5755\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5762\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5779\"/>\n        <source>Access Mode</source>\n        <translation type=\"unfinished\">Access Mode</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5758\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5782\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;0x01 - In-Band REST Service.\n0x02 - Out-of-band REST Service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5787\"/>\n        <source>In-Band</source>\n        <translation type=\"unfinished\">In-Band</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5792\"/>\n        <source>Out-of-band</source>\n        <translation type=\"unfinished\">Out-of-band</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5800\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5821\"/>\n        <source>GUID of vendor specific REST service.</source>\n        <translation type=\"unfinished\">GUID of vendor specific REST service.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5806\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5827\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID of vendor specific REST service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID of vendor specific REST service.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5837\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5898\"/>\n        <source>Vendor-defined data.</source>\n        <translation type=\"unfinished\">Vendor-defined data.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5843\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5904\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5915\"/>\n        <source>NVMe-oF NS</source>\n        <translation>NVMe-oF NS</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5918\"/>\n        <source>This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.</source>\n        <translation type=\"unfinished\">This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5921\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path describes a bootable NVMe over Fiber namespace that is defined by a unique Namespace and Subsystem NQN identity.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5967\"/>\n        <source>Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.</source>\n        <translation type=\"unfinished\">Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5954\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5970\"/>\n        <source>NIDT</source>\n        <translation>NIDT</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5951\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5973\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier Type (NIDT), for globally unique type values defined in the CNS 03h NIDT field (1h, 2h, or 3h) by the NVM Express Base Specification.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5986\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6007\"/>\n        <source>Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.</source>\n        <translation type=\"unfinished\">Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5989\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5995\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6010\"/>\n        <source>NID</source>\n        <translation>NID</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"5992\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6013\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Namespace Identifier (NID), a globally unique value defined in the Namespace Identification De-scriptor list (CNS 03h) by the NVM Express Base Specification in big endian format.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6023\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6045\"/>\n        <source>Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.</source>\n        <translation type=\"unfinished\">Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6026\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6032\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6048\"/>\n        <source>Subsystem NQN</source>\n        <translation type=\"unfinished\">Subsystem NQN</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6029\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6051\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unique identifier of an NVM subsystem stored as UTF-8 string of n-bytes in compliance with the NVMe Qualified Name in the NVM Express Base Specification. Subsystem NQN is used for purposes of identification and authentication. Maximum length of 224 bytes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6066\"/>\n        <source>Hard Drive</source>\n        <translation type=\"unfinished\">Hard Drive</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6069\"/>\n        <source>The Hard Drive Media Device Path is used to represent a partition on a hard drive.</source>\n        <translation type=\"unfinished\">The Hard Drive Media Device Path is used to represent a partition on a hard drive.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6072\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Hard Drive Media Device Path is used to represent a partition on a hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Hard Drive Media Device Path is used to represent a partition on a hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6174\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6196\"/>\n        <source>Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].</source>\n        <translation type=\"unfinished\">Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6180\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6202\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes the entry in a partition table, starting with entry 1. Partition number zero represents the entire device. Valid partition numbers for a MBR partition are [1, 4]. Valid partition numbers for a GPT partition are [1, NumberOfPartitionEntries].&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6215\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6236\"/>\n        <source>Starting LBA of the partition on the hard drive.</source>\n        <translation type=\"unfinished\">Starting LBA of the partition on the hard drive.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6218\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6224\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6239\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6466\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6472\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6487\"/>\n        <source>Partition Start</source>\n        <translation type=\"unfinished\">Partition Start</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6221\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6242\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting LBA of the partition on the hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting LBA of the partition on the hard drive.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6255\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6276\"/>\n        <source>Size of the partition in units of Logical Blocks.</source>\n        <translation type=\"unfinished\">Size of the partition in units of Logical Blocks.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6258\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6264\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6279\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6506\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6512\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6527\"/>\n        <source>Partition Size</source>\n        <translation type=\"unfinished\">Partition Size</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6261\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6282\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Logical Blocks.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Logical Blocks.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6295\"/>\n        <source>Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation type=\"unfinished\">Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6301\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6310\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6367\"/>\n        <source>Partition Signature</source>\n        <translation type=\"unfinished\">Partition Signature</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6304\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\nIf SignatureType is 0, this field has to be initialized with 16 zeroes.\nIf SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\nIf SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6322\"/>\n        <source>PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.</source>\n        <translation type=\"unfinished\">PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6328\"/>\n        <source>Signature Type</source>\n        <translation type=\"unfinished\">Signature Type</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6331\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;PartType of Disk Signature(Unused values reserved):\n            0x00 - No Disk Signature.\n            0x01 - 32-bit signature from address 0x1b8 of the type 0x01 MBR.\n            0x02 - GUID signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6338\"/>\n        <source>None</source>\n        <translation>無</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6361\"/>\n        <source>Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.</source>\n        <translation type=\"unfinished\">Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6370\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Signature unique to this partition:\n            If SignatureType is 0, this field has to be initialized with 16 zeroes.\n            If SignatureType is 1, the MBR signature is stored in the first 4 bytes of this field. The other 12 bytes are initialized with zeroes.\n            If SignatureType is 2, this field contains a 16 byte signature.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6392\"/>\n        <source>CD-ROM</source>\n        <translation>CD-ROM</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6395\"/>\n        <source>The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.</source>\n        <translation type=\"unfinished\">The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6398\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The CD-ROM Media Device Path is used to define a system partition that exists on a CD-ROM.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6422\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6444\"/>\n        <source>Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.</source>\n        <translation type=\"unfinished\">Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6425\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6431\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6447\"/>\n        <source>Boot Entry</source>\n        <translation type=\"unfinished\">Boot Entry</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6428\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6450\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Boot Entry number from the Boot Catalog. The Initial/Default entry is defined as zero.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6463\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6484\"/>\n        <source>Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.</source>\n        <translation type=\"unfinished\">Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6469\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6490\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Starting RBA of the partition on the medium. CD-ROMs use Relative logical Block Addressing.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6503\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6524\"/>\n        <source>Size of the partition in units of Blocks, also called Sectors.</source>\n        <translation type=\"unfinished\">Size of the partition in units of Blocks, also called Sectors.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6509\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6530\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Blocks, also called Sectors.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Size of the partition in units of Blocks, also called Sectors.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6547\"/>\n        <source>File Path</source>\n        <translation>檔案路徑</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6550\"/>\n        <source>File Path settings.</source>\n        <translation type=\"unfinished\">File Path settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6553\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File Path settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;File Path settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6577\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6599\"/>\n        <source>Path including directory and file names.</source>\n        <translation type=\"unfinished\">Path including directory and file names.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6580\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6586\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6602\"/>\n        <source>Path Name</source>\n        <translation type=\"unfinished\">Path Name</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6583\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6605\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Path including directory and file names.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Path including directory and file names.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6619\"/>\n        <source>The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.</source>\n        <translation type=\"unfinished\">The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6622\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The Media Protocol Device Path is used to denote the protocol that is being used in a device path at the location of the path specified.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6646\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6667\"/>\n        <source>The ID of the protocol.</source>\n        <translation type=\"unfinished\">The ID of the protocol.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6652\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6673\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ID of the protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The ID of the protocol.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6687\"/>\n        <source>Firmware File</source>\n        <translation>韌體檔案</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6690\"/>\n        <source>Describes a firmware file in a firmware volume.</source>\n        <translation type=\"unfinished\">Describes a firmware file in a firmware volume.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6693\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware file in a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware file in a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6717\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6738\"/>\n        <source>Firmware file name GUID.</source>\n        <translation type=\"unfinished\">Firmware file name GUID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6723\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6744\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware file name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware file name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6758\"/>\n        <source>Firmware Volume</source>\n        <translation type=\"unfinished\">Firmware Volume</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6761\"/>\n        <source>Describes a firmware volume.</source>\n        <translation type=\"unfinished\">Describes a firmware volume.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6764\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Describes a firmware volume.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6809\"/>\n        <source>Firmware volume name GUID.</source>\n        <translation type=\"unfinished\">Firmware volume name GUID.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware volume name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Firmware volume name GUID.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6829\"/>\n        <source>Relative Offset Range</source>\n        <translation type=\"unfinished\">Relative Offset Range</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6832\"/>\n        <source>This device path node specifies a range of offsets relative to the first byte available on the device.</source>\n        <translation type=\"unfinished\">This device path node specifies a range of offsets relative to the first byte available on the device.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6835\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path node specifies a range of offsets relative to the first byte available on the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This device path node specifies a range of offsets relative to the first byte available on the device.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6859\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6880\"/>\n        <source>Reserved for future use.</source>\n        <translation type=\"unfinished\">Reserved for future use.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6865\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6886\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved for future use.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Reserved for future use.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6899\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6920\"/>\n        <source>Offset of the first byte, relative to the parent device node.</source>\n        <translation type=\"unfinished\">Offset of the first byte, relative to the parent device node.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6902\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6908\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6923\"/>\n        <source>Starting Offset</source>\n        <translation type=\"unfinished\">Starting Offset</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6905\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6926\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the first byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the first byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6939\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6960\"/>\n        <source>Offset of the last byte, relative to the parent device node.</source>\n        <translation type=\"unfinished\">Offset of the last byte, relative to the parent device node.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6942\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6948\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6963\"/>\n        <source>Ending Offset</source>\n        <translation type=\"unfinished\">Ending Offset</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6945\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6966\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the last byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Offset of the last byte, relative to the parent device node.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6983\"/>\n        <source>RAM Disk</source>\n        <translation type=\"unfinished\">RAM Disk</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6986\"/>\n        <source>RAM Disk Settings.</source>\n        <translation type=\"unfinished\">RAM Disk Settings.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"6989\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk Settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7016\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7022\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7037\"/>\n        <source>Starting Address</source>\n        <translation type=\"unfinished\">Starting Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7056\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7062\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7077\"/>\n        <source>Ending Address</source>\n        <translation type=\"unfinished\">Ending Address</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7093\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7114\"/>\n        <source>GUID that defines the type of the RAM Disk.</source>\n        <translation type=\"unfinished\">GUID that defines the type of the RAM Disk.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7099\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7120\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID that defines the type of the RAM Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;GUID that defines the type of the RAM Disk.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7130\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7152\"/>\n        <source>RAM Disk instance number, if supported.</source>\n        <translation type=\"unfinished\">RAM Disk instance number, if supported.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7133\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7139\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7155\"/>\n        <source>Disk Instance</source>\n        <translation type=\"unfinished\">Disk Instance</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7136\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7158\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk instance number, if supported.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;RAM Disk instance number, if supported.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7179\"/>\n        <source>This Device Path is used to describe the booting of non-EFI-aware operating systems.</source>\n        <translation type=\"unfinished\">This Device Path is used to describe the booting of non-EFI-aware operating systems.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7182\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path is used to describe the booting of non-EFI-aware operating systems.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;This Device Path is used to describe the booting of non-EFI-aware operating systems.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7206\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7249\"/>\n        <source>An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.</source>\n        <translation>描述裝置類型的識別號碼：\n  0x00 - 已預留。\n  0x01 - 磁片。\n  0x02 - 硬碟。\n  0x03 - CD-ROM。\n  0x04 - PCMCIA（PC 卡）。\n  0x05 - USB 裝置。\n  0x06 - 嵌入式網路。\n  0x07..0x7F - 已預留。\n  0x80 - BEV 裝置。\n  0x81..0xFE - 已預留。\n  0xFF - 未知。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7220\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7237\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7263\"/>\n        <source>Device Type</source>\n        <translation>裝置類型</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7223\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7266\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;An identification number that describes what type of device this is:\n  0x00 - Reserved.\n  0x01 - Floppy.\n  0x02 - Hard disk.\n  0x03 - CD-ROM.\n  0x04 - PCMCIA.\n  0x05 - USB device.\n  0x06 - Embedded network.\n  0x07..0x7F - Reserved.\n  0x80 - BEV device.\n  0x81..0xFE - Reserved.\n  0xFF - Unknown.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7290\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7347\"/>\n        <source>Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero</source>\n        <translation type=\"unfinished\">Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7311\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7335\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7368\"/>\n        <source>Status Flag</source>\n        <translation type=\"unfinished\">Status Flag</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7314\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7371\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Status Flags as defined by the BIOS Boot Specification:\n|  Bits  |     Field     | Value | Description\n|========|===============|=======|=============\n|  3..0  | Old Position  | 0..15 | This entry’s index in the table at the last boot. For updating the IPL or BCV Priority if individual device detection is done.\n|--------|-------------- |-------|-------------\n|  7..4  |  (Reserved)   |   0   | Reserved for future use, must be zero.\n|--------|-------------- |-------|-------------\n|   8    |    Enabled    | 0..1  | 0 = Entry will be ignored for booting (IPL); entry will not be called for boot connection (BCV).\n|        |               |       | 1 = Entry will be attempted for booting (IPL); entry will be called for boot connection (BCV).\n|--------|---------------|-------|-------------\n|    9   |    Failed     | 0..1  | 0 = Has not been attempted for boot, or it is unknown if boot failure occurred (IPL); entry connected successfully (BCV).\n|        |               |       | 1 = Failed boot attempt (IPL); failed connection attempt (BCV).\n|--------|---------------|-------|-------------\n| 11..10 | Media Present | 0..3  | 0 = No bootable media present in the device.\n|        |               |       | 1 = Unknown if bootable media present.\n|        |               |       | 2 = Media present and appears bootable.\n|        |               |       | 3 = Reserved for future use.\n|--------|---------------|-------|-------------\n| 15..12 |  (Reserved)   |   0   | Reserved for future use, must be zero&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7402\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7424\"/>\n        <source>String that describes the boot device to a user.</source>\n        <translation type=\"unfinished\">String that describes the boot device to a user.</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7408\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7430\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;String that describes the boot device to a user.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;String that describes the boot device to a user.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7522\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7543\"/>\n        <source>Vendor-assigned GUID that defines the data that follows.</source>\n        <translation>供應商指派的 GUID 以定義後面的資料。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7528\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7549\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-assigned GUID that defines the data that follows.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;供應商指派的 GUID 以定義後面的資料。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7562\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7622\"/>\n        <source>Vendor-defined variable size data.</source>\n        <translation>供應商定義的可變大小資料。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7568\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7628\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Vendor-defined variable size data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;供應商定義的可變大小資料。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7642\"/>\n        <source>Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.</source>\n        <translation>取決於子類型，此裝置路徑節點用於標示裝置路徑實例或裝置路徑結構的結尾。</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7645\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Depending on the Sub-Type, this Device Path node is used to indicate the end of the Device Path instance or Device Path structure.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;取決於子類型，此裝置路徑節點用於標示裝置路徑實例或裝置路徑結構的結尾。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7721\"/>\n        <source>Unknown file path specifier settings</source>\n        <translation>未知檔案路徑說明符設定</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7724\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown file path specifier settings.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;未知檔案路徑說明符設定。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7748\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7751\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7769\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7772\"/>\n        <source>Unknown Type</source>\n        <translation>未知類型</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7754\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7775\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;未知類型。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7788\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7791\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7809\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7812\"/>\n        <source>Unknown Sub-Type</source>\n        <translation>未知子類型</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7794\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7815\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown Sub-Type.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;未知子類型。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7828\"/>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7831\"/>\n        <source>Unknown data</source>\n        <translation>未知資料</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/filepathdialog.ui\" line=\"7834\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Unknown data.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;未知資料。&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/filepathdialog.cpp\" line=\"1569\"/>\n        <source>Couldn&apos;t change data format!</source>\n        <translation>無法變更資料格式！</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeyListModel</name>\n    <message>\n        <location filename=\"../src/hotkeylistmodel.cpp\" line=\"100\"/>\n        <source>boot option</source>\n        <translation type=\"unfinished\">boot option</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Boot option</source>\n        <translation type=\"unfinished\">Boot option</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Hot key</source>\n        <translation type=\"unfinished\">Hot key</translation>\n    </message>\n    <message>\n        <location filename=\"../include/hotkeylistmodel.h\" line=\"34\"/>\n        <source>Vendor data</source>\n        <translation type=\"unfinished\">供應商資料</translation>\n    </message>\n</context>\n<context>\n    <name>HotKeysDialog</name>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"20\"/>\n        <source>Hot Keys editor</source>\n        <translation type=\"unfinished\">Hot Keys editor</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"41\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"44\"/>\n        <source>Hot Keys</source>\n        <translation type=\"unfinished\">Hot Keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"47\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Hot Keys&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"125\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"128\"/>\n        <source>Index filter</source>\n        <translation type=\"unfinished\">Index filter</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"131\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Index filter&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Index filter&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"163\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"166\"/>\n        <source>Remove hot key</source>\n        <translation type=\"unfinished\">Remove hot key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"169\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"191\"/>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"194\"/>\n        <source>Add hot key</source>\n        <translation type=\"unfinished\">Add hot key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/form/hotkeysdialog.ui\" line=\"197\"/>\n        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>\n        <translation type=\"unfinished\">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Add hot key&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <location filename=\"../include/commands.h\" line=\"21\"/>\n        <location filename=\"../include/commands.h\" line=\"66\"/>\n        <source>Change %1 to &quot;%2&quot;</source>\n        <translation>變更 %1 為「%2」</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"35\"/>\n        <source>Insert %1 entry &quot;%2&quot; at position %3</source>\n        <translation>插入 %1 條目「%2」於位置 %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"50\"/>\n        <source>Remove %1 entry &quot;%2&quot; from position %3</source>\n        <translation type=\"unfinished\">Remove %1 entry &quot;%2&quot; from position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"73\"/>\n        <location filename=\"../src/commands.cpp\" line=\"116\"/>\n        <source>Move %1 entry &quot;%2&quot; from position %3 to %4</source>\n        <translation>移動 %1 條目「%2」位置從 %3 至 %4</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <location filename=\"../include/commands.h\" line=\"157\"/>\n        <location filename=\"../include/commands.h\" line=\"198\"/>\n        <source>Change %1 entry &quot;%2&quot; %3 to &quot;%4&quot;</source>\n        <translation>變更 %1 條目「%2」的 %3 為「%4」</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"193\"/>\n        <source>Optional data</source>\n        <translation>選擇性資料</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"227\"/>\n        <source>Insert %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation>插入 %1 條目「%2」檔案路徑於位置 %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"242\"/>\n        <source>Remove %1 entry &quot;%2&quot; file path from position %3</source>\n        <translation type=\"unfinished\">Remove %1 entry &quot;%2&quot; file path from position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"257\"/>\n        <source>Set %1 entry &quot;%2&quot; file path at position %3</source>\n        <translation type=\"unfinished\">Set %1 entry &quot;%2&quot; file path at position %3</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <source>Insert %1 entry at position %2</source>\n        <translation type=\"unfinished\">Insert %1 entry at position %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"369\"/>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>Key</source>\n        <translation type=\"unfinished\">Key</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"384\"/>\n        <source>Remove %1 entry from position %2</source>\n        <translation type=\"unfinished\">Remove %1 entry from position %2</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <location filename=\"../include/commands.h\" line=\"362\"/>\n        <location filename=\"../include/commands.h\" line=\"403\"/>\n        <source>Change %1 entry at position %2 %3 to &quot;%4&quot;</source>\n        <translation type=\"unfinished\">Change %1 entry at position %2 %3 to &quot;%4&quot;</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"399\"/>\n        <location filename=\"../src/commands.cpp\" line=\"438\"/>\n        <source>keys</source>\n        <translation type=\"unfinished\">keys</translation>\n    </message>\n    <message>\n        <location filename=\"../src/commands.cpp\" line=\"293\"/>\n        <location filename=\"../src/commands.cpp\" line=\"333\"/>\n        <source>Move %1 entry &quot;%2&quot; file path from position %3 to %4</source>\n        <translation>移動 %1 條目「%2」檔案路徑位置從 %3 至 %4</translation>\n    </message>\n</context>\n</TS>\n"
  }
]